:root {
  --brand: #06b06d;
  --brand-dark: #020206;
  --accent: #0d603e;
  --ink: #101412;
  --muted: #56615b;
  --line: #cad4ce;
  --paper: #f6f6f3;
  --soft: #e8eeea;
  --shell: 1240px;
  --reading: 740px;
  --radius: 0.15rem;
  --shadow: 0 18px 50px rgb(2 2 6 / 12%);
  --font: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--brand);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--paper);
}

.site-header__bar {
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header__accent {
  height: 0.3rem;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.site-brand {
  flex: 0 1 auto;
}

.site-brand .custom-logo {
  width: auto;
  max-width: min(15rem, 55vw);
  max-height: 4rem;
}

.site-brand__name {
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-navigation__list,
.footer-navigation__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a,
.header-search {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  color: var(--brand);
}

.header-search {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  width: 1.1rem;
  height: 2px;
  display: block;
  background: currentColor;
  content: '';
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before {
  position: absolute;
  top: -0.35rem;
}

.menu-toggle__icon::after {
  position: absolute;
  top: 0.35rem;
}

.site-main {
  min-height: 65vh;
}

.home-layout,
.listing-layout {
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.section-heading h1,
.archive-header h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.75rem);
}

.section-heading__eyebrow,
.archive-header__label,
.content-kicker {
  margin-bottom: 0.45rem;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content-kicker {
  display: inline-block;
  text-decoration: none;
}

.section-heading__date {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(17rem, 0.75fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.lead-story {
  min-width: 0;
}

.lead-story__image,
.content-card__image {
  display: block;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
  text-decoration: none;
}

.lead-story__image {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.25rem;
}

.lead-story__image img,
.content-card__image img,
.content-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.lead-story:hover img,
.content-card:hover img {
  transform: scale(1.025);
}

.content-card__placeholder {
  display: block;
  background: linear-gradient(135deg, var(--soft), color-mix(in srgb, var(--brand) 15%, white));
}

.lead-story h2 {
  max-width: 20ch;
  margin: 0 0 0.85rem;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
}

.lead-story h2 a,
.content-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.lead-story p {
  max-width: 65ch;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead-story time,
.content-card__date {
  color: var(--muted);
  font-size: 0.82rem;
}

.lead-grid__secondary {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.lead-grid__secondary .content-card + .content-card {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.latest-section {
  padding-top: 2.5rem;
}

.latest-section > h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.content-card {
  min-width: 0;
}

.content-card__image {
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}

.content-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.content-card__excerpt {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.archive-header {
  max-width: 58rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--ink);
}

.archive-header__description {
  max-width: 65ch;
  margin-top: 1rem;
  color: var(--muted);
}

.navigation.pagination {
  margin-top: 3rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-numbers {
  min-width: 2.65rem;
  min-height: 2.65rem;
  display: inline-grid;
  place-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--paper);
}

.article-shell,
.page-shell {
  padding-block: clamp(2.5rem, 7vw, 6rem);
}

.article {
  max-width: var(--reading);
  margin-inline: auto;
}

.article__header {
  margin-bottom: 2rem;
}

.article__header h1,
.page-content__header h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 6vw, 4.75rem);
}

.article__summary {
  margin-bottom: 1.25rem;
  color: #42474d;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.5;
}

.article__date {
  color: var(--muted);
  font-size: 0.88rem;
}

.article__cover {
  width: min(var(--shell), calc(100vw - 2rem));
  margin: 0 50% 2.5rem;
  transform: translateX(-50%);
}

.article__cover img {
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.article__cover figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.entry-content {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.entry-content > * {
  max-width: var(--reading);
  margin-right: auto;
  margin-left: auto;
}

.entry-content > * + * {
  margin-top: 1.35em;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2em;
}

.entry-content blockquote {
  padding: 0.5rem 0 0.5rem 1.25rem;
  border-left: 4px solid var(--accent);
  color: #3b4045;
  font-size: 1.2em;
}

.entry-content .alignwide {
  width: min(var(--shell), calc(100vw - 2rem));
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.article__tags a {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--soft);
  text-decoration: none;
}

.post-navigation {
  max-width: var(--reading);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.post-navigation > div:last-child {
  text-align: right;
}

.post-navigation a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.post-navigation span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.page-content {
  max-width: var(--reading);
  margin-inline: auto;
}

.search-form {
  max-width: 42rem;
  margin-top: 1.5rem;
}

.search-form__label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 750;
}

.search-form__row {
  display: flex;
  gap: 0.55rem;
}

.search-form__field {
  min-width: 0;
  flex: 1;
  padding: 0.75rem 0.9rem;
  border: 1px solid #aeb4ba;
  border-radius: 0.35rem;
  color: var(--ink);
  font: inherit;
}

.search-form__submit,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--brand);
  border-radius: 0.35rem;
  background: var(--brand);
  color: var(--paper);
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.search-form__submit:hover,
.button:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: var(--paper);
}

.empty-state,
.error-page {
  max-width: 42rem;
  margin-inline: auto;
  padding-block: clamp(4rem, 10vw, 8rem);
  text-align: center;
}

.empty-state p,
.error-page > p:not(.error-page__code) {
  color: var(--muted);
}

.error-page__code {
  margin-bottom: 0;
  color: var(--brand);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  line-height: 1;
}

.error-page__actions {
  margin: 1.5rem 0 2.5rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 0.3rem solid var(--brand);
  background: var(--ink);
  color: #d9dde1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-block: 3rem;
}

.site-footer__name {
  margin-bottom: 0.25rem;
  color: var(--paper);
  font-size: 1.2rem;
  font-weight: 850;
}

.site-footer__tagline,
.site-footer__copyright {
  margin: 0;
  color: #aeb4ba;
  font-size: 0.85rem;
}

.footer-navigation__list {
  flex-wrap: wrap;
}

.footer-navigation a {
  color: var(--paper);
  font-size: 0.9rem;
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% - 0.3rem);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand);
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation__list {
    display: grid;
    gap: 0;
  }

  .primary-navigation__list a {
    display: block;
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid var(--line);
  }

  .header-search {
    display: inline-flex;
    margin-top: 1rem;
  }

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

  .lead-grid__secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-grid__secondary .content-card + .content-card {
    padding-top: 0;
    border-top: 0;
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .site-header__inner {
    min-height: 4.5rem;
    gap: 1rem;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .lead-grid__secondary,
  .content-grid,
  .post-navigation,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .lead-grid__secondary .content-card {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 1rem;
  }

  .lead-grid__secondary .content-card__image {
    margin: 0;
  }

  .lead-grid__secondary .content-card__excerpt {
    display: none;
  }

  .article__cover,
  .entry-content .alignwide {
    width: 100vw;
  }

  .article__cover img {
    border-radius: 0;
  }

  .post-navigation > div:last-child {
    text-align: left;
  }

  .search-form__row {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .post-navigation,
  .article__tags {
    display: none;
  }

  .article,
  .article__cover {
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
  }
}

/* Identidade editorial do Fala Sergipe. */
body {
  background:
    linear-gradient(rgb(6 176 109 / 3%) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 2rem;
}

.site-header {
  background: var(--brand-dark);
  color: #fff;
}

.site-header__signal {
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  color: #9ef3cd;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header__signal .site-shell {
  min-height: 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-header__signal span + span::before {
  margin-right: 1.4rem;
  color: var(--brand);
  content: '●';
  font-size: 0.45rem;
  vertical-align: 0.1rem;
}

.site-header__bar {
  border-bottom: 0;
}

.site-header__inner {
  min-height: 6.4rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-brand .custom-logo {
  width: 5rem;
  height: 5rem;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.site-brand__name,
.primary-navigation a,
.header-search {
  color: #fff;
}

.site-brand__descriptor {
  max-width: 7rem;
  color: #9ef3cd;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.primary-navigation a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  color: #9ef3cd;
}

.primary-navigation__list > li > a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 0.18rem;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  content: '';
  transition: transform 160ms ease;
}

.primary-navigation__list > li > a:hover::after,
.primary-navigation .current-menu-item > a::after {
  transform: scaleX(1);
}

.header-search {
  border-color: var(--brand);
  border-radius: 0;
  background: var(--brand);
  color: var(--brand-dark);
}

.header-search:hover {
  background: #9ef3cd;
  color: var(--brand-dark);
}

.menu-toggle {
  border-color: rgb(255 255 255 / 35%);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.home-layout {
  padding-top: clamp(2.2rem, 5vw, 4.8rem);
}

.home-intro {
  position: relative;
  min-height: 19rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(14rem, 0.55fr);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--ink);
  background: #fff;
}

.home-intro::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.45rem;
  background: var(--brand);
  content: '';
}

.home-intro__copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.home-intro__copy h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.home-intro__copy > p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.section-heading__eyebrow,
.archive-header__label,
.content-kicker {
  color: var(--accent);
  font-weight: 950;
  letter-spacing: 0.13em;
}

.home-intro__mark {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--brand-dark);
  color: var(--brand);
}

.home-intro__mark::before,
.home-intro__mark::after {
  position: absolute;
  width: 85%;
  height: 0.45rem;
  background: #fff;
  content: '';
}

.home-intro__mark::before {
  transform: rotate(34deg);
}

.home-intro__mark::after {
  transform: rotate(-34deg);
}

.home-intro__mark span {
  position: relative;
  z-index: 1;
  transform: translateY(0.18em);
  font-size: clamp(9rem, 20vw, 16rem);
  font-weight: 950;
  line-height: 0.6;
}

.lead-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.78fr);
  gap: clamp(2rem, 4vw, 4rem);
  border-bottom: 0;
}

.lead-story__image,
.content-card__image {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--brand-dark);
}

.lead-story__image {
  aspect-ratio: 16 / 8.5;
}

.content-card__placeholder {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--brand-dark);
  color: #fff;
}

.content-card__placeholder::before,
.content-card__placeholder::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
  content: '';
}

.content-card__placeholder::before {
  top: -42%;
  right: -9%;
  width: 68%;
  aspect-ratio: 1;
}

.content-card__placeholder::after {
  right: -19%;
  bottom: -58%;
  width: 88%;
  aspect-ratio: 1;
}

.content-card__placeholder.tone-2 {
  background: var(--brand);
  color: var(--brand-dark);
}

.content-card__placeholder.tone-3 {
  background: var(--accent);
}

.content-card__quote {
  position: absolute;
  z-index: 1;
  top: 13%;
  left: 8%;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 950;
  line-height: 0.7;
}

.content-card__signal {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: 13%;
  width: 42%;
  height: 0.55rem;
  background: currentColor;
  box-shadow: 0 -1rem 0 -0.13rem currentColor, 0 1rem 0 -0.13rem currentColor;
}

.lead-story__statement {
  position: absolute;
  z-index: 1;
  bottom: 12%;
  left: 8%;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-story h2 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.lead-story p {
  max-width: 58ch;
}

.lead-story h2 a,
.content-card__title a {
  background-image: linear-gradient(var(--brand), var(--brand));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 0.16em;
  transition: background-size 180ms ease;
}

.lead-story h2 a:hover,
.content-card__title a:hover {
  background-size: 100% 0.16em;
}

.lead-grid__secondary {
  gap: 2rem;
}

.lead-grid__secondary .content-card {
  padding-left: 1.25rem;
  border-left: 0.32rem solid var(--brand);
}

.lead-grid__secondary .content-card + .content-card {
  padding-top: 0;
  border-top: 0;
}

.lead-grid__secondary .content-card__image {
  display: none;
}

.content-card__title {
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.content-card__meta,
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.latest-section {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.latest-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.35rem solid var(--ink);
}

.latest-section__heading p {
  margin: 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.latest-section__heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.content-grid {
  gap: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.content-card__image {
  aspect-ratio: 4 / 2.65;
}

.listing-layout .content-card {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.archive-header {
  position: relative;
  max-width: none;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--ink);
  background: #fff;
}

.archive-header::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
  background: var(--brand);
  content: '';
}

.article {
  max-width: 820px;
}

.article__header {
  position: relative;
  margin-bottom: 2.5rem;
  padding-top: 1.4rem;
  border-top: 0.45rem solid var(--brand);
}

.article__voice {
  margin-bottom: 1.4rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article__header h1 {
  max-width: 18ch;
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.article__summary {
  max-width: 62ch;
  color: #344039;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.article__cover-graphic {
  position: relative;
  width: min(var(--shell), calc(100vw - 2rem));
  min-height: clamp(12rem, 28vw, 22rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1vw, 0.85rem);
  overflow: hidden;
  margin: 0 50% 2.5rem;
  transform: translateX(-50%);
  border: 1px solid var(--ink);
  background: var(--brand-dark);
  color: var(--brand);
}

.article__cover-graphic.tone-2 {
  background: var(--brand);
  color: var(--brand-dark);
}

.article__cover-graphic.tone-3 {
  background: var(--accent);
  color: #fff;
}

.article__cover-graphic > span {
  position: absolute;
  top: 8%;
  left: 6%;
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 950;
  line-height: 0.7;
}

.article__cover-graphic i {
  width: clamp(0.45rem, 1.2vw, 0.9rem);
  height: clamp(3.5rem, 7vw, 6rem);
  background: currentColor;
}

.article__cover-graphic i:nth-of-type(2),
.article__cover-graphic i:nth-of-type(4) {
  height: clamp(5.5rem, 11vw, 9.5rem);
}

.article__cover-graphic i:nth-of-type(3) {
  height: clamp(8rem, 16vw, 14rem);
}

.article__disclosure {
  max-width: var(--reading);
  margin: 0 auto 2rem;
  padding: 1rem 1.2rem;
  border-left: 0.32rem solid var(--brand);
  background: #e7f7f0;
  color: #30483c;
  font-size: 0.84rem;
}

.entry-content {
  color: #202823;
}

.entry-content > p:first-child::first-letter {
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: var(--accent);
  font-size: 4.3em;
  font-weight: 950;
  line-height: 0.75;
}

.entry-content blockquote {
  margin-block: 2rem;
  padding: 1.4rem 1.6rem;
  border: 0;
  border-left: 0.45rem solid var(--brand);
  background: var(--brand-dark);
  color: #fff;
  font-size: 1.18em;
  font-weight: 700;
}

.site-footer {
  border-top: 0;
  background: var(--brand-dark);
}

.site-footer::before {
  height: 0.55rem;
  display: block;
  background: repeating-linear-gradient(90deg, var(--brand) 0 4rem, #9ef3cd 4rem 7rem, #fff 7rem 8rem);
  content: '';
}

.site-footer__inner {
  align-items: center;
}

.site-footer__name {
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.site-footer__closing {
  text-align: right;
}

.site-footer__closing > p:first-child {
  margin-bottom: 0.35rem;
  color: #9ef3cd;
  font-size: 0.75rem;
  font-weight: 850;
}

@media (max-width: 900px) {
  .primary-navigation {
    top: 100%;
    border-color: var(--brand);
    border-radius: 0;
    background: var(--brand-dark);
  }

  .primary-navigation__list a {
    border-bottom-color: rgb(255 255 255 / 16%);
  }

  .home-intro {
    grid-template-columns: minmax(0, 1.35fr) minmax(10rem, 0.5fr);
  }

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

  .lead-grid__secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__closing {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .site-header__signal .site-shell {
    justify-content: center;
  }

  .site-header__inner {
    min-height: 5.4rem;
  }

  .site-brand .custom-logo {
    width: 4.2rem;
    height: 4.2rem;
  }

  .site-brand__descriptor {
    display: none;
  }

  .home-intro {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-intro__copy {
    padding: 2.25rem 1.5rem 2.5rem;
  }

  .home-intro__copy h1 {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  .home-intro__mark {
    min-height: 8rem;
  }

  .home-intro__mark span {
    font-size: 9rem;
  }

  .lead-grid__secondary {
    grid-template-columns: 1fr;
  }

  .lead-grid__secondary .content-card {
    display: block;
  }

  .latest-section__heading {
    align-items: start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .content-card__image {
    aspect-ratio: 16 / 8;
  }

  .article__cover-graphic {
    width: 100vw;
    border-right: 0;
    border-left: 0;
  }
}

@media print {
  .article__cover-graphic,
  .article__disclosure {
    display: none;
  }
}
