/* Раздел «Межнациональные имена» */

.interethnic-section {
  margin-bottom: 36px;
}

.interethnic-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin: 0 0 16px;
}

.interethnic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.interethnic-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.interethnic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}

.interethnic-card-male:hover {
  border-color: var(--male-mid, #3b9ede);
  box-shadow: 0 8px 28px rgba(59, 158, 222, 0.12);
}

.interethnic-card-female:hover {
  border-color: var(--female-mid, #e8628a);
  box-shadow: 0 8px 28px rgba(232, 98, 138, 0.12);
}

.interethnic-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.interethnic-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.interethnic-card-male .interethnic-card-name { color: #1563a0; }
.interethnic-card-female .interethnic-card-name { color: #b84068; }

.interethnic-score {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  background: #f0f6ff;
  color: var(--brand, #0056b3);
  border: 1px solid #bfdbfe;
  white-space: nowrap;
}

.interethnic-score-high {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.interethnic-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.interethnic-reason-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--neutral-50);
  color: var(--neutral-700);
  border: 1px solid var(--neutral-200);
  line-height: 1.35;
}

.interethnic-empty {
  color: var(--neutral-600);
  font-size: 0.95rem;
  margin: 0;
  padding: 12px 16px;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 1px dashed var(--neutral-200);
}

@media (max-width: 640px) {
  .interethnic-grid {
    grid-template-columns: 1fr;
  }
  .interethnic-card-name {
    font-size: 1.2rem;
  }
}
