/* ===========================
   Noticias – JR Ilusionista
   =========================== */

   body {
    background-color: #020617;
  }
  
  /* HERO */
  
  .news-hero {
    padding: 5rem 0 3.8rem;
    background:
      radial-gradient(circle at 0% 0%, rgba(15,23,42,0.85), transparent 55%),
      linear-gradient(180deg, #020617 0%, #020617 45%, #020617 100%);
    color: #e5e7eb;
  }
  
  .news-hero-inner {
    max-width: 720px;
  }
  
  .news-hero-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #9ca3af;
    margin-bottom: 0.8rem;
  }
  
  .news-hero-inner h1 {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont;
    font-size: clamp(2rem, 3vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #f9fafb;
  }
  
  .news-hero-inner p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 40rem;
  }
  
  /* LISTADO PRINCIPAL */
  
  .news-main {
    padding: 3.5rem 0 4.5rem;
    background-color: #020617;
  }
  
  .news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
  
  /* Tarjeta de noticia */
  
  .news-card {
    border-radius: 18px;
    background-color: #020617;
    border: 1px solid rgba(31,41,55,1);
    box-shadow: 0 18px 44px rgba(15,23,42,0.95);
    overflow: hidden;
  }
  
  .news-card-link {
    display: block;
    padding: 1.5rem 1.6rem 1.5rem;
    color: inherit;
    text-decoration: none;
    height: 100%;
  }
  
  .news-card-link:hover {
    background: radial-gradient(circle at 0% 0%, rgba(15,23,42,0.95), rgba(15,23,42,1));
    border-color: rgba(148,163,184,0.8);
  }
  
  .news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
  }
  
  .news-date {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
  }
  
  .news-tag {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,1);
    background-color: rgba(15,23,42,0.95);
    color: #e5e7eb;
    font-size: 0.75rem;
  }
  
  .news-card h2 {
    font-family: "Montserrat", system-ui;
    font-size: 1rem;
    margin: 0 0 0.4rem 0;
    color: #f9fafb;
  }
  
  .news-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #9ca3af;
    margin: 0;
  }
  
  .news-read-more {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #a855f7;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 960px) {
    .news-hero {
      padding: 4.3rem 0 3.3rem;
    }
  
    .news-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .news-main {
      padding: 3.4rem 0 4rem;
    }
  
    .news-card-link {
      padding: 1.4rem 1.4rem 1.4rem;
    }
  }
  /* ===========================
   Detalle de noticia
   =========================== */

.news-detail {
    padding: 4rem 0 4.5rem;
    background-color: #020617;
  }
  
  .news-detail-inner {
    max-width: 760px;
  }
  
  .news-detail-header h1 {
    font-family: "Montserrat", system-ui;
    font-size: clamp(1.9rem, 2.6vw, 2.3rem);
    margin-bottom: 0.7rem;
    color: #f9fafb;
  }
  
  .news-detail-intro {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #cbd5e1;
    margin-bottom: 1.6rem;
  }
  
  .news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    color: #9ca3af;
  }
  
  .news-detail-tag,
  .news-detail-location {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,1);
    background-color: rgba(15,23,42,0.95);
    color: #e5e7eb;
  }
  
  .news-detail-body p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #9ca3af;
  }
  
  .news-detail-body p + p {
    margin-top: 0.8rem;
  }
  
  .news-detail-footer {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
  }
  
  @media (max-width: 640px) {
    .news-detail {
      padding: 3.4rem 0 4rem;
    }
  }