/* ============================================================
   Секция 05: Hero News Grid — Стили (Нейтральная версия)
   ============================================================ */

.setka-hero {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--border-color);
}

.setka-hero__inner {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 960px) {
  .setka-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Доминантная карточка дня */
.hero-lead-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-lead-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xs);
  overflow: hidden;
  background-color: var(--ink-100);
}

.hero-lead-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-lead-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--dur) var(--ease);
}

.hero-lead-card:hover .hero-lead-card__img {
  opacity: 0.95;
}

.hero-lead-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-100);
  color: var(--ink-400);
}

.hero-lead-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Рубрика над заголовком чистым текстом без черной плашки (по кодексу) */
.hero-lead-card__cat {
  margin-bottom: 2px;
}

.hero-lead-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink-950);
}

.hero-lead-card__title a:hover {
  text-decoration: underline;
}

.hero-lead-card__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 65ch;
}

.hero-lead-card__meta {
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
}

.meta-item--source {
  margin-left: auto;
  color: var(--ink-600);
}

/* Сателлитный стек справа */
.hero-secondary-stack {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-color);
  padding-left: 28px;
}

@media (max-width: 960px) {
  .hero-secondary-stack {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
}

.hero-secondary-stack__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-950);
  margin-bottom: 16px;
}

[data-theme="dark"] .hero-secondary-stack__header {
  border-bottom-color: var(--ink-700);
}

.hero-secondary-stack__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-950);
  text-transform: uppercase;
}

.hero-secondary-stack__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-950);
}

[data-theme="dark"] .hero-secondary-stack__dot {
  background: var(--ink-400);
}

.hero-secondary-stack__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.secondary-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.secondary-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.secondary-card__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xs);
  overflow: hidden;
  background: var(--ink-100);
}

.secondary-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.secondary-card__cat {
  margin-bottom: 1px;
}

.secondary-card__title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-950);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.secondary-card__title a:hover {
  text-decoration: underline;
}

.secondary-card__meta {
  margin-top: auto;
  font-size: 11px;
}
