body {
  background: #0b0b0b;
  color: rgba(255,255,255,0.85);
}

.container {
  max-width: 1140px;
  margin: -60px auto 60px;
  padding: 0 24px;
}

.news-featured {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 64px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease;
}

.news-featured:hover {
  transform: translateY(-4px);
}

.news-featured .img {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.news-featured .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.news-featured .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-featured:hover .img img {
  transform: scale(1.03);
}

.news-featured .content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-featured {
  align-self: flex-start;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0e800;
  background: rgba(240,232,0,0.08);
  border: 1px solid rgba(240,232,0,0.15);
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.news-featured h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}

.news-featured p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.news-featured .card-link {
  color: #f0e800;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.news-featured .card-link:hover {
  gap: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  position: relative;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,232,0,0.15);
}

.news-card .img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-card .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.news-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .img img {
  transform: scale(1.05);
}

.news-card .body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.news-card p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.card-link {
  margin-top: auto;
  color: rgba(255,255,255,0.35);
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.card-link::after {
  content: '→';
}

.news-card:hover .card-link {
  color: #f0e800;
  gap: 12px;
}

.entrevista-card {
  border-color: rgba(212,160,23,0.15);
}

.entrevista-card::before {
  content: 'ENTREVISTA TVMG';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(212,160,23,0.85);
  padding: 5px 14px;
  border-radius: 4px;
  pointer-events: none;
}

@media (max-width: 960px) {
  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-featured .img {
    min-height: 260px;
    height: 260px;
  }

  .news-featured .img::after {
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  }

  .news-featured .content {
    padding: 28px 24px 36px;
  }

  .news-featured h2 {
    font-size: 1.8rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
