/* Noticias — misma línea gráfica que Inicio */
.news-page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(253, 155, 0, 0.2);
}
.news-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(253, 155, 0, 0.1) 0%, transparent 70%);
}
.news-page-hero .container { position: relative; z-index: 2; text-align: center; }
.news-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FD9B00, #E30300);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.news-page-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #FD9B00, #E30300, #FD9B00);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: news-grad 4s ease infinite;
  margin-bottom: 15px;
}
@keyframes news-grad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.news-page-subtitle {
  color: #cccccc;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

.news-section {
  background: rgba(253, 155, 0, 0.02);
  padding: 80px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.news-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 155, 0, 0.1), transparent);
  transition: left 0.8s ease;
  z-index: 1;
  pointer-events: none;
}
.news-card:hover::before { left: 100%; }
.news-card:hover {
  transform: translateY(-10px);
  border-color: #FD9B00;
  box-shadow: 0 25px 50px rgba(253, 155, 0, 0.25);
}
.news-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: #1a1a1a;
}
.news-card-body {
  padding: 28px;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-date {
  color: #FD9B00;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.news-card-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}
.news-card:hover .news-card-title { color: #FD9B00; }
.news-card-excerpt {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FD9B00;
  font-weight: 600;
  font-size: 0.9rem;
}
.news-card:hover .news-card-more {
  color: #ffffff;
  transform: translateX(5px);
}

/* Artículo: wrapper alrededor del template hc* original */
.article-shell {
  padding: 40px 20px 80px;
  background: #000;
}
.article-shell-inner {
  max-width: 900px;
  margin: 0 auto;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FD9B00;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.article-back:hover {
  color: #fff;
  transform: translateX(-4px);
}
.article-related {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.article-related .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.article-related .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FD9B00, #E30300);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.article-related .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, #FD9B00, #E30300);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .news-page-hero { padding: 50px 0 35px; }
  .news-section { padding: 50px 0; }
  .news-card-image { height: 180px; }
}

/* Evitar que se corten rostros en fotos de noticias */
.article-shell .hc4-img,
.article-shell .hc4-img.h360,
.article-shell .hc4-img.h420,
.article-shell .hc3-img,
.article-shell .hc2-img,
.article-shell .hc1-img {
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  max-height: none !important;
}
.article-shell .hc4-wrap,
.article-shell .hc3-wrap,
.article-shell .hc2-wrap {
  max-height: none !important;
}

