body.article-page {
  background:
    radial-gradient(circle at top right, rgba(18, 56, 79, 0.08), transparent 24%),
    radial-gradient(circle at left 20%, rgba(143, 60, 42, 0.07), transparent 26%),
    linear-gradient(180deg, #f7f4ee 0%, var(--bg) 100%);
  overflow-x: clip;
}

.article-main {
  padding-bottom: 56px;
}

.article-shell {
  display: grid;
  gap: 28px;
}

.article-hero {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3.3vw, 40px);
  border: 1px solid rgba(18, 56, 79, 0.09);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(18, 56, 79, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.94));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.article-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 60, 42, 0.09), transparent 68%);
  pointer-events: none;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-kicker a,
.article-kicker span:first-child {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.article-kicker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(18, 56, 79, 0.28);
}

.article-hero h1 {
  max-width: min(85%, 1120px);
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.article-excerpt {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 56, 79, 0.08);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 4px 8px;
  min-width: 0;
}

.article-author span,
.article-author p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-author span {
  grid-column: 1;
}

.article-author a,
.article-author strong {
  grid-column: 2;
  color: var(--text);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.1;
  text-decoration: none;
}

.article-author p {
  grid-column: 1 / -1;
}

@media (min-width: 1081px) {
  .article-hero {
    /* margin-right: 348px; */
    padding: 28px 32px 30px;
  }

  .article-hero h1 {
    max-width: none;
  }

  .article-excerpt {
    max-width: 58ch;
  }
}

.article-share {
  display: grid;
  justify-items: end;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 237, 229, 0.74));
  box-shadow: var(--shadow-sm);
}

.article-share__label {
  margin: 0;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-share__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(18, 56, 79, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.article-share a:hover,
.article-share a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(143, 60, 42, 0.22);
  color: var(--brand);
  box-shadow: 0 14px 26px rgba(18, 56, 79, 0.1);
}

.article-share--inline {
  justify-items: start;
  width: 100%;
  margin: 0 0 1.6em;
  padding: 18px 20px;
  border-color: rgba(143, 60, 42, 0.12);
  background:
    linear-gradient(180deg, rgba(244, 228, 220, 0.52), rgba(255, 255, 255, 0.92));
}

.article-share--inline .article-share__label {
  font-size: 0.78rem;
}

.article-share--inline .article-share__links {
  justify-content: flex-start;
}

.article-media {
  margin: 0;
}

.article-media img {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.article-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 20px;
}

.article-summary,
.article-card,
.article-copy {
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.article-summary,
.article-card {
  padding: 22px;
}

.article-summary__kicker,
.article-card__kicker {
  margin: 0 0 12px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.article-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.article-copy {
  display: flow-root;
  padding: clamp(24px, 4vw, 42px);
}

.article-copy__body {
  min-width: 0;
}

.article-copy__body > :first-child {
  margin-top: 0;
}

@media (min-width: 1280px) {
  .article-copy {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 20px;
    align-items: start;
  }

  .article-copy > .article-share--inline {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 140px;
    width: 100%;
    margin: 0;
    padding: 12px;
    justify-items: stretch;
    text-align: center;
  }

  .article-copy__body {
    grid-column: 2;
  }

  .article-share--inline .article-share__links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .article-share--inline a {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
  }
}

.article-copy__lead {
  margin-top: 0;
  font-size: 1.24rem;
  line-height: 1.75;
  color: var(--text);
}

.article-copy p {
  margin: 0 0 1.35em;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #243b4b;
}

.article-copy p a,
.article-copy li a,
.article-copy td a,
.article-copy figcaption a,
.article-copy blockquote a {
  color: var(--brand);
  font-weight: 600;
  text-decoration-color: rgba(143, 60, 42, 0.58);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.article-copy p a:hover,
.article-copy p a:focus-visible,
.article-copy li a:hover,
.article-copy li a:focus-visible,
.article-copy td a:hover,
.article-copy td a:focus-visible,
.article-copy figcaption a:hover,
.article-copy figcaption a:focus-visible,
.article-copy blockquote a:hover,
.article-copy blockquote a:focus-visible {
  color: #a13a24;
  text-decoration-color: rgba(143, 60, 42, 0.9);
}

.article-copy strong {
  color: var(--text);
  font-weight: 800;
}

.article-copy h2 {
  margin: 1.5em 0 0.6em;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1.02;
}

.article-copy h3 {
  margin: 1.35em 0 0.55em;
  font-size: clamp(1.36rem, 1.8vw, 1.8rem);
  line-height: 1.08;
}

.article-copy ul,
.article-copy ol {
  margin: 0 0 1.6em;
  padding-left: 1.35em;
  color: #243b4b;
}

.article-copy li {
  margin-bottom: 0.7em;
  font-size: 1.06rem;
  line-height: 1.78;
}

.article-copy .parrafo-dark {
  margin: 1.8em 0;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(18, 56, 79, 0.96), rgba(11, 32, 46, 0.98));
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.78;
  box-shadow: var(--shadow-sm);
}

.article-copy .parrafo-dark a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.44);
}

.article-copy .parrafo-dark a:hover,
.article-copy .parrafo-dark a:focus-visible {
  color: #fff7db;
  text-decoration-color: rgba(255, 247, 219, 0.78);
}

.article-copy .parrafo-dark strong {
  color: #fff;
}

.article-copy mark {
  padding: 0.08em 0.28em;
  border-radius: 0.28em;
  background: rgba(230, 192, 82, 0.36);
  color: inherit;
  box-shadow: inset 0 -0.08em 0 rgba(180, 67, 43, 0.18);
}

.article-copy hr {
  width: 100%;
  height: 1px;
  margin: 2em 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(18, 56, 79, 0), rgba(18, 56, 79, 0.3) 18%, rgba(143, 60, 42, 0.42) 50%, rgba(18, 56, 79, 0.3) 82%, rgba(18, 56, 79, 0));
}

