:root {
  --pfp-navy: #082b5c;
  --pfp-navy-dark: #041d40;
  --pfp-teal: #0fc3b2;
  --pfp-teal-dark: #079d91;
  --pfp-ink: #13233d;
  --pfp-text: #43516a;
  --pfp-muted: #718096;
  --pfp-line: #dfe7ee;
  --pfp-mist: #f5f8fb;
  --pfp-white: #fff;
  --pfp-container: 1372px;
  --pfp-radius: 6px;
  --pfp-shadow: 0 10px 28px rgba(8, 43, 92, .08);
  --pfp-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--pfp-ink);
  background: var(--pfp-white);
  font-family: var(--pfp-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: var(--pfp-navy); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--pfp-teal-dark); }

button,
input,
textarea,
select { font: inherit; }

button,
.button,
input[type="submit"] { cursor: pointer; }

.site-container {
  width: min(calc(100% - 48px), var(--pfp-container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  color: var(--pfp-white);
  background: var(--pfp-navy);
  border-radius: 4px;
}

:focus-visible { outline: 3px solid rgba(15, 195, 178, .55); outline-offset: 3px; }

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  background: var(--pfp-white);
  border-bottom: 1px solid var(--pfp-line);
}

.topbar {
  color: #536077;
  background: #f7f9fb;
  border-bottom: 1px solid #e8edf2;
  font-size: .79rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar__date { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__status { width: 7px; height: 7px; background: var(--pfp-teal); border-radius: 50%; }

.utility-nav { margin-right: auto; }
.utility-nav .menu,
.primary-nav .menu,
.footer-nav .menu { list-style: none; padding: 0; margin: 0; }
.utility-nav .menu { display: flex; gap: 25px; }
.utility-nav a { color: #536077; }
.utility-nav a:hover { color: var(--pfp-teal-dark); }

.topbar__actions { display: flex; align-items: center; gap: 14px; }
.search-toggle { width: 34px; height: 30px; display: grid; place-items: center; padding: 0; color: var(--pfp-navy); background: transparent; border: 0; }
.search-toggle svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.main-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.site-branding { flex: 0 0 auto; }
.pfp-logo { display: block; line-height: 0; }
.pfp-logo img,
.custom-logo { display: block; width: auto; height: 54px; object-fit: contain; }
.custom-logo-link { display: block; line-height: 0; }

.primary-nav { margin-left: auto; align-self: stretch; }
.primary-nav > .menu { height: 100%; display: flex; align-items: stretch; gap: 38px; }
.primary-nav .menu > li { position: relative; display: flex; align-items: center; }
.primary-nav a { position: relative; display: flex; align-items: center; height: 100%; color: var(--pfp-ink); font-size: .97rem; font-weight: 750; }
.primary-nav .current-menu-item > a::after,
.primary-nav .current-category-ancestor > a::after,
.primary-nav a:hover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  background: var(--pfp-teal);
}

.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: var(--pfp-white);
  border: 1px solid var(--pfp-line);
  box-shadow: var(--pfp-shadow);
  transition: .2s ease;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-nav .sub-menu a { padding: 10px 12px; height: auto; font-size: .9rem; }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid var(--pfp-line); border-radius: 4px; }
.menu-toggle__lines { display: grid; gap: 4px; }
.menu-toggle__lines span { display: block; height: 2px; background: var(--pfp-navy); }

.header-search { border-top: 1px solid var(--pfp-line); background: var(--pfp-mist); }
.header-search__inner { padding-block: 14px; }
.search-form { position: relative; display: flex; width: min(100%, 620px); margin-inline: auto; }
.search-form label { flex: 1; }
.search-field {
  width: 100%;
  min-height: 46px;
  padding: 10px 130px 10px 16px;
  color: var(--pfp-ink);
  background: var(--pfp-white);
  border: 1px solid var(--pfp-line);
  border-radius: 4px;
}
.search-submit {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  padding: 0 22px;
  color: var(--pfp-navy-dark);
  background: var(--pfp-teal);
  border: 0;
  border-radius: 3px;
  font-weight: 800;
}

/* Shared components */
.site-main { min-height: 60vh; }
.home-layout,
.content-with-sidebar,
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  padding-block: 20px 44px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  color: var(--pfp-navy-dark);
  background: var(--pfp-teal);
  border-radius: 3px;
  font-size: .68rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .025em;
}
.category-badge:hover { color: var(--pfp-navy-dark); background: #35d3c5; }

.entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; color: var(--pfp-muted); font-size: .76rem; }

.section-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 11px;
  margin-bottom: 17px;
  border-bottom: 1px solid var(--pfp-line);
}
.section-heading::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 42px; height: 3px; background: var(--pfp-teal); }
.section-heading h2 { margin: 0; font-size: 1.25rem; line-height: 1.2; }
.section-link { color: var(--pfp-teal-dark); font-size: .8rem; font-weight: 750; }

