.news-single {
  background: #f4f7fb;
}

.news-single .container {
  max-width: 1280px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.news-hero {
  background: linear-gradient(135deg, #0b3a82, #1554a5);
  color: #fff;
  padding: 80px 0;
}

.news-hero__grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:60px;
    align-items:center;
}

.news-hero h1{
    font-family:"Playfair Display", serif;
    font-size:clamp(38px,4vw,58px);
    line-height:1.08;
    font-weight:700;
    letter-spacing:-1px;
    color:#fff;
    margin:0 0 22px;
    max-width:700px;
    text-transform:none;
}

.news-subtitle{
    font-size:22px;
    line-height:1.6;
    color:rgba(255,255,255,.92);
    margin-bottom:24px;
}

.news-date{
    color:#f4b400;
    font-size:15px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.news-hero__image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.20);
}

.news-section {
  padding: 70px 0;
}

.news-layout {
  display: grid;
  grid-template-columns: 2fr .8fr;
  gap: 42px;
  align-items: start;
}

.news-content-card,
.news-side-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(11,58,130,.12);
}

.news-content-card {
  padding: 42px;
}

.news-content-card .entry-content {
  font-size: 19px;
  line-height: 1.8;
  color: #10233f;
}

.news-summary {
  background: #f4f7fb;
  border-left: 5px solid #f4b400;
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 30px;
  font-weight: 700;
}

.news-side-card {
  padding: 36px;
  border-top: 7px solid #f4b400;
}

.news-side-card h2 {
  margin-top: 0;
  color: #0b3a82;
}

.news-info-item {
  padding: 18px 0;
  border-bottom: 1px solid #e5ebf3;
}

.news-info-item span {
  display: block;
  color: #0b3a82;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}

.news-video {
  margin-top: 35px;
}

.news-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 22px;
}

.news-gallery {
  margin-top: 40px;
}

.news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-gallery-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

.news-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-news-section {
  padding: 20px 0 90px;
}

.news-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg,#0b3a82,#d9e9f8);
}

@media (max-width: 900px) {
  .news-hero__grid,
  .news-layout,
  .news-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.news-gallery {
  margin-top: 42px;
}

.news-gallery h2,
.news-share h2 {
  color: #0b3a82;
  font-size: 30px;
  margin-bottom: 22px;
}

.news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-gallery-item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(11,58,130,.12);
}

.news-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

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

.news-share {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid #e5ebf3;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.news-share h2 {
  width: 100%;
  margin: 0 0 8px;
}

.news-share a,
.news-share button {
  border: 2px solid #f4b400;
  background: #fff;
  color: #0b3a82;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.news-share a:hover,
.news-share button:hover {
  background: #f4b400;
}

.related-news-section .section-heading {
  margin-bottom: 28px;
}

.related-news-section .card-grid {
  display: grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:32px;
}

@media (max-width: 900px) {
  .news-gallery-grid,
  .related-news-section .card-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   ARCHIVO DE NOTICIAS
========================================= */

.news-archive {
    background:#f4f7fb;
}


.news-archive .card-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}


.news-card {
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(11,58,130,.12);
    transition:.25s ease;
}


.news-card:hover {
    transform:translateY(-5px);
}


.news-card a {
    text-decoration:none;
    color:inherit;
}


.mag-card__thumb {
    height:240px;
    overflow:hidden;
}


.mag-card__thumb img {
    width:100%;
    height:100%;
    object-fit:cover;
}


.mag-card__body {
    padding:28px;
}


.card-date {
    color:#f4b400;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}


.news-card h3 {
    color:#0b3a82;
    font-size:24px;
    line-height:1.25;
    margin:12px 0;
}


.news-card p {
    color:#53657d;
    line-height:1.6;
}


@media(max-width:900px){

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

}

.news-card {
    display:flex;
    flex-direction:column;
    height:100%;
}


.news-card .mag-card__body {
    display:flex;
    flex-direction:column;
    flex:1;
}


.news-card .btn {
    margin-top:auto;
}

.news-card img {
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-card h3 {
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-hero {
    padding:100px 0;
}

.news-hero__grid {
    align-items:center;
}

.news-content-card img {
    border-radius:20px;
    width:100%;
}

.news-side-card {
    position:sticky;
    top:120px;
}