/* Hero Featured Section - Layout 1 grande + 2 pequenos */
.hero-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin: 0 0 14px;
}

.hero-featured__main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2);
}

.hero-featured__main-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.hero-featured__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-featured__main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.hero-featured__main-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  background: var(--link);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  width: fit-content;
}

.hero-featured__main-title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-featured__main-meta {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.hero-featured__sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-featured__small {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
}

.hero-featured__small-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.hero-featured__small-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-featured__small-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.hero-featured__small-kicker {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 8px;
  background: var(--link);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  width: fit-content;
}

.hero-featured__small-title {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero-featured__small-meta {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}

/* Hover effects */
.hero-featured__main-link:hover .hero-featured__main-img,
.hero-featured__small-link:hover .hero-featured__small-img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* Responsive */
@media (max-width: 979px) {
  .hero-featured {
    grid-template-columns: 1fr;
  }
  
  .hero-featured__sidebar {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

@media (max-width: 640px) {
  .hero-featured__sidebar {
    grid-template-columns: 1fr;
  }
  
  .hero-featured__main {
    aspect-ratio: 16 / 9;
  }
  
  .hero-featured__main-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .hero-featured__main-kicker {
    font-size: 9px;
    padding: 3px 8px;
    margin: 0 0 8px;
  }
  
  .hero-featured__main-meta {
    font-size: 11px;
  }
  
  .hero-featured__small-title {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .hero-featured__small-kicker {
    font-size: 8px;
    padding: 2px 6px;
    margin: 0 0 6px;
  }
  
  .hero-featured__small-meta {
    font-size: 10px;
  }
  
  .hero-featured__main-overlay,
  .hero-featured__small-overlay {
    padding: 12px;
  }
}