.button,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--pfp-navy-dark);
  background: var(--pfp-teal);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
}
.button:hover { color: var(--pfp-navy-dark); background: #35d3c5; }

/* Homepage */
.lead-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr); gap: 18px; }
.lead-story,
.secondary-story { position: relative; margin: 0; overflow: hidden; background: var(--pfp-navy-dark); border-radius: var(--pfp-radius); }
.lead-story { min-height: 455px; }
.secondary-story { min-height: 218px; }
.lead-story__media,
.secondary-story__media { position: absolute; inset: 0; }
.lead-story__media::after,
.secondary-story__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 18, 42, .92) 0%, rgba(2, 18, 42, .28) 58%, rgba(2, 18, 42, .05) 100%); }
.lead-story img,
.secondary-story img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lead-story:hover img,
.secondary-story:hover img { transform: scale(1.025); }
.lead-story__overlay,
.secondary-story__overlay { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; color: var(--pfp-white); pointer-events: none; }
.lead-story__overlay a,
.secondary-story__overlay a { color: inherit; pointer-events: auto; }
.lead-story__overlay .category-badge,
.secondary-story__overlay .category-badge { color: var(--pfp-navy-dark); }
.lead-story h1 { max-width: 700px; margin: 14px 0 8px; font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.08; letter-spacing: -.03em; }
.lead-story p { max-width: 640px; margin: 0 0 10px; color: rgba(255,255,255,.9); }
.lead-story .entry-meta,
.secondary-story .entry-meta { color: rgba(255,255,255,.75); }
.lead-secondary { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 18px; }
.secondary-story__overlay { padding: 19px; }
.secondary-story h2 { margin: 9px 0 8px; font-size: 1.22rem; line-height: 1.17; }

