:root {
  --violet: #2d145f;
  --violet-deep: #180d31;
  --violet-soft: #5d3c86;
  --lavender: #ded5ea;
  --lime: #dce7bd;
  --cream: #f1ede5;
  --paper: #fbfaf7;
  --white: #fff;
  --ink: #17141b;
  --ink-soft: #625e68;
  --line: rgba(23, 20, 27, 0.14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", sans-serif;
  --page: min(1180px, calc(100vw - 64px));
  --reading: 710px;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  opacity: 0.028;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--violet-soft);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--violet);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #91a850;
}

.resource-header {
  position: sticky;
  z-index: 900;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 14px max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(23, 20, 27, 0.08);
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
}

.resource-brand img {
  width: 142px;
  height: auto;
}

.resource-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 600;
}

.resource-header nav > a:not(.button) {
  color: var(--ink-soft);
}

.resource-header nav > a:not(.button):hover,
.resource-header nav > a:not(.button):focus-visible {
  color: var(--violet);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--violet);
  border-radius: 999px;
  color: var(--white);
  background: var(--violet);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--violet);
  background: var(--lime);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.86rem;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 70px max(32px, calc((100vw - 1180px) / 2)) 74px;
  color: var(--white);
  background: var(--violet-deep);
}

.article-hero::after {
  position: absolute;
  right: -60px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 72px solid rgba(220, 231, 189, 0.14);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--lime);
}

.eyebrow {
  margin: 0 0 18px;
  color: #8da245;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-hero .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--lime);
}

.article-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.article-deck {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.article-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-meta span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, var(--reading)) 300px;
  gap: 86px;
  width: var(--page);
  margin: 0 auto;
  padding: 74px 0 100px;
}

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

.article-body h2 {
  margin: 64px 0 20px;
  color: var(--violet-deep);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.article-body h3 {
  margin: 0 0 10px;
  color: var(--violet-deep);
  font-size: 1.02rem;
  line-height: 1.35;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
}

.article-body li + li {
  margin-top: 8px;
}

.article-disclaimer {
  margin-bottom: 30px;
  padding: 16px 20px;
  border-left: 3px solid #9bad5b;
  color: #47414d;
  background: #f1f3e9;
  font-size: 0.88rem;
  line-height: 1.55;
}

.article-toc {
  display: grid;
  gap: 8px;
  margin-bottom: 58px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.article-toc span {
  margin-bottom: 4px;
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-toc a {
  width: fit-content;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgba(45, 20, 95, 0.25);
  text-underline-offset: 4px;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--violet);
  text-decoration-color: currentColor;
}

.article-note {
  margin: 34px 0;
  padding: 25px 28px;
  border: 1px solid rgba(45, 20, 95, 0.13);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #463b50;
  background: var(--cream);
  box-shadow: inset 5px 0 0 var(--lavender);
  font-size: 0.96rem;
  line-height: 1.65;
}

.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 30px;
}

.symptom-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.symptom-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #514b57;
  font-size: 0.93rem;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 !important;
  padding: 13px 15px 13px 46px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 10px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: var(--lime);
  font-size: 0.75rem;
  font-weight: 800;
  content: "✓";
}

.steps-list {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: var(--lime);
  font-weight: 800;
}

.steps-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.inline-cta {
  position: relative;
  overflow: hidden;
  margin: 72px 0 0;
  padding: 42px;
  border-radius: 24px;
  color: var(--white);
  background: var(--violet);
}

.inline-cta::after {
  position: absolute;
  right: -55px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 38px solid rgba(220, 231, 189, 0.16);
  border-radius: 50%;
  content: "";
}

.inline-cta > * {
  position: relative;
  z-index: 1;
}

