/* ==========================================================================
   Hero — Wired 3-Column
   ========================================================================== */

.hero {
  padding: 40px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 32px;
  min-height: 420px;
}

/* Hero Sidebar Left */
.hero__sidebar-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__sidebar-left .hero__story {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.hero__sidebar-left .hero__story:first-child {
  padding-top: 0;
}

.hero__sidebar-left .hero__story:last-child {
  border-bottom: none;
}

.hero__sidebar-left .hero__story-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-meta);
  margin-bottom: 4px;
}

.hero__sidebar-left .hero__story-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-heading);
  transition: color var(--transition);
}

.hero__sidebar-left .hero__story-title:hover {
  color: var(--tb-red);
}

.hero__sidebar-left .hero__story-title a {
  color: inherit;
}

.hero__sidebar-left .hero__story-title a:hover {
  color: var(--tb-red);
}

.hero__sidebar-left .hero__story-meta {
  font-size: 11px;
  color: var(--color-meta);
  margin-top: 4px;
}

/* Hero Main */
.hero__main {
  position: relative;
  overflow: hidden;
}

.hero__main img {
  transition: transform 400ms ease;
}
.hero__main:hover img {
  transform: scale(1.03);
}

.hero__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__main-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 30%;
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.hero__main-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 8px;
  text-decoration: none;
}

a.hero__main-label:hover {
  color: var(--tb-red);
}

.hero__main-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero__main-title a {
  color: inherit;
}

.hero__main-title a:hover {
  text-decoration: underline;
}

.hero__main-excerpt {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 8px;
}

.hero__main-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Sidebar Right */
.hero__sidebar-right {
  display: flex;
  flex-direction: column;
}

.hero__sidebar-right .hero__top-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-heading);
}

.hero__sidebar-right .hero__top-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.hero__sidebar-right .hero__top-item:last-child {
  border-bottom: none;
}

.hero__sidebar-right .hero__top-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tb-red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}

.hero__sidebar-right .hero__top-text {
  flex: 1;
}

.hero__sidebar-right .hero__top-item-title {
  font-family: var(--font-heading-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.hero__sidebar-right .hero__top-item-title a {
  color: inherit;
}

.hero__sidebar-right .hero__top-item-title a:hover {
  color: var(--tb-red);
}

.hero__sidebar-right .hero__top-item-meta,
.hero__top-meta {
  font-size: 11px;
  color: var(--color-meta);
}

.hero__top-meta a {
  color: inherit;
  text-decoration: none;
}

.hero__top-meta a:hover {
  color: var(--tb-red);
}

/* ---- Responsive ---- */

@media (max-width: 767px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__sidebar-left,
  .hero__sidebar-right {
    display: none;
  }

  .hero__main {
    min-height: 300px;
  }

  .hero__main-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 280px;
    min-height: 380px;
  }

  .hero__sidebar-left {
    display: none;
  }

  .hero__sidebar-right {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 240px 1fr 280px;
    min-height: 420px;
  }

  .hero__sidebar-left {
    display: flex;
  }
}