.article-copy .contenedor-centrado {
  display: flex;
  justify-content: center;
  margin: 1.7em 0;
}

.article-copy .contenedor-centrado button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #12384f, #0f3043);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.article-copy .contenedor-centrado button:hover,
.article-copy .contenedor-centrado button:focus-visible {
  background: linear-gradient(180deg, #164664, #12384f);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.article-copy ul li::marker {
  color: var(--brand);
}

.article-copy ol li::marker {
  color: var(--brand);
  font-weight: 700;
}

.table-wrapper {
  margin: 24px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.table-wrapper table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background-color: #ffffff;
}


.article-copy thead {
  background: rgba(18, 56, 79, 0.06);
}

.article-copy th,
.article-copy td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 56, 79, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 0.98rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.article-copy th {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-copy tbody tr:nth-child(even) {
  background: rgba(248, 244, 238, 0.75);
}

.article-copy tbody tr:last-child td {
  border-bottom: 0;
}

.article-copy .accordionExample {
  display: grid;
  gap: 12px;
  margin: 1.6em 0;
}

.article-copy .accordionExample .card {
  overflow: hidden;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.article-copy .accordionExample .card-header {
  margin: 0;
}

.article-copy .accordionExample .card-header a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.96));
}

.article-copy .accordionExample .card-header a::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.article-copy .accordionExample .card-header a[aria-expanded="true"] {
  color: var(--accent);
  background: linear-gradient(180deg, rgba(18, 56, 79, 0.06), rgba(18, 56, 79, 0.03));
}

.article-copy .accordionExample .card-header a[aria-expanded="true"]::after {
  content: "\2212";
}

.article-copy .accordionExample .collapse {
  display: none;
}

.article-copy .accordionExample .collapse.show {
  display: block;
}

.article-copy .accordionExample .card-body {
  padding: 0 20px 20px;
  color: #243b4b;
}

.article-copy .accordionExample .card-body > :last-child {
  margin-bottom: 0;
}

.article-copy amp-twitter,
.article-copy amp-instagram,
.article-copy amp-facebook,
.article-copy blockquote.tiktok-embed,
.article-copy .responsive-facebook,
.article-copy .embed,
.article-copy .embed-responsive {
  display: block;
  width: 100%;
  max-width: min(100%, 720px);
  margin: 1.8em auto;
}

