.topic-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  animation: fadeInUp 0.6s ease;
}

.topic-hero-text {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topic-hero-text h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
}

.topic-hero-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.topic-hero-visual {
  background-image: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.7)), url("/images/decorative/decor_9.webp");
  background-size: cover;
  background-position: center;
}

.topic-stat-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 20px;
}

.topic-stat-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.topic-stat-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.topic-stat-item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.topic-columns {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  animation: fadeInUp 0.7s ease 0.15s both;
}

.topic-col h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.topic-col p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.topic-col ul {
  margin: 0 0 14px 18px;
  color: var(--muted);
  font-size: 15px;
}

.topic-col li {
  margin-bottom: 6px;
}

.topic-col-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 900px) {
  .topic-hero-split {
    grid-template-columns: 1fr;
  }

  .topic-hero-visual {
    min-height: 200px;
  }

  .topic-stat-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .topic-hero-split,
  .topic-columns,
  .topic-stat-band-inner {
    overflow: hidden;
    max-width: 100%;
  }

  .topic-hero-visual {
    max-width: 100%;
    background-size: cover;
    background-position: center;
  }

  .topic-col-img {
    max-width: 100%;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
  }
}