.home-section { margin-top: 18px; }
.posts-grid { display: grid; gap: 20px; }
.posts-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.posts-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.post-card { min-width: 0; overflow: hidden; margin: 0; background: var(--pfp-white); border: 1px solid var(--pfp-line); border-radius: var(--pfp-radius); }
.post-card__media { position: relative; display: block; aspect-ratio: 16 / 8.7; overflow: hidden; background: var(--pfp-mist); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card__media img { transform: scale(1.035); }
.post-card__body { position: relative; padding: 19px; }
.post-card__body > .category-badge { position: absolute; top: -13px; left: 16px; }
.post-card__title { margin: 4px 0 8px; font-size: 1.05rem; line-height: 1.22; letter-spacing: -.015em; }
.post-card__title a { color: var(--pfp-ink); }
.post-card__title a:hover { color: var(--pfp-teal-dark); }
.post-card__excerpt { color: var(--pfp-text); font-size: .86rem; }
.post-card__excerpt p { margin: 0 0 14px; }

.strip-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.post-card--compact { display: grid; grid-template-columns: 43% 1fr; border: 0; border-radius: 0; }
.post-card--compact .post-card__media { aspect-ratio: 1.45; border-radius: 4px; }
.post-card--compact .post-card__body { padding: 2px 0 2px 12px; }
.post-card--compact .category-badge { display: none; }
.post-card--compact .post-card__title { margin-top: 0; font-size: .8rem; line-height: 1.24; }
.post-card--compact .entry-meta { font-size: .67rem; }
.taken-section { padding-bottom: 36px; }

/* Sidebar */
.site-sidebar { display: grid; align-content: start; gap: 16px; }
.pfp-panel { padding: 24px; background: var(--pfp-white); border: 1px solid var(--pfp-line); border-radius: var(--pfp-radius); }
.pfp-panel__title { margin: 0 0 18px; color: var(--pfp-ink); font-size: 1.15rem; line-height: 1.2; }
.popular-list { padding: 0; margin: 0; list-style: none; counter-reset: popular; }
.popular-list li { position: relative; min-height: 59px; padding: 0 0 14px 40px; margin-bottom: 14px; border-bottom: 1px solid #edf1f5; counter-increment: popular; }
.popular-list li:last-child { padding-bottom: 0; margin-bottom: 0; border: 0; }
.popular-list li::before { content: counter(popular); position: absolute; top: -5px; left: 0; color: var(--pfp-teal); font-size: 1.5rem; font-weight: 850; }
.popular-list a { display: block; color: var(--pfp-ink); font-size: .85rem; line-height: 1.3; font-weight: 730; }
.popular-list a:hover { color: var(--pfp-teal-dark); }
.popular-list time { display: block; margin-top: 5px; color: var(--pfp-muted); font-size: .7rem; }

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

/* Archives */
.archive-hero { padding: 42px 0 46px; color: var(--pfp-white); background: var(--pfp-navy); }
.archive-hero--compact { padding-block: 34px 38px; }
.archive-kicker { margin: 0 0 8px; color: var(--pfp-teal); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.archive-hero h1 { max-width: 900px; margin: 0; color: var(--pfp-white); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -.035em; }
.archive-description { max-width: 760px; margin-top: 13px; color: rgba(255,255,255,.77); }
.archive-description p { margin: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; color: var(--pfp-muted); font-size: .78rem; }
.archive-hero .breadcrumbs { color: rgba(255,255,255,.62); }
.archive-hero .breadcrumbs a { color: rgba(255,255,255,.88); }
.archive-layout { padding-block: 38px 60px; }
.archive-posts .post-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.45fr 1fr; }
.archive-posts .post-card--featured .post-card__media { height: 100%; min-height: 310px; aspect-ratio: auto; }
.archive-posts .post-card--featured .post-card__body { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.archive-posts .post-card--featured .category-badge { position: static; align-self: flex-start; }
.archive-posts .post-card--featured .post-card__title { margin: 14px 0 12px; font-size: 1.7rem; }
.navigation.pagination { grid-column: 1 / -1; margin-top: 34px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.page-numbers { min-width: 40px; min-height: 40px; display: inline-grid; place-items: center; padding: 7px 10px; color: var(--pfp-navy); background: var(--pfp-white); border: 1px solid var(--pfp-line); border-radius: 4px; font-size: .83rem; font-weight: 750; }
.page-numbers.current,
.page-numbers:hover { color: var(--pfp-navy-dark); background: var(--pfp-teal); border-color: var(--pfp-teal); }

/* Single article */
.single-layout { gap: 48px; padding-block: 38px 70px; }
.single-content { min-width: 0; }
.single-article { min-width: 0; }
.article-header { max-width: 900px; margin-bottom: 24px; }
.article-header h1 { margin: 14px 0 18px; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.article-lead { max-width: 820px; margin: 0 0 22px; color: var(--pfp-text); font-size: 1.25rem; line-height: 1.55; }
.article-byline { display: flex; align-items: center; gap: 12px; }
.author-avatar,
.article-byline img { border-radius: 50%; }
.article-byline strong { display: block; font-size: .88rem; }
.article-byline strong a { color: var(--pfp-ink); }
.article-hero { margin: 28px 0 34px; }
.article-hero img { display: block; width: 100%; max-height: 640px; object-fit: cover; border-radius: var(--pfp-radius); }
.article-hero figcaption { margin-top: 8px; color: var(--pfp-muted); font-size: .75rem; }
.article-body { max-width: 800px; color: #28364c; font-family: Georgia, "Times New Roman", serif; font-size: 1.125rem; line-height: 1.82; }
.article-body > *:first-child { margin-top: 0; }
.article-body h2,
.article-body h3,
.article-body h4 { color: var(--pfp-ink); font-family: var(--pfp-font); line-height: 1.2; letter-spacing: -.02em; }
.article-body h2 { margin: 2em 0 .7em; font-size: 1.75rem; }
.article-body h3 { margin: 1.7em 0 .6em; font-size: 1.35rem; }
.article-body a { color: var(--pfp-teal-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body blockquote { margin: 2em 0; padding: 5px 0 5px 25px; color: var(--pfp-navy); border-left: 4px solid var(--pfp-teal); font-size: 1.3rem; font-style: italic; }
.article-body img { border-radius: var(--pfp-radius); }
.article-body table { width: 100%; border-collapse: collapse; font-family: var(--pfp-font); font-size: .92rem; }
.article-body th,
.article-body td { padding: 10px; border: 1px solid var(--pfp-line); text-align: left; }
.article-body .alignwide { max-width: 1060px; width: calc(100vw - 420px); }
.article-body .alignfull { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }
.article-footer { max-width: 800px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 22px; margin-top: 32px; border-top: 1px solid var(--pfp-line); border-bottom: 1px solid var(--pfp-line); font-size: .8rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-list > span { font-weight: 800; }
.tag-list a { padding: 3px 8px; background: var(--pfp-mist); border-radius: 3px; }
.author-box { max-width: 800px; display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 24px; margin-top: 28px; background: var(--pfp-mist); border-radius: var(--pfp-radius); }
.author-box img { border-radius: 50%; }
.author-box span { color: var(--pfp-teal-dark); font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.author-box h2 { margin: 2px 0 6px; font-size: 1.2rem; }
.author-box h2 a { color: var(--pfp-ink); }
.author-box p { margin: 0; color: var(--pfp-text); font-size: .86rem; }
.post-navigation { max-width: 800px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.post-navigation > div { min-width: 0; padding: 17px; border: 1px solid var(--pfp-line); border-radius: var(--pfp-radius); }
.post-navigation > div:last-child { text-align: right; }
.post-navigation span { display: block; margin-bottom: 5px; color: var(--pfp-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.post-navigation a { color: var(--pfp-ink); font-size: .88rem; font-weight: 780; }
.related-posts { margin-top: 50px; }
.related-posts .post-card__excerpt { display: none; }
.related-posts .post-card__title { font-size: .9rem; }

.comments-area { max-width: 800px; margin-top: 48px; }
.comment-list { padding: 0; list-style: none; }
.comment-list .children { list-style: none; }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--pfp-line); }
.comment-author img { border-radius: 50%; vertical-align: middle; margin-right: 8px; }
.comment-form input:not([type="submit"]),
.comment-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--pfp-line); border-radius: 4px; }
.form-submit input { padding: 11px 18px; color: var(--pfp-navy-dark); background: var(--pfp-teal); border: 0; border-radius: 4px; font-weight: 800; }

.page-shell { width: min(calc(100% - 48px), 900px); padding-block: 38px 70px; }
.page-article .article-body { max-width: none; }
.empty-state,
.error-page { padding: 70px 30px; text-align: center; background: var(--pfp-mist); border-radius: var(--pfp-radius); }
.empty-state h1,
.empty-state h2,
.error-page h1 { margin-top: 0; }
.error-page { width: min(calc(100% - 48px), 800px); margin: 50px auto 80px; }
.error-code { margin: 0; color: var(--pfp-teal); font-size: clamp(4rem, 15vw, 9rem); line-height: 1; font-weight: 900; }
.error-page .search-form { margin-block: 28px 18px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.82); background: var(--pfp-navy-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 70px; padding-block: 42px 36px; }
.pfp-logo--footer img { height: 46px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; margin: 18px 0; font-size: .82rem; }
.footer-title { margin: 0 0 14px; color: var(--pfp-white); font-size: .9rem; }
.footer-list,
.footer-nav .menu { padding: 0; margin: 0; list-style: none; }
.footer-list li,
.footer-nav li { margin: 5px 0; }
.footer-list a,
.footer-nav a { color: rgba(255,255,255,.76); font-size: .78rem; }
.footer-list a:hover,
.footer-nav a:hover { color: var(--pfp-teal); }
.footer-bottom { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.7); }

@media (max-width: 1180px) {
  .primary-nav > .menu { gap: 23px; }
  .home-layout,
  .content-with-sidebar,
  .single-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; }
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .post-card--compact:nth-child(n+4) { display: none; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 960px) {
  .site-container { width: min(calc(100% - 32px), var(--pfp-container)); }
  .utility-nav,
  .topbar__actions { margin-left: auto; }
  .main-header__inner { min-height: 76px; }
  .pfp-logo img,
  .custom-logo { height: 45px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    padding: 88px 28px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    background: var(--pfp-white);
    box-shadow: -20px 0 50px rgba(8,43,92,.16);
    transition: .25s ease;
  }
  .menu-open .primary-nav { opacity: 1; visibility: visible; transform: none; }
  .menu-toggle { position: relative; z-index: 30; }
  .primary-nav > .menu { height: auto; display: block; }
  .primary-nav .menu > li { display: block; border-bottom: 1px solid var(--pfp-line); }
  .primary-nav a { height: auto; padding: 14px 0; }
  .primary-nav .current-menu-item > a::after,
  .primary-nav .current-category-ancestor > a::after,
  .primary-nav a:hover::after { right: auto; bottom: 8px; width: 36px; }
  .primary-nav .sub-menu { position: static; min-width: 0; padding: 0 0 8px 15px; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; }
  .home-layout,
  .content-with-sidebar,
  .single-layout { grid-template-columns: 1fr; }
  .site-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-sidebar > .widget { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-body .alignwide { width: 100%; }
}

@media (max-width: 720px) {
  .site-container,
  .page-shell,
  .error-page { width: min(calc(100% - 24px), var(--pfp-container)); }
  .topbar__inner { min-height: 33px; }
  .topbar__date { font-size: .7rem; }
  .main-header__inner { min-height: 68px; }
  .pfp-logo img,
  .custom-logo { height: 39px; max-width: 230px; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-story { min-height: 390px; }
  .lead-secondary { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .secondary-story { min-height: 220px; }
  .posts-grid--three,
  .posts-grid--two { grid-template-columns: 1fr; }
  .strip-grid { display: grid; grid-template-columns: 1fr; }
  .post-card--compact:nth-child(n) { display: grid; }
  .archive-posts .post-card--featured { grid-column: auto; display: block; }
  .archive-posts .post-card--featured .post-card__media { min-height: 0; aspect-ratio: 16 / 9; }
  .archive-posts .post-card--featured .post-card__body { display: block; padding: 22px; }
  .archive-posts .post-card--featured .category-badge { position: absolute; }
  .archive-posts .post-card--featured .post-card__title { margin: 4px 0 8px; font-size: 1.3rem; }
  .site-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
  .article-header h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .article-lead { font-size: 1.05rem; }
  .article-body { font-size: 1.05rem; }
  .related-posts .posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .lead-story { min-height: 360px; }
  .lead-story__overlay { padding: 20px; }
  .lead-story h1 { font-size: 1.8rem; }
  .lead-story p { display: none; }
  .lead-secondary { grid-template-columns: 1fr; }
  .secondary-story { min-height: 210px; }
  .section-heading { align-items: flex-start; }
  .section-link { white-space: nowrap; }
  .post-navigation { grid-template-columns: 1fr; }
  .post-navigation > div:last-child { text-align: left; }
  .author-box { grid-template-columns: 58px 1fr; padding: 18px; }
  .author-box img { width: 58px; height: 58px; }
}

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