#noticia {
  position: relative;
  padding: 118px 0 88px;
  color: #112033;
  background:
    radial-gradient(circle at top left, rgba(23, 117, 186, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #eef3f7 100%);
}

#noticia::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 340px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.noticia-detail * {
  box-sizing: border-box;
}

.noticia-shell {
  position: relative;
  z-index: 1;
}

.noticia-backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #41576f;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.noticia-backlink:hover {
  color: var(--primary-color);
}

.noticia-header-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 32, 51, 0.08);
  box-shadow: 0 20px 55px rgba(19, 45, 72, 0.08);
  backdrop-filter: blur(10px);
}

.noticia-header-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.noticia-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 32, 51, 0.04);
  color: #24384d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.noticia-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--noticia-accent, var(--primary-color));
  box-shadow: 0 0 0 5px rgba(23, 117, 186, 0.12);
}

.noticia-header-copy h1 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #102133;
}

.noticia-standfirst {
  max-width: 680px;
  margin: 1.15rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #536a81;
}

.noticia-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.noticia-meta__item {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: #f7fafc;
  border: 1px solid rgba(17, 32, 51, 0.06);
}

.noticia-meta__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #73879c;
}

.noticia-meta__item strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #13253a;
}

.noticia-header-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  background: linear-gradient(135deg, rgba(17, 32, 51, 0.14), rgba(17, 32, 51, 0.03));
}

.noticia-header-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.noticia-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.noticia-main,
.noticia-aside {
  min-width: 0;
}

.noticia-article,
.noticia-panel {
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 32, 51, 0.08);
  box-shadow: 0 18px 45px rgba(19, 45, 72, 0.06);
}

.noticia-article {
  padding: 2.1rem 2.2rem 2.4rem;
}

.noticia-intro {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(17, 32, 51, 0.08);
}

.noticia-intro__line {
  width: 44px;
  height: 2px;
  flex-shrink: 0;
  background: var(--noticia-accent, var(--primary-color));
}

.noticia-intro p {
  margin: 0;
  color: #37506a;
  font-size: 0.98rem;
}

.noticia-body {
  color: #24384d;
  font-size: 1.04rem;
  line-height: 1.9;
}

.noticia-body > *:first-child {
  margin-top: 0;
}

.noticia-body p,
.noticia-body ul,
.noticia-body ol,
.noticia-body blockquote {
  margin: 0 0 1.5rem;
}

.noticia-body h2,
.noticia-body h3,
.noticia-body h4 {
  margin: 2.4rem 0 1rem;
  color: #112033;
  line-height: 1.25;
}

.noticia-body a {
  color: var(--primary-color);
}

.noticia-body ul,
.noticia-body ol {
  padding-left: 1.25rem;
}

.noticia-body blockquote {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--primary-color);
  background: #f6fafc;
  color: #37506a;
  border-radius: 0 16px 16px 0;
}

.noticia-body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 20px;
}

.noticia-link-externo {
  margin-top: 2rem;
}

.noticia-link-externo .btn-ver-mas-redondeado {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #15344f, #28557c);
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.noticia-aside {
  display: grid;
  gap: 1.5rem;
}

.noticia-panel {
  padding: 1.5rem;
}

.noticia-panel--related {
  position: sticky;
  top: 132px;
}

.noticia-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.noticia-panel__brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.noticia-panel__eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8ea2;
}

.noticia-panel__brand h2,
.noticia-panel__heading h2 {
  margin: 0;
  font-size: 1.1rem;
  color: #13253a;
}

.noticia-panel__text {
  margin: 1rem 0 0;
  color: #556b82;
  line-height: 1.7;
}

.noticia-panel__meta {
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.noticia-panel__meta div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(17, 32, 51, 0.08);
}

.noticia-panel__meta dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a8ea2;
}

.noticia-panel__meta dd {
  margin: 0;
  text-align: right;
  color: #18324a;
  font-weight: 600;
}

.noticia-panel__heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.noticia-panel__heading a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.92rem;
}

.related-list {
  display: grid;
  gap: 0.6rem;
}

.related-item {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  border-top: 1px solid rgba(17, 32, 51, 0.08);
}

.related-list .related-item:first-child {
  border-top: none;
  padding-top: 0.2rem;
}

.related-item__date {
  display: block;
  margin-bottom: 0.35rem;
  color: #7a8ea2;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-item__title {
  display: block;
  color: #13253a;
  line-height: 1.4;
}

.related-item__excerpt {
  display: block;
  margin-top: 0.35rem;
  color: #5c7187;
  line-height: 1.6;
  font-size: 0.92rem;
}

.related-item:hover .related-item__title,
.related-item:hover .related-item__excerpt {
  color: var(--primary-color);
}

@media (max-width: 1199px) {
  .noticia-header-card,
  .noticia-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .noticia-header-media img {
    min-height: 280px;
  }

  .noticia-panel--related {
    position: static;
  }
}

@media (max-width: 767px) {
  #noticia {
    padding: 92px 0 64px;
  }

  .noticia-backlink {
    margin-bottom: 1rem;
  }

  .noticia-header-card,
  .noticia-article,
  .noticia-panel {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .noticia-header-card {
    gap: 1.25rem;
  }

  .noticia-header-copy h1 {
    font-size: 2rem;
  }

  .noticia-standfirst {
    font-size: 1rem;
  }

  .noticia-meta {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }

  .noticia-header-media img {
    min-height: 220px;
  }

  .noticia-content-grid {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .noticia-intro {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.1rem;
  }

  .noticia-body {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noticia-backlink,
  .related-item {
    transition: none;
  }
}