.article-body .inline-cta > p {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-body .inline-cta h2 {
  max-width: 500px;
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

.inline-cta > span {
  display: block;
  max-width: 480px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.inline-cta .button {
  color: var(--violet);
  border-color: var(--lime);
  background: var(--lime);
}

.inline-cta .button:hover,
.inline-cta .button:focus-visible {
  color: var(--violet);
  background: var(--white);
}

.inline-cta .button b {
  margin-left: 12px;
}

.faq-section {
  margin-top: 76px;
}

.article-body .faq-section > h2 {
  margin: 0 0 30px;
}

.faq-section details {
  border-top: 1px solid var(--line);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  position: relative;
  padding: 20px 44px 20px 0;
  color: var(--violet-deep);
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section details p {
  padding: 0 32px 20px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.sources {
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article-body .sources h2 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sources p,
.sources ul {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.sources ul {
  padding-left: 18px;
}

.sources a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-aside {
  align-self: stretch;
}

.aside-card {
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid rgba(45, 20, 95, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(24, 13, 49, 0.08);
}

.aside-card__label {
  color: #7b8e3e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aside-card h2 {
  margin: 12px 0;
  color: var(--violet-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.aside-card p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.aside-card .button {
  width: 100%;
}

.text-link {
  display: block;
  width: fit-content;
  margin: 18px auto 16px;
  color: var(--violet);
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.aside-card small {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #77717c;
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

.crisis-card {
  margin-top: 16px;
  padding: 22px;
  border-radius: 16px;
  color: #473d22;
  background: #f3eed8;
}

.crisis-card strong {
  font-size: 0.85rem;
}

.crisis-card p {
  margin: 5px 0 0;
  font-size: 0.77rem;
  line-height: 1.5;
}

.related {
  padding: 88px max(32px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}

.related__heading h2 {
  max-width: 560px;
  margin: 0;
  color: var(--violet-deep);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.related-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  border-color: var(--violet-soft);
  transform: translateY(-4px);
}

.related-card span {
  color: #7e903f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card strong {
  margin-top: 28px;
  color: var(--violet-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.related-card em {
  margin-top: auto;
  padding-top: 26px;
  color: var(--violet);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.all-resources {
  display: block;
  width: fit-content;
  margin-top: 30px;
  color: var(--violet);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.resource-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr auto;
  align-items: start;
  gap: 32px;
  padding: 55px max(32px, calc((100vw - 1180px) / 2)) 34px;
  color: rgba(255, 255, 255, 0.67);
  background: var(--violet-deep);
  font-size: 0.83rem;
}

.resource-footer img {
  width: 142px;
}

.resource-footer p {
  margin: 0;
}

.resource-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--white);
  font-weight: 600;
}

.resource-footer small {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

/* Índice de recursos */
.resources-hero {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 110px max(32px, calc((100vw - 1180px) / 2)) 90px;
  color: var(--white);
  background: var(--violet-deep);
}

.resources-hero::after {
  position: absolute;
  right: 5vw;
  bottom: -230px;
  width: 560px;
  height: 560px;
  border: 92px solid rgba(220, 231, 189, 0.15);
  border-radius: 50%;
  content: "";
}

.resources-hero > * {
  position: relative;
  z-index: 1;
}

.resources-hero .eyebrow {
  color: var(--lime);
}

.resources-hero h1 {
  max-width: 890px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.resources-hero > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.08rem;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 42px;
}

.topic-cloud span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.resource-list {
  width: var(--page);
  margin: 0 auto;
  padding: 100px 0;
}

.resource-list__heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.resource-list__heading h2 {
  margin: 0;
  color: var(--violet-deep);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.resource-list__heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resource-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  margin: 0;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease;
}

.resource-card:hover {
  background: #f6f3ed;
}

.resource-card > p {
  margin: 0 0 30px;
  color: #7b8e3e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin: 0 0 16px;
  color: var(--violet-deep);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.resource-card h2 a:hover,
.resource-card h2 a:focus-visible {
  color: var(--violet-soft);
}

.resource-card > span {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.resource-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
}

.resource-card small {
  color: #817b85;
  font-size: 0.73rem;
}

.resource-card div a {
  color: var(--violet);
  font-size: 0.84rem;
  font-weight: 700;
}

.index-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: 76px max(32px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--violet);
}

.index-cta p {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.index-cta h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.index-cta .button {
  flex: 0 0 auto;
  color: var(--violet);
  border-color: var(--lime);
  background: var(--lime);
}

.index-cta .button:hover,
.index-cta .button:focus-visible {
  background: var(--white);
}

@media (max-width: 980px) {
  .article-shell {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 48px;
  }

  .related__grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-card:last-child {
    grid-column: 1 / -1;
    min-height: 210px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 36px);
  }

  body {
    font-size: 16px;
  }

  .resource-header {
    min-height: 68px;
    padding: 11px 18px;
  }

  .resource-brand img {
    width: 118px;
  }

  .resource-header nav {
    gap: 0;
  }

  .resource-header nav > a:not(.button) {
    display: none;
  }

  .button--small {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .article-hero {
    padding: 38px 18px 50px;
  }

  .article-hero::after {
    right: -160px;
    bottom: -210px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
    font-size: 0.7rem;
  }

  .article-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .article-deck {
    margin-top: 22px;
  }

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

  .article-shell {
    display: block;
    padding: 44px 0 70px;
  }

  .article-body h2 {
    margin-top: 50px;
  }

  .article-toc {
    padding: 22px;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    padding: 30px 24px;
  }

  .article-aside {
    margin-top: 52px;
  }

  .aside-card {
    position: static;
  }

  .related {
    padding: 65px 18px;
  }

  .related__grid {
    grid-template-columns: 1fr;
  }

  .related-card,
  .related-card:last-child {
    grid-column: auto;
    min-height: 220px;
  }

  .resource-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 18px 28px;
  }

  .resource-footer nav {
    justify-content: flex-start;
  }

  .resource-footer small {
    grid-column: auto;
  }

  .resources-hero {
    min-height: auto;
    padding: 75px 18px 70px;
  }

  .resources-hero::after {
    right: -290px;
    bottom: -310px;
  }

  .resources-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .resource-list {
    padding: 70px 0;
  }

  .resource-list__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 300px;
    padding: 28px;
  }

  .index-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 58px 18px;
  }

  .index-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .resource-header,
  .reading-progress,
  .article-aside,
  .inline-cta,
  .related,
  .resource-footer {
    display: none !important;
  }

  .article-hero {
    padding: 30px 0;
    color: var(--ink);
    background: var(--white);
  }

  .article-hero .eyebrow,
  .article-deck,
  .article-meta,
  .breadcrumbs {
    color: var(--ink-soft);
  }

  .article-shell {
    display: block;
    width: 100%;
    padding: 30px 0;
  }
}