.article-copy .responsive-facebook,
.article-copy blockquote.tiktok-embed,
.article-copy .embed,
.article-copy .embed-responsive {
  overflow: hidden;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.article-copy amp-twitter,
.article-copy amp-instagram,
.article-copy amp-facebook,
.article-copy blockquote.tiktok-embed {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.article-copy blockquote.tiktok-embed {
  min-width: 0 !important;
  max-width: min(100%, 605px) !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.article-copy blockquote.tiktok-embed::before {
  content: none;
}

.article-copy blockquote.tiktok-embed section {
  margin: 0 !important;
}

.article-copy .responsive-facebook iframe,
.article-copy .embed-responsive iframe,
.article-copy .containerIframe iframe {
  display: block;
  width: 100%;
  border: 0;
}

.article-copy .responsive-facebook iframe {
  min-height: 497px;
}

.article-copy .embed {
  padding: 14px;
}

.article-copy .containerIframe {
  max-width: 540px;
  margin: 0 auto;
}

.article-copy .embed-responsive {
  aspect-ratio: 16 / 9;
}

.article-copy .embed-responsive iframe {
  width: 100%;
  height: 100%;
}

.article-copy .iframe_video {
  min-height: 320px;
}

.article-copy h5 {
  margin: 1.2em 0 0.8em;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.article-copy h5 a {
  color: var(--brand);
  font-weight: 800;
  text-underline-offset: 3px;
}

.article-copy .iframe_pdf {
  display: block;
  width: 100%;
  min-height: 600px;
  margin: 1em 0 1.8em;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.article-copy .poll-card--media {
  gap: 22px;
  padding: 20px;
}

.article-copy .poll-card--no-image {
  grid-template-columns: 1fr;
}

.article-copy .poll-card--media img {
  height: 184px;
}

.article-copy .poll-card__content {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.02fr);
  gap: 18px 24px;
}

.article-copy .poll-card--no-image .poll-card__content {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.article-copy .poll-card h3 {
  max-width: 10ch;
}

.article-copy .poll-card--no-image h3 {
  max-width: 12ch;
}

.article-copy .interactive-card__aside {
  gap: 10px;
  padding-left: 18px;
}

.article-copy .poll-options {
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.article-copy .poll-option {
  min-height: 0;
  padding: 16px 18px;
  font-size: 0.95rem;
  line-height: 1.38;
  text-align: left;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  word-break: normal;
}

.article-copy .poll-feedback {
  padding: 14px 16px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.article-copy .poll-result__meta {
  align-items: flex-start;
}

.article-copy .poll-result__label {
  max-width: 26ch;
  line-height: 1.35;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.article-copy div:has(> audio) {
  display: grid;
  gap: 12px;
  margin: 1.6em 0;
  padding: 16px 18px;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.96));
  box-shadow: var(--shadow-sm);
}

.article-copy div:has(> audio)::before {
  content: "Audio";
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-copy audio {
  display: block;
  width: 100%;
  min-height: 54px;
}

.article-embed {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.article-embed img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.article-embed figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-embed--left,
.article-embed--right {
  width: min(30%, 220px);
  max-width: 100%;
}

.article-embed--left {
  float: left;
  margin: 0.2em 24px 1em 0;
}

.article-embed--right {
  float: right;
  margin: 0.2em 0 1em 24px;
}

.article-embed--left img,
.article-embed--right img {
  aspect-ratio: 4 / 3;
  max-height: 220px;
}

.article-embed--horizontal {
  width: min(32%, 240px);
}

.article-embed--horizontal img {
  aspect-ratio: 16 / 10;
  max-height: 190px;
}

.article-embed--square {
  width: min(24%, 180px);
}

.article-embed--square img {
  aspect-ratio: 1 / 1;
  max-height: 180px;
}

.article-embed--center {
  max-width: 720px;
  margin: 1.9em auto;
}

.article-embed--center img {
  aspect-ratio: 16 / 9;
}

.article-embed--center.article-embed--square {
  max-width: 460px;
}

.article-related-embed {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  margin: 1.9em 0;
  padding: 18px;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.96));
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.article-related-embed img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: cover;
}

.article-related-embed__content {
  display: grid;
  align-content: start;
  gap: 10px;
}

.article-related-embed__content span {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-related-embed__content strong {
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1.04;
}

.article-related-embed__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.article-gallery {
  display: grid;
  gap: 16px;
  margin: 2em 0;
}

.article-gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.article-gallery__heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.04;
}

.article-gallery__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.article-gallery__button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.article-gallery__viewport {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.article-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.article-gallery__slide {
  flex: 0 0 100%;
  display: grid;
  gap: 12px;
  padding: 12px;
  scroll-snap-align: start;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.article-copy .article-gallery__slide,
.article-copy .article-gallery__slide:hover,
.article-copy .article-gallery__slide:focus-visible {
  color: inherit;
  text-decoration: none;
}

.article-gallery__slide:hover,
.article-gallery__slide:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(143, 60, 42, 0.22);
  box-shadow: var(--shadow-md);
}

.article-gallery__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: cover;
}

.article-gallery__caption {
  color: #304656;
  font-size: 0.92rem;
  line-height: 1.5;
}

.article-copy blockquote {
  position: relative;
  margin: 1.8em 0;
  padding: 28px 22px 20px 30px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(18, 56, 79, 0.05);
  color: var(--accent);
}

.article-copy blockquote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: "Newsreader", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(143, 60, 42, 0.2);
  pointer-events: none;
}

.article-copy blockquote p {
  margin: 0 0 14px;
}

.article-copy blockquote p:not(.blockquoteAutor) {
  font-family: "Newsreader", serif;
  font-size: clamp(1.42rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--accent);
}

.article-copy blockquote .blockquoteAutor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--muted);
}

.article-copy blockquote .blockquoteAutor::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(143, 60, 42, 0.42);
  flex: 0 0 auto;
}

.article-copy blockquote p:last-child {
  margin-bottom: 0;
}

.article-copy blockquote p:empty {
  display: none;
}

.article-copy blockquote.warning {
  position: relative;
  margin: 1.9em 0;
  padding: 72px 22px 20px 22px;
  border: 1px solid rgba(143, 60, 42, 0.2);
  border-left: 6px solid #b4432b;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(180, 67, 43, 0.07), rgba(180, 67, 43, 0.03)),
    #fff8f5;
  color: #6d2417;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

.article-copy blockquote.warning::before {
  content: none;
}

.article-copy blockquote.warning .author {
  position: absolute;
  top: 20px;
  left: 22px;
  display: block;
  color: #8a3321;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.article-copy blockquote.warning .author::before {
  content: none;
}

.article-highlight {
  margin: 1.8em 0;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(18, 56, 79, 0.06), rgba(143, 60, 42, 0.08)),
    #fff;
}

.article-highlight h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.article-highlight p {
  margin: 0;
  font-size: 1rem;
}

.article-sidebar {
  width: 320px;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  justify-self: end;
}

.article-facts {
  margin: 0;
  display: grid;
  gap: 14px;
}

.article-facts div {
  display: grid;
  gap: 4px;
}

.article-facts dt {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-post-tags {
  display: grid;
  gap: 12px;
}

.article-post-tags h2 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.05;
}

.article-tags a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-list a {
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.article-latest {
  display: grid;
  gap: 22px;
  padding: 24px 22px 22px;
}

.article-latest__title {
  margin: 0;
  color: #163872;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.article-latest__timeline {
  position: relative;
  display: grid;
  gap: 26px;
  padding-left: 30px;
}

.article-latest__timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 10px;
  width: 1px;
  background: rgba(23, 33, 43, 0.86);
}

.article-latest__item {
  position: relative;
  display: grid;
  gap: 10px;
}

.article-latest__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0c1014;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.article-latest__item time {
  color: #0c1014;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
}

.article-latest__item a {
  color: #0c1014;
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
  text-decoration: none;
}

.article-latest__item a:hover,
.article-latest__item a:focus-visible {
  color: var(--accent);
}

.article-ad {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-inline: 0;
  text-align: center;
  overflow: hidden;
}

.article-ad .article-card__kicker {
  padding-inline: 18px;
}

.article-ad__frame {
  width: 320px;
  max-width: 100%;
  overflow: hidden;
}

.article-ad__slot {
  display: block !important;
  width: 320px !important;
  height: 100px !important;
  margin: 0 auto;
  border-radius: calc(var(--radius-sm) - 2px);
}

.article-more {
  margin-top: 42px;
}

.article-more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-teaser {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.article-teaser img {
  width: 100%;
  height: 220px;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: cover;
}

.article-teaser span {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.article-teaser strong {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.15;
}

@media (max-width: 1080px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    width: 100%;
    position: static;
  }

  .article-more__grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-latest__title {
    font-size: 2rem;
  }
}

@media (max-width: 760px) {
  .article-main {
    padding-bottom: 40px;
  }

  .article-shell.shell--wide {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }

  .article-hero {
    padding: 18px 14px;
    gap: 14px;
  }

  .article-hero h1 {
    max-width: none;
    font-size: clamp(1.95rem, 8.4vw, 2.75rem);
    line-height: 1.02;
  }

  .article-excerpt,
  .article-copy__lead,
  .article-copy p {
    font-size: 1rem;
  }

  .article-meta {
    align-items: stretch;
  }

  .article-author {
    align-items: flex-start;
  }

  .article-share {
    justify-items: start;
    width: 100%;
  }

  .article-share__links {
    justify-content: flex-start;
  }

  .article-copy,
  .article-summary,
  .article-card {
    padding: 18px;
  }

  .article-copy .poll-card--no-image .poll-card__content {
    grid-template-columns: 1fr;
  }

  .article-copy .poll-card--no-image .interactive-card__aside {
    padding-left: 0;
  }

  .article-media img {
    height: clamp(220px, 58vw, 300px);
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .article-latest {
    gap: 18px;
    padding: 20px 18px 18px;
  }

  .article-latest__title {
    font-size: 1.72rem;
  }

  .article-latest__timeline {
    gap: 22px;
    padding-left: 26px;
  }

  .article-latest__item::before {
    left: -26px;
    width: 12px;
    height: 12px;
  }

  .article-latest__item a {
    font-size: 1.42rem;
  }

  .article-copy blockquote p:not(.blockquoteAutor) {
    font-size: 1.28rem;
  }

  .article-copy blockquote .blockquoteAutor {
    font-size: 0.92rem;
  }

  .article-copy blockquote.warning {
    padding: 62px 18px 16px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .article-copy blockquote.warning .author {
    top: 18px;
    left: 18px;
    font-size: 1.02rem;
  }

  .table-wrapper {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-wrapper table,
  .table-wrapper thead,
  .table-wrapper tbody,
  .table-wrapper tr,
  .table-wrapper td {
    display: block;
    width: 100%;
  }

  .table-wrapper table {
    min-width: 0;
    background: transparent;
  }

  .table-wrapper thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .table-wrapper tbody {
    display: grid;
    gap: 12px;
  }

  .table-wrapper tr {
    overflow: hidden;
    border: 1px solid rgba(18, 56, 79, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
  }

  .table-wrapper td {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(18, 56, 79, 0.08);
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .table-wrapper td:last-child {
    border-bottom: 0;
  }

  .table-wrapper td::before {
    content: attr(data-label);
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .article-copy .responsive-facebook,
  .article-copy .embed,
  .article-copy .embed-responsive,
  .article-copy amp-twitter,
  .article-copy amp-instagram,
  .article-copy amp-facebook,
  .article-copy blockquote.tiktok-embed {
    margin: 1.4em 0;
  }

  .article-copy blockquote.tiktok-embed {
    max-width: 100% !important;
  }

  .article-copy .embed {
    padding: 12px;
  }

  .article-copy .responsive-facebook iframe {
    min-height: 440px;
  }

  .article-copy .iframe_video {
    min-height: 220px;
  }

  .article-copy .iframe_pdf {
    min-height: 420px;
  }

  .article-copy div:has(> audio) {
    padding: 14px 16px;
  }

  .article-embed--left,
  .article-embed--right,
  .article-embed--center {
    float: none;
    width: 100%;
    max-width: none;
    margin: 1.4em 0;
  }

  .article-embed img {
    aspect-ratio: 16 / 10;
  }

  .article-embed--square img {
    aspect-ratio: 1 / 1;
  }

  .article-related-embed {
    grid-template-columns: 1fr;
  }

  .article-related-embed img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .article-gallery__heading {
    align-items: start;
    flex-direction: column;
  }

  .article-gallery__controls {
    width: 100%;
    justify-content: flex-end;
  }

  .article-gallery__slide {
    padding: 10px;
  }

  .article-gallery__slide img {
    height: clamp(200px, 54vw, 260px);
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .article-ad__frame {
    width: min(320px, calc(100vw - 24px));
    aspect-ratio: 16 / 5;
  }

  .article-ad__slot {
    transform-origin: top left;
    transform: scale(calc(min(320px, calc(100vw - 24px)) / 320px));
  }

  .article-more__grid {
    grid-template-columns: 1fr;
  }
}
