:root {
  --ink: #10100e;
  --paper: #f4efe5;
  --milk: #fffdf8;
  --clay: #b84a36;
  --moss: #59684a;
  --cobalt: #203d4f;
  --butter: #f1c95f;
  --line: rgba(16, 16, 14, 0.13);
  --shadow: 0 22px 60px rgba(16, 16, 14, 0.12);
  --max: 1220px;
  --font-apple: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(244, 239, 229, 0.95) 40rem),
    var(--paper);
  font-family: var(--font-apple);
  line-height: 1.6;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 20;
  background: var(--ink);
  color: var(--milk);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(16, 16, 14, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem clamp(1rem, 4vw, 3rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: clamp(10.8rem, 22vw, 13.6rem);
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  font-size: 0.88rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.main-nav a,
.footer-links a,
.button,
.chip {
  text-decoration: none;
}

.main-nav a {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.8rem;
  border-radius: 0;
  border-left: 1px solid rgba(16, 16, 14, 0.18);
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:first-child {
  border-left: 0;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--milk);
  background: var(--ink);
  box-shadow: none;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  color: var(--milk);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.05)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 45%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--clay);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-family: var(--font-apple);
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 500;
}

h2 {
  font-family: var(--font-apple);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
}

h3 {
  font-size: 1.2rem;
}

.hero p {
  max-width: 620px;
  margin: 1rem 0 1.5rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button-row,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.74rem 1rem;
  border: 1px solid currentColor;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.83rem;
}

.button {
  color: var(--milk);
  background: var(--ink);
  border-color: var(--ink);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  color: var(--ink);
  background: var(--butter);
}

.button.secondary {
  color: var(--ink);
  background: var(--milk);
  border-color: var(--ink);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(16, 16, 14, 0.08);
}

.section-inner,
.page-content,
.article-body {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto 1.6rem;
}

.section-head p {
  max-width: 420px;
  margin: 0;
}

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

.feature-grid {
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
}

.post-card {
  overflow: hidden;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 16, 14, 0.34);
  box-shadow: 0 20px 44px rgba(16, 16, 14, 0.12);
}

.post-card a {
  display: grid;
  height: 100%;
  text-decoration: none;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.post-card:first-child img {
  aspect-ratio: 16 / 10;
}

.post-card-content {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1rem 1.1rem;
  min-width: 0;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card p {
  margin: 0;
  color: rgba(16, 16, 14, 0.72);
  overflow-wrap: anywhere;
}

.home-guides-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.home-guides-grid > p:empty {
  display: none;
}

.home-guides-grid .post-card {
  grid-column: span 4;
}

.home-guides-grid .post-card:nth-of-type(n + 7) {
  grid-column: span 3;
}

.home-guides-grid .post-card img,
.home-guides-grid .post-card:first-child img {
  aspect-ratio: 4 / 3;
}

.home-guides-grid .post-card-content {
  gap: 0.55rem;
  padding: 0.9rem;
}

.home-guides-grid h3 {
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.12;
}

.home-guides-grid .post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.94rem;
}

.band {
  color: var(--milk);
  background: var(--ink);
}

.band .eyebrow {
  color: var(--butter);
}

.band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.band img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.list-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.list-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--milk);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.newsletter {
  background: var(--cobalt);
  color: var(--milk);
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.newsletter form {
  display: flex;
  gap: 0.6rem;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 999px;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  font-weight: 850;
  background: var(--butter);
  color: var(--ink);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) 1.5rem;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero p:last-child {
  max-width: 720px;
  font-size: 1.15rem;
}

.page-content {
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid > p:empty,
.archive-grid > p:empty,
.blog-featured > p:empty,
.topic-grid > p:empty,
.style-featured-grid > p:empty,
.style-post-grid > p:empty,
.style-categories > p:empty,
.home-topic-grid > p:empty,
.home-route-grid > p:empty {
  display: none;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3rem) 2rem;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-heading h1 {
  max-width: 12ch;
  color: var(--ink);
}

.imported-hero .article-heading h1 {
  max-width: 980px;
  overflow-wrap: break-word;
  font-size: clamp(2.05rem, 4.15vw, 3.45rem);
  line-height: 1.02;
}

.article-heading p {
  max-width: 540px;
  font-size: 1.12rem;
}

.article-heading time {
  color: var(--moss);
  font-weight: 800;
}

.article-body {
  max-width: 780px;
  padding: 1rem clamp(1rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
  font-size: 1.08rem;
}

.article-body h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 1rem 0;
}

.article-body li + li {
  margin-top: 0.4rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
}

.article-layout .article-body {
  max-width: none;
  padding: 1rem 0 0;
}

.article-toc {
  position: static;
  max-height: none;
  overflow: visible;
  padding: 1rem;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 18, 15, 0.06);
}

.article-toc p {
  margin: 0 0 0.75rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  color: rgba(21, 18, 15, 0.78);
  font-size: 0.92rem;
  line-height: 1.25;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--clay);
}

.article-toc .toc-subitem {
  padding-left: 0.75rem;
  border-left: 2px solid rgba(198, 80, 61, 0.22);
}

.source-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.8rem;
  color: var(--cobalt);
  font-weight: 850;
}

.imported-content {
  max-width: none;
  line-height: 1.72;
}

.imported-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border-radius: 8px;
}

.imported-content p:empty,
.imported-content li:empty,
.imported-content ul:empty,
.imported-content ol:empty,
.imported-content li:has(> strong:empty):not(:has(img, picture, video, iframe, svg, canvas, audio)),
.imported-content li:has(> span:empty):not(:has(img, picture, video, iframe, svg, canvas, audio)),
.imported-content .blocks-gallery-item:empty,
.imported-content figure:empty,
.imported-content .wp-block-image:empty,
.imported-content .wp-block-spacer,
.imported-content .elementor-widget-container:empty {
  display: none;
}

.imported-content h2,
.imported-content h3,
.imported-content h4 {
  scroll-margin-top: 7rem;
  color: var(--ink);
  overflow-wrap: break-word;
}

.imported-content h2 {
  margin: 2.6rem 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  line-height: 1.08;
}

.imported-content h3 {
  margin: 2rem 0 0.8rem;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.15;
}

.imported-content h4 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.15rem;
}

.imported-content a {
  overflow-wrap: anywhere;
}

.imported-content > *:first-child {
  margin-top: 0;
}

.imported-content .elementor-post__thumbnail__link,
.imported-content .elementor-image-box-img a {
  display: block;
  text-decoration: none;
}

.imported-content .elementor-post__thumbnail__link img,
.imported-content .elementor-image-box-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 0 0.8rem;
  box-shadow: var(--shadow);
}

.imported-content figure {
  margin: 1.5rem 0;
}

.imported-content figcaption {
  color: var(--moss);
  font-size: 0.9rem;
  text-align: center;
}

.imported-content .wp-block-media-text {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.imported-content .wp-block-media-text__media {
  margin: 0;
}

.imported-content .wp-block-media-text:not(:has(.wp-block-media-text__media)) {
  display: block;
}

.imported-content .wp-block-media-text__content {
  min-width: 0;
  padding: 0 !important;
}

.imported-content .wp-block-embed,
.imported-content .wp-block-video,
.imported-content .elementor-widget-video,
.imported-content .ast-oembed-container,
.imported-content .wp-block-embed__wrapper {
  width: 100%;
  max-width: 100%;
}

.imported-content .wp-block-embed,
.imported-content .wp-block-video,
.imported-content .elementor-widget-video {
  margin: 1.6rem 0;
}

.imported-content .wp-block-embed__wrapper,
.imported-content .ast-oembed-container,
.imported-content .elementor-widget-video .elementor-widget-container {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto !important;
  overflow: hidden;
  background: var(--ink);
}

.imported-content iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  margin: 1.4rem 0;
  background: var(--ink);
  border: 0;
  border-radius: 0;
}

.imported-content .wp-block-embed__wrapper iframe,
.imported-content .ast-oembed-container iframe,
.imported-content .elementor-widget-video iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  margin: 0;
}

.imported-content video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.imported-content .missing-video-note {
  padding: 0.9rem 1rem;
  color: rgba(16, 16, 14, 0.78);
  background: var(--milk);
  border: 1px solid var(--line);
  font-size: 0.94rem;
}

.imported-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  table-layout: auto;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.imported-content th,
.imported-content td {
  padding: 0.75rem;
  overflow-wrap: anywhere;
  word-break: normal;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.imported-content th {
  color: var(--ink);
  background: rgba(244, 201, 93, 0.18);
  font-weight: 900;
}

.imported-content .wp-block-buttons,
.imported-content .wp-block-button {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.imported-content .wp-block-button__link,
.imported-content .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem !important;
  color: var(--milk) !important;
  background: var(--clay) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  font-weight: 850;
  line-height: 1.15;
}

.faq-hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 1.2rem;
  align-items: end;
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  color: var(--milk);
  background:
    linear-gradient(135deg, rgba(21, 18, 15, 0.94), rgba(39, 76, 119, 0.84)),
    url("/assets/generated/featured/pages/barefoot-shoes-faq.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-hub h2 {
  max-width: 720px;
  margin: 0;
  color: var(--milk);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.faq-hub p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 254, 253, 0.86);
}

.faq-hub__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.faq-hub__stats div {
  min-width: 0;
  padding: 0.8rem;
  background: rgba(255, 254, 253, 0.12);
  border: 1px solid rgba(255, 254, 253, 0.22);
  border-radius: 8px;
}

.faq-hub__stats strong {
  display: block;
  font-family: var(--font-apple);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.faq-hub__stats span {
  display: block;
  margin-top: 0.25rem;
  color: var(--butter);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.faq-jump-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.faq-jump-grid a {
  display: grid;
  gap: 0.5rem;
  min-height: 7.2rem;
  padding: 0.9rem;
  color: var(--ink);
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(21, 18, 15, 0.07);
}

.faq-jump-grid a:hover {
  border-color: rgba(198, 80, 61, 0.55);
}

.faq-jump-grid span {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 850;
}

.faq-jump-grid strong {
  align-self: end;
  font-size: 1.05rem;
  line-height: 1.15;
}

.imported-content .elementor-heading-title {
  max-width: 760px;
  margin: 2rem 0 1rem;
  font-family: var(--font-apple);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.imported-content .elementor-accordion {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.imported-content .elementor-accordion-item,
.imported-content .ewd-ufaq-faq-div {
  overflow: hidden;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 18, 15, 0.06);
}

.imported-content .elementor-tab-title,
.imported-content .ewd-ufaq-faq-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(244, 201, 93, 0.2), rgba(255, 254, 253, 0));
  font-weight: 850;
}

.imported-content .elementor-accordion-title {
  text-decoration: none;
}

.imported-content .elementor-tab-content,
.imported-content .ewd-ufaq-faq-body {
  padding: 0 1rem 1rem 3.2rem;
  color: rgba(21, 18, 15, 0.82);
}

.imported-content .ewd-ufaq-hidden {
  display: block;
}

.imported-content .ewd-ufaq-post-margin-symbol {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--milk) !important;
  background: var(--clay) !important;
  border-radius: 999px;
  font-size: 0;
}

.imported-content .ewd-ufaq-post-margin-symbol::before {
  content: "?";
  font-size: 1rem;
  font-weight: 900;
}

.imported-content .ewd-ufaq-post-margin-symbol span {
  display: none;
}

.imported-content .ewd-ufaq-faq-title-text h5 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  font-size: 1rem !important;
  line-height: 1.25;
}

.imported-content .ewd-ufaq-faq-post p {
  padding: 0 !important;
  color: rgba(21, 18, 15, 0.82) !important;
}

.imported-content .ewd-ufaq-faq-category {
  margin: 2rem 0;
  scroll-margin-top: 7rem;
}

.imported-content .ewd-ufaq-faq-category-title h4 {
  margin: 0 0 0.8rem;
  padding: 0.85rem 1rem;
  color: var(--milk);
  background: var(--ink);
  border-radius: 8px;
  font-family: var(--font-apple);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.imported-content .ewd-ufaq-faq-category-inner,
.imported-content .ewd-ufaq-faqs {
  display: grid;
  gap: 0.75rem;
}

.imported-content #ewd-ufaq-jquery-ajax-search {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.imported-content .ewd-ufaq-field-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--moss);
  font-weight: 850;
}

.imported-content .search-field {
  display: flex;
  gap: 0.5rem;
}

.imported-content .ewd-ufaq-text-input {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.imported-content .clear-field {
  min-width: 2.9rem;
  color: var(--milk);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 850;
}

.imported-content .ewd-ufaq-expand-collapse-div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.imported-content .ewd-ufaq-expand-all,
.imported-content .ewd-ufaq-collapse-all {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  padding: 0.5rem 0.85rem;
  color: var(--ink);
  background: var(--butter);
  border-radius: 999px;
  font-weight: 850;
}

.faq-page .imported-content > .elementor > .elementor-section:first-child .elementor-widget-heading,
.faq-page .imported-content > .elementor > .elementor-section:first-child .elementor-widget-accordion {
  display: none;
}

.faq-page .imported-content > .elementor > .elementor-section:first-child {
  margin-top: 0;
}

.faq-page .article-body {
  max-width: var(--max);
}

.faq-page .imported-hero {
  grid-template-columns: 1fr;
  padding-bottom: 1rem;
}

.faq-page .imported-hero img {
  display: none;
}

.faq-page .imported-hero .article-heading h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.faq-page .imported-content .elementor-widget-text-editor {
  max-width: 780px;
}

.mirror-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.mirror-stats div {
  padding: 1rem;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mirror-stats strong {
  display: block;
  font-family: var(--font-apple);
  font-size: 2.5rem;
  line-height: 1;
}

.mirror-stats span {
  color: var(--moss);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.blog-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  padding-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.blog-dashboard__copy {
  display: grid;
  gap: 0.85rem;
}

.blog-dashboard__copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.blog-dashboard__copy p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: 1.08rem;
}

.blog-stats {
  margin: 0;
}

.topic-nav {
  position: static;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.7rem 0;
  margin: 1rem 0 2rem;
  overflow: visible;
  background: var(--paper);
}

.topic-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 12rem;
  justify-content: space-between;
  min-width: min(100%, 11rem);
  min-height: 2.65rem;
  padding: 0.62rem 0.85rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.topic-nav strong {
  display: grid;
  place-items: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 0.45rem;
  color: var(--milk);
  background: var(--clay);
  border-radius: 999px;
  font-size: 0.78rem;
}

.blog-featured {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 clamp(3rem, 7vw, 5rem);
}

.blog-featured .post-card {
  grid-column: span 4;
}

.blog-featured .post-card:nth-of-type(n + 7) {
  grid-column: span 3;
}

.blog-featured .post-card--lead {
  grid-row: auto;
}

.blog-featured .post-card--lead img {
  aspect-ratio: 4 / 3;
}

.blog-featured .post-card--lead h3 {
  font-size: 1.2rem;
  line-height: 1.12;
}

.topic-section {
  scroll-margin-top: 8rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}

.topic-head {
  margin-right: 0;
  margin-left: 0;
}

.topic-grid .post-card p,
.blog-featured .post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.taxonomy-page {
  padding-top: clamp(2.2rem, 5vw, 4rem);
}

.taxonomy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: end;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

.taxonomy-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.taxonomy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem 0 0;
  font-size: 1.08rem;
}

.taxonomy-stats {
  display: grid;
  gap: 0.75rem;
}

.taxonomy-stats div {
  padding: 1rem;
  color: var(--milk);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.taxonomy-stats strong {
  display: block;
  color: var(--butter);
  font-family: var(--font-apple);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
}

.taxonomy-stats span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.taxonomy-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.taxonomy-jump a {
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  background: var(--milk);
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 850;
}

.taxonomy-jump a:hover {
  color: var(--milk);
  background: var(--ink);
  border-color: var(--ink);
}

.taxonomy-grid {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.taxonomy-empty {
  max-width: 760px;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--milk);
  border: 1px solid var(--line);
}

.style-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) clamp(1.6rem, 4vw, 2.6rem);
}

.style-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  line-height: 0.95;
}

.style-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 1rem 0 1.4rem;
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.style-hero__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.style-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.style-hero .button.secondary {
  color: var(--ink);
  background: var(--milk);
  border-color: var(--ink);
}

.style-hero .button.secondary:hover {
  border-color: rgba(198, 80, 61, 0.55);
}

.style-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
}

.style-categories a {
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  color: var(--ink);
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  box-shadow: none;
}

.style-categories a:hover {
  border-color: rgba(198, 80, 61, 0.55);
}

.style-categories span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.style-categories strong {
  font-family: var(--font-apple);
  font-size: 1.14rem;
  line-height: 1.08;
  font-weight: 500;
}

.style-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.style-featured-grid .post-card--lead {
  grid-row: auto;
}

.style-featured-grid .post-card--lead img {
  aspect-ratio: 4 / 3;
}

.style-featured-grid .post-card--lead h3 {
  font-size: 1.2rem;
  line-height: 1.12;
}

.style-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
  color: var(--milk);
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.style-band > * {
  max-width: calc(var(--max) / 2);
}

.style-band > :first-child {
  justify-self: end;
}

.style-band .eyebrow {
  color: var(--butter);
}

.style-link-list {
  display: grid;
  gap: 0.75rem;
}

.style-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--milk);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 0;
  text-decoration: none;
  font-weight: 850;
}

.style-link-list a::after {
  content: "Leer";
  color: var(--butter);
}

.style-post-grid .post-card p,
.style-featured-grid .post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.title-index {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.title-list {
  columns: 2;
  column-gap: clamp(1.5rem, 5vw, 4rem);
  padding-left: 1.4rem;
}

.title-list li {
  break-inside: avoid;
  margin: 0 0 0.55rem;
  padding-left: 0.2rem;
}

.title-list a {
  text-decoration-color: rgba(198, 80, 61, 0.35);
  text-underline-offset: 0.18em;
}

.paginated-grid {
  margin-bottom: 1.5rem;
}

.pagination-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding-top: 1.25rem;
}

.pagination-nav a,
.pagination-nav span {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.68rem 0.95rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.pagination-nav a {
  color: var(--milk);
  background: var(--ink);
  border-color: var(--ink);
}

.pagination-nav a:hover {
  color: var(--ink);
  background: var(--butter);
}

.compact-grid .post-card img {
  display: none;
}

.callout {
  padding: 1.1rem;
  border-left: 5px solid var(--clay);
  background: var(--milk);
  box-shadow: var(--shadow);
}

.home-hero {
  position: relative;
  min-height: min(720px, calc(82vh - 2rem));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--milk);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  filter: saturate(0.92) contrast(1.03);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 14, 0.92), rgba(16, 16, 14, 0.52) 52%, rgba(16, 16, 14, 0.08)),
    linear-gradient(0deg, rgba(16, 16, 14, 0.86), transparent 62%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(2.8rem, 7vw, 5.4rem) clamp(1rem, 5vw, 3rem) clamp(1.6rem, 4vw, 3rem);
}

.home-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.93;
}

.home-hero__intro {
  max-width: 690px;
  margin: 1rem 0 1.4rem;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.7rem;
  margin-top: clamp(1.4rem, 4vw, 2.4rem);
}

.home-hero__stats span {
  min-width: 8.2rem;
  padding: 0.7rem 0.8rem;
  color: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.08);
}

.home-hero__stats strong {
  display: block;
  color: var(--butter);
  font-family: var(--font-apple);
  font-size: 1.8rem;
  line-height: 1;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem) 2rem;
}

.home-intro h2 {
  max-width: 720px;
}

.home-intro p:last-child {
  margin: 0;
  font-size: 1.08rem;
}

.home-route-grid,
.home-topic-grid {
  display: grid;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(3.5rem, 7vw, 6rem);
}

.home-route-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-route {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-route:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 80, 61, 0.5);
  box-shadow: var(--shadow);
}

.home-route--large {
  grid-column: span 2;
  min-height: 320px;
  color: var(--milk);
  background:
    linear-gradient(135deg, rgba(16, 16, 14, 0.94), rgba(32, 61, 79, 0.8)),
    url("/assets/generated/featured/homepage.jpg") center / cover;
}

.home-route span,
.home-topic span {
  color: var(--clay);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.home-route--large span {
  color: var(--butter);
}

.home-route strong,
.home-topic strong {
  display: block;
  font-family: var(--font-apple);
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  line-height: 1.05;
  font-weight: 500;
}

.home-route small,
.home-topic small {
  display: block;
  color: rgba(21, 18, 15, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.home-route--large small {
  color: rgba(255, 254, 253, 0.82);
}

.home-topic-section {
  background: var(--milk);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
}

.home-topic {
  display: grid;
  gap: 0.75rem;
  min-height: 220px;
  padding: 1rem;
  color: var(--ink);
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
}

.home-topic-grid > p,
.home-route-grid > p {
  margin: 0;
}

.home-topic-grid > p > .home-topic,
.home-route-grid > p > .home-route {
  height: 100%;
}

.home-topic b {
  align-self: end;
  width: max-content;
  max-width: 100%;
  padding: 0.34rem 0.68rem;
  color: var(--milk);
  background: var(--moss);
  border-radius: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(3.5rem, 7vw, 6rem);
}

.home-feature {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 1.2rem;
  color: var(--milk);
  text-decoration: none;
  border-radius: 8px;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.home-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(21, 18, 15, 0.82), rgba(21, 18, 15, 0.05) 65%);
}

.home-feature img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-feature:hover img {
  transform: scale(1.04);
}

.home-feature span {
  color: var(--butter);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.home-feature strong {
  max-width: 12rem;
  font-family: var(--font-apple);
  font-size: 1.7rem;
  line-height: 1.05;
}

.home-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
  color: var(--milk);
  background:
    linear-gradient(135deg, rgba(16, 16, 14, 0.96), rgba(32, 61, 79, 0.86)),
    url("/assets/generated/featured/pages/resources.jpg") center / cover;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.home-band > * {
  max-width: calc(var(--max) / 2);
}

.home-band > :first-child {
  justify-self: end;
}

.home-link-list {
  display: grid;
  gap: 0.75rem;
}

.home-link-list a {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  color: var(--milk);
  background: rgba(255, 253, 248, 0.09);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 0;
  text-decoration: none;
  font-weight: 850;
}

.home-link-list a::after {
  content: "Ver";
  color: var(--butter);
}

.home-faq-strip {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.home-faq-strip .section-inner {
  display: grid;
  gap: 1rem;
}

.home-faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-faq-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.6rem 0.9rem;
  color: var(--ink);
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  font-weight: 850;
}

.home-faq-links a:hover {
  border-color: var(--clay);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, auto) minmax(220px, auto);
  align-items: start;
  gap: 2rem;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
  color: var(--milk);
  background: var(--ink);
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.site-footer p {
  max-width: 36rem;
  margin: 0.35rem 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.footer-title {
  margin: 0 0 0.4rem;
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.84);
  text-underline-offset: 0.2em;
}

.footer-links a:hover {
  color: var(--butter);
}

.legal-links {
  max-width: 260px;
}

@media (max-width: 840px) {
  .site-header__inner,
  .section-head,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .main-nav,
  .footer-links {
    justify-content: flex-start;
  }

  .main-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.35rem;
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .main-nav a {
    justify-content: center;
    flex: 1 1 6.5rem;
    min-width: 0;
    padding: 0.58rem 0.72rem;
    background: var(--milk);
    border: 1px solid var(--line);
    text-align: center;
    white-space: nowrap;
  }

  .grid,
  .feature-grid,
  .article-layout,
  .blog-dashboard,
  .taxonomy-hero,
  .faq-hub,
  .faq-jump-grid,
  .style-hero,
  .style-band,
  .split,
  .band-grid,
  .newsletter-box,
  .article-hero,
  .home-intro,
  .home-route-grid,
  .home-topic-grid,
  .home-feature-grid,
  .home-band,
  .mirror-stats,
  .imported-content .wp-block-media-text {
    grid-template-columns: 1fr;
  }

  .archive-grid,
  .blog-featured,
  .style-featured-grid,
  .style-post-grid,
  .taxonomy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .blog-featured .post-card,
  .blog-featured .post-card:nth-of-type(n + 7) {
    grid-column: auto;
  }

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

  .archive-grid .post-card img,
  .blog-featured .post-card img,
  .style-featured-grid .post-card img,
  .style-post-grid .post-card img,
  .taxonomy-grid .post-card img,
  .blog-featured .post-card--lead img,
  .style-featured-grid .post-card--lead img {
    aspect-ratio: 1 / 1;
  }

  .home-route--large {
    grid-column: auto;
  }

  .home-hero__stats {
    grid-template-columns: 1fr;
  }

  .home-hero__stats span {
    min-width: 0;
  }

  .home-hero {
    min-height: 68vh;
  }

  .home-feature {
    min-height: 330px;
  }

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

  .home-guides-grid .post-card,
  .home-guides-grid .post-card:nth-of-type(n + 7) {
    grid-column: auto;
  }

  .home-guides-grid .post-card img,
  .home-guides-grid .post-card:first-child img {
    aspect-ratio: 1 / 1;
  }

  .home-band > :first-child {
    justify-self: start;
  }

  .style-band > :first-child {
    justify-self: start;
  }

  .hero {
    min-height: 70vh;
  }

  .newsletter form {
    flex-direction: column;
  }

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

  .topic-nav a {
    min-width: 0;
    min-height: 2.25rem;
    gap: 0.35rem;
    padding: 0.5rem 0.6rem;
    font-size: 0.82rem;
    line-height: 1.05;
  }

  .topic-nav strong {
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 0.35rem;
    font-size: 0.7rem;
  }

  .title-list {
    columns: 1;
  }

  .faq-hub__stats {
    grid-template-columns: 1fr;
  }

  .imported-content .elementor-tab-content,
  .imported-content .ewd-ufaq-faq-body {
    padding-left: 1rem;
  }

  .article-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: min(13rem, 72vw);
  }

  .site-header {
    padding: 0;
  }

  .main-nav {
    font-size: 0.86rem;
    border-radius: 0;
  }

  .hero {
    min-height: 68vh;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.2rem);
  }

  .imported-hero .article-heading h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .article-heading p {
    font-size: 1rem;
  }

  .button,
  .chip {
    width: 100%;
    justify-content: center;
  }

  .home-guides-grid {
    gap: 0.65rem;
  }

  .home-guides-grid .post-meta,
  .home-guides-grid .post-card p,
  .archive-grid .post-card p,
  .blog-featured .post-card p,
  .style-featured-grid .post-card p,
  .style-post-grid .post-card p,
  .taxonomy-grid .post-card p {
    display: none;
  }

  .home-guides-grid .post-card-content,
  .archive-grid .post-card-content,
  .blog-featured .post-card-content,
  .style-featured-grid .post-card-content,
  .style-post-grid .post-card-content,
  .taxonomy-grid .post-card-content {
    padding: 0.68rem;
  }

  .home-guides-grid h3,
  .archive-grid h3,
  .blog-featured h3,
  .style-featured-grid h3,
  .style-post-grid h3,
  .taxonomy-grid h3 {
    font-size: 0.92rem;
    line-height: 1.14;
  }

  .archive-grid .post-meta,
  .blog-featured .post-meta,
  .style-featured-grid .post-meta,
  .style-post-grid .post-meta,
  .taxonomy-grid .post-meta {
    font-size: 0.68rem;
  }
}

/* Pretty Up My Opinions design port */
:root {
  --ink: #1f2421;
  --paper: #f7f3ee;
  --milk: #fbf8f3;
  --clay: #c96d4b;
  --moss: #4a5d4e;
  --cobalt: #2f4d57;
  --butter: #e6b75f;
  --line: rgba(31, 36, 33, 0.12);
  --shadow: 0 30px 80px -42px rgba(31, 36, 33, 0.45);
  --soft-shadow: 0 18px 42px -32px rgba(31, 36, 33, 0.38);
  --radius-card: 18px;
}

body {
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.98), rgba(247, 243, 238, 0.96) 38rem),
    var(--paper);
  color: var(--ink);
}

.site-header {
  background: rgba(251, 248, 243, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  gap: clamp(1rem, 4vw, 3rem);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo {
  width: clamp(11.8rem, 20vw, 15rem);
}

.main-nav {
  gap: 1.35rem;
  border: 0;
  font-size: 0.91rem;
}

.main-nav a {
  min-height: 2.2rem;
  padding: 0;
  color: rgba(31, 36, 33, 0.82);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 750;
  text-transform: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--clay);
  background: transparent;
}

.eyebrow,
.post-meta,
.footer-label,
.mirror-stats span,
.taxonomy-stats span,
.home-route span,
.home-topic span,
.style-categories span,
.faq-hub__stats span {
  letter-spacing: 0;
}

.eyebrow {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 850;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.button,
.chip,
.pagination-nav a,
.pagination-nav span,
.taxonomy-jump a,
.home-faq-links a {
  border-radius: 999px;
}

.button {
  color: var(--milk);
  background: var(--moss);
  border-color: var(--moss);
  box-shadow: 0 14px 28px -22px rgba(31, 36, 33, 0.8);
}

.button:hover,
.pagination-nav a:hover {
  color: var(--milk);
  background: var(--ink);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(31, 36, 33, 0.2);
}

.button.secondary:hover {
  color: var(--clay);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(201, 109, 75, 0.45);
}

.home-hero--magazine {
  min-height: auto;
  color: var(--ink);
  background: transparent;
  border-bottom: 0;
}

.home-hero--magazine::after,
.home-hero--magazine::before {
  display: none;
}

.home-hero--magazine .home-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.home-hero--magazine .eyebrow {
  color: var(--moss);
}

.home-hero--magazine h1 {
  max-width: 10.5ch;
  color: var(--ink);
  font-size: clamp(3rem, 7.4vw, 6.2rem);
  line-height: 0.98;
}

.home-hero--magazine h1 span {
  color: var(--clay);
  font-style: italic;
}

.home-hero--magazine .home-hero__intro {
  max-width: 560px;
  color: rgba(31, 36, 33, 0.76);
}

.home-hero-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--milk);
  text-decoration: none;
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.home-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(31, 36, 33, 0.88), rgba(31, 36, 33, 0.18) 62%, rgba(31, 36, 33, 0.04));
}

.home-hero-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.home-hero-card:hover img {
  transform: scale(1.035);
}

.home-hero-card span {
  color: rgba(251, 248, 243, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-hero-card strong {
  max-width: 16rem;
  margin-top: 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.home-intro--editorial {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.home-route,
.home-topic,
.post-card,
.mirror-stats div,
.taxonomy-empty,
.faq-jump-grid a,
.imported-content .elementor-accordion-item,
.imported-content .ewd-ufaq-faq-div,
.imported-content table,
.imported-content .wp-block-media-text,
.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--soft-shadow);
}

.home-route,
.home-topic {
  min-height: 210px;
  padding: 1.2rem;
}

.home-route--large {
  color: var(--milk);
  background:
    linear-gradient(135deg, rgba(31, 36, 33, 0.9), rgba(74, 93, 78, 0.72)),
    url("/assets/generated/featured/homepage.jpg") center / cover;
}

.home-route strong,
.home-topic strong,
.style-categories strong {
  font-weight: 650;
}

.home-topic-section,
.latest-section,
.section:nth-of-type(even) {
  background: rgba(251, 248, 243, 0.72);
}

.post-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  border-color: rgba(201, 109, 75, 0.45);
  box-shadow: var(--shadow);
}

.post-card img,
.post-card:first-child img {
  aspect-ratio: 4 / 3;
}

.post-card-content {
  padding: 1.1rem;
}

.post-card h3 {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.38rem);
  line-height: 1.12;
}

.post-card:hover h3 {
  color: var(--clay);
}

.post-meta {
  color: var(--moss);
  font-size: 0.74rem;
}

.latest-list {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.latest-item {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  padding: 1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.latest-item:last-child {
  border-bottom: 0;
}

.latest-item:hover {
  background: rgba(247, 243, 238, 0.78);
}

.latest-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.latest-item small {
  display: block;
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.latest-item strong {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}

.text-link {
  color: var(--clay);
  font-weight: 850;
  text-underline-offset: 0.25em;
}

.home-band,
.style-band,
.band {
  background:
    linear-gradient(135deg, rgba(31, 36, 33, 0.96), rgba(74, 93, 78, 0.88)),
    url("/assets/generated/featured/pages/resources.jpg") center / cover;
}

.home-link-list a,
.style-link-list a,
.list-links a {
  border-radius: 14px;
}

.page-hero,
.blog-dashboard,
.taxonomy-hero {
  padding-top: clamp(3rem, 7vw, 5.5rem);
}

.page-hero h1,
.blog-dashboard__copy h1,
.taxonomy-hero h1,
.style-hero h1,
.faq-page .imported-hero .article-heading h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  line-height: 1.02;
}

.topic-nav a,
.taxonomy-jump a,
.home-faq-links a,
.pagination-nav a,
.pagination-nav span {
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.topic-nav a:hover,
.taxonomy-jump a:hover,
.home-faq-links a:hover {
  color: var(--clay);
  background: #fff;
  border-color: rgba(201, 109, 75, 0.45);
}

.topic-nav strong {
  background: var(--clay);
}

.taxonomy-stats div {
  color: var(--milk);
  background: var(--moss);
  border-radius: var(--radius-card);
  border-color: transparent;
  box-shadow: var(--soft-shadow);
}

.taxonomy-stats strong {
  color: var(--milk);
}

.article-hero,
.imported-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.82fr);
  padding-top: clamp(2.6rem, 6vw, 5rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.article-hero img,
.imported-hero img {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.article-heading h1,
.imported-hero .article-heading h1 {
  max-width: 880px;
  font-size: clamp(2.25rem, 5.2vw, 4.35rem);
  line-height: 1.02;
}

.article-heading p {
  color: rgba(31, 36, 33, 0.76);
}

.article-layout {
  display: block;
  max-width: 820px;
}

.article-body {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.2vw, 1.14rem);
  line-height: 1.78;
}

.imported-content h2,
.article-body h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}

.imported-content h3,
.article-body h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.imported-content a {
  color: var(--clay);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.imported-content img {
  border-radius: var(--radius-card);
  box-shadow: var(--soft-shadow);
}

.imported-content .wp-block-button__link,
.imported-content .elementor-button {
  background: var(--moss) !important;
  border-radius: 999px !important;
}

.faq-hub,
.faq-page .imported-hero {
  border-radius: 28px;
}

.site-footer {
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 0.35fr) minmax(180px, 0.35fr);
  padding-right: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2));
  padding-left: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2));
  color: var(--milk);
  background: var(--moss);
}

.footer-title {
  color: var(--milk);
  font-size: 1.8rem;
  line-height: 1.1;
}

.footer-label {
  margin: 0 0 0.8rem;
  color: rgba(251, 248, 243, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  justify-content: start;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .home-hero--magazine .home-hero__content,
  .article-hero,
  .imported-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-card {
    min-height: 420px;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .main-nav a {
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.55rem 0.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
    text-align: center;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--milk);
    background: var(--moss);
    border-color: var(--moss);
  }

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

@media (max-width: 640px) {
  .site-header__inner {
    gap: 0.8rem;
  }

  .brand-logo {
    width: min(13.5rem, 76vw);
  }

  .main-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .main-nav a {
    min-height: 2.35rem;
    padding-inline: 0.2rem;
    font-size: 0.7rem;
  }

  .home-hero--magazine h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .home-hero-card {
    min-height: 340px;
    border-radius: 22px;
  }

  .archive-grid,
  .blog-featured,
  .style-featured-grid,
  .style-post-grid,
  .taxonomy-grid,
  .home-guides-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .latest-item {
    grid-template-columns: 6rem minmax(0, 1fr);
    padding: 0.75rem;
  }

  .latest-item strong {
    font-size: 0.98rem;
  }

  .article-heading h1,
  .imported-hero .article-heading h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .article-hero img,
  .imported-hero img {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }
}

/* Final editorial layouts: FAQ, About and long-form information pages. */
.faq-hero,
.faq-start,
.faq-directory {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.faq-hero__copy h1 {
  max-width: 13ch;
  margin: 0.7rem 0 1.25rem;
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  line-height: 0.98;
}

.faq-hero__copy > p:not(.eyebrow) {
  max-width: 42rem;
  color: rgba(31, 36, 33, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.faq-hero__visual {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  color: var(--milk);
  background: var(--moss);
  border: 1px solid rgba(31, 36, 33, 0.18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.faq-hero__visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(251, 248, 243, 0.24);
  border-radius: calc(var(--radius-card) - 4px);
}

.faq-hero__visual span {
  position: absolute;
  top: -3.8rem;
  right: -0.5rem;
  color: rgba(251, 248, 243, 0.08);
  font-family: var(--font-apple);
  font-size: 15rem;
  line-height: 1;
}

.faq-hero__visual strong {
  position: relative;
  font-family: var(--font-apple);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
}

.faq-hero__visual small {
  position: relative;
  margin-top: 0.75rem;
  color: rgba(251, 248, 243, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-start,
.faq-directory {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.faq-category-grid a,
.faq-directory__grid a {
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.faq-category-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.faq-category-grid a:hover,
.faq-directory__grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 109, 75, 0.62);
  box-shadow: var(--soft-shadow);
}

.faq-category-grid span,
.faq-directory__grid span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
}

.faq-category-grid strong {
  margin-top: auto;
  font-family: var(--font-apple);
  font-size: 1.25rem;
  line-height: 1.15;
}

.faq-category-grid small {
  margin-top: 0.55rem;
  color: rgba(31, 36, 33, 0.64);
  line-height: 1.45;
}

.faq-directory {
  width: 100%;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(74, 93, 78, 0.06);
}

.faq-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: var(--max);
  margin-inline: auto;
}

.faq-directory__grid a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.15rem 0.65rem;
  align-content: start;
  padding: 1rem;
}

.faq-directory__grid strong {
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.faq-directory__grid small {
  grid-column: 2;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(31, 36, 33, 0.62);
  font-size: 0.8rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.faq-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3.5rem, 7vw, 6rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--milk);
  background: var(--moss);
}

.faq-closing h2 {
  margin: 0.5rem 0;
  color: var(--milk);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.faq-closing p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: rgba(251, 248, 243, 0.76);
}

.about-hero blockquote > p {
  margin: 0;
}

.about-hero blockquote footer {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.9rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  border-top: 1px solid var(--line);
}

.about-hero blockquote footer img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about-hero blockquote footer strong,
.about-hero blockquote footer small {
  display: block;
}

.about-hero blockquote footer strong {
  font-size: 0.88rem;
}

.about-hero blockquote footer small {
  margin-top: 0.1rem;
  color: rgba(31, 36, 33, 0.58);
  font-size: 0.72rem;
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 5rem;
  max-width: 58rem;
  margin: 0 auto;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 50%;
  width: 1px;
  background: var(--line);
}

.about-timeline article {
  position: relative;
}

.about-timeline article:nth-child(even) {
  grid-column: 2;
  transform: translateY(4.5rem);
}

.about-timeline article:nth-child(odd) {
  grid-column: 1;
}

.about-timeline article::after {
  content: "";
  position: absolute;
  top: 2rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--clay);
  border: 4px solid var(--milk);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.about-timeline article:nth-child(odd)::after {
  right: -2.86rem;
}

.about-timeline article:nth-child(even)::after {
  left: -2.86rem;
}

.about-timeline article > div {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--soft-shadow);
}

.about-timeline span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-timeline h3 {
  margin: 0.75rem 0 0.55rem;
  font-size: 1.45rem;
}

.about-timeline p {
  margin: 0;
  color: rgba(31, 36, 33, 0.68);
  line-height: 1.65;
}

.page-content > h2 {
  max-width: 22ch;
  margin-top: 2.8rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.page-content > h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.page-content > p,
.page-content > ul,
.page-content > ol {
  max-width: 52rem;
  color: rgba(31, 36, 33, 0.76);
  line-height: 1.75;
}

.page-content li + li {
  margin-top: 0.45rem;
}

@media (min-width: 781px) and (max-width: 920px) {
  .site-header__inner {
    flex-wrap: nowrap;
    gap: 0.7rem;
    padding-inline: 1rem;
  }

  .brand-logo {
    width: 10.4rem;
  }

  .main-nav {
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    border: 1px solid var(--ink);
  }

  .main-nav a {
    min-height: 2.2rem;
    padding: 0.45rem 0.42rem;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(16, 16, 14, 0.18);
    border-radius: 0;
    font-size: 0.68rem;
  }

  .main-nav a:first-child {
    border-left: 0;
  }

  .about-hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
    gap: 2rem;
  }

  .about-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
  }

  .about-hero blockquote {
    left: -1rem;
  }
}

/* Sobre mi: faithful port of the published Lovable composition. */
.about-page {
  background: #f7f3ee;
}

@media (min-width: 781px) {
  .about-page .site-header__inner {
    min-height: 112px;
  }
}

.about-page .about-hero,
.about-page .about-story,
.about-page .about-values {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-page .about-hero {
  display: block;
  padding: 0;
  overflow: hidden;
}

.about-page .about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 429px) minmax(0, 627px);
  gap: 3rem;
  align-items: center;
  width: min(100% - 3rem, 1152px);
  min-height: 662px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 5rem;
}

.about-page .about-hero__copy {
  position: relative;
  z-index: 2;
}

.about-page .eyebrow {
  letter-spacing: 0.28em;
}

.about-page .about-hero h1,
.about-page .about-section-heading h2,
.about-page .about-timeline h3,
.about-page .about-values h3,
.about-page .about-cta h2,
.about-page .about-hero blockquote > p {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
}

.about-page .about-hero h1 {
  max-width: none;
  margin: 1.4rem 0 1.4rem;
  font-size: 4rem;
  line-height: 1.05;
}

.about-page .about-hero h1 span {
  display: block;
  color: #c66d4e;
  font-style: italic;
}

.about-page .about-hero__copy > p:last-child {
  max-width: 31rem;
  margin: 0;
  color: rgba(31, 36, 33, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-page .about-hero__media {
  position: relative;
  margin: 0;
}

.about-page .about-hero__media > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(31, 36, 33, 0.13);
}

.about-page .about-hero blockquote {
  right: auto;
  bottom: 3rem;
  left: -3rem;
  width: 24rem;
  max-width: 24rem;
  padding: 1.45rem 1.55rem;
  font-size: 1.2rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 36, 33, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(31, 36, 33, 0.14);
}

.about-page .about-hero blockquote footer {
  padding-top: 0;
  border-top: 0;
}

.about-page .about-hero blockquote footer img,
.article-author img,
.article-author-card img {
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.about-page .about-story {
  padding: 0;
  background: #f5f0e9;
  border-block: 1px solid rgba(31, 36, 33, 0.1);
}

.about-page .about-story__inner {
  width: min(100% - 3rem, 896px);
  margin-inline: auto;
  padding-block: 7rem;
}

.about-page .about-section-heading {
  max-width: 46rem;
  margin: 0 auto 5rem;
}

.about-page .about-section-heading h2,
.about-page .about-cta h2 {
  margin-top: 0.8rem;
  font-size: 2.65rem;
  line-height: 1.12;
}

.about-page .about-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  max-width: 848px;
}

.about-page .about-timeline::before {
  top: 0;
  bottom: 0;
  background: rgba(31, 36, 33, 0.14);
}

.about-page .about-timeline article:nth-child(n) {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  transform: none;
}

.about-page .about-timeline article:nth-child(odd) > div {
  grid-column: 1;
  padding-right: 4rem;
  text-align: right;
}

.about-page .about-timeline article:nth-child(even) > div {
  grid-column: 2;
  padding-left: 4rem;
}

.about-page .about-timeline article > div {
  padding-block: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-page .about-timeline article:nth-child(n)::after {
  top: 0.15rem;
  left: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border: 4px solid #f5f0e9;
  transform: translateX(-50%);
}

.about-page .about-timeline span {
  letter-spacing: 0.12em;
}

.about-page .about-timeline h3 {
  margin: 0.65rem 0 0.75rem;
  font-size: 1.5rem;
}

.about-page .about-timeline p {
  color: rgba(31, 36, 33, 0.7);
  line-height: 1.75;
}

.about-page .about-values {
  width: min(100% - 3rem, 1152px);
  margin-inline: auto;
  padding-block: 7rem;
}

.about-page .about-values__grid {
  gap: 1.5rem;
}

.about-page .about-values__grid article {
  min-height: 280px;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: none;
}

.about-page .about-values__grid span {
  color: #c66d4e;
  font-size: 2.5rem;
  font-weight: 300;
}

.about-page .about-values__grid h3 {
  margin: 1.25rem 0 0.65rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.about-page .about-values__grid p {
  line-height: 1.7;
}

.about-page .about-cta {
  padding: 0;
  background: #4a5d4e;
}

.about-page .about-cta__inner {
  width: min(100% - 3rem, 896px);
  margin-inline: auto;
  padding-block: 7rem;
  text-align: center;
}

.about-page .about-cta h2 {
  font-size: 3rem;
}

.about-page .about-cta .button-row {
  margin-top: 2rem;
}

@media (max-width: 920px) {
  .about-page .about-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-page .about-hero__copy {
    max-width: 38rem;
  }
}

@media (max-width: 780px) {
  .about-page .main-nav {
    display: none;
  }

  .about-page .site-header__inner {
    justify-content: flex-start;
  }

  .about-page .about-hero__inner {
    width: min(100% - 3rem, 38rem);
    gap: 2.35rem;
    padding-inline: 0;
    padding-block: 3.75rem 4.5rem;
  }

  .about-page .about-hero h1 {
    max-width: none;
    margin-block: 1.15rem 1.3rem;
    font-size: 2.4rem;
    line-height: 1.02;
  }

  .about-page .about-hero h1 span {
    display: inline;
  }

  .about-page .about-hero__copy > p:last-child {
    font-size: 1.125rem;
    line-height: 1.55;
  }

  .about-page .about-hero__media > img {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .about-page .about-hero blockquote {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% + 2rem);
    max-width: none;
    margin: -11rem 0 0 -1rem;
    padding: 1.4rem;
    font-size: 1.25rem;
  }

  .about-page .about-story__inner,
  .about-page .about-values,
  .about-page .about-cta__inner {
    width: min(100% - 3rem, 38rem);
    padding-block: 5rem;
  }

  .about-page .about-section-heading {
    margin-bottom: 3.5rem;
    text-align: left;
  }

  .about-page .about-section-heading h2,
  .about-page .about-cta h2 {
    font-size: 2.2rem;
  }

  .about-page .about-timeline {
    gap: 3.5rem;
    padding-left: 2.4rem;
  }

  .about-page .about-timeline::before {
    left: 0.45rem;
  }

  .about-page .about-timeline article:nth-child(n) {
    display: block;
  }

  .about-page .about-timeline article:nth-child(n) > div {
    padding: 0;
    text-align: left;
  }

  .about-page .about-timeline article:nth-child(n)::after {
    top: 0.15rem;
    left: -1.95rem;
    transform: none;
  }

  .about-page .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-values__grid article {
    min-height: 0;
  }

  .about-page .about-cta__inner {
    text-align: left;
  }

  .about-page .about-cta .button-row {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Article index, adapted from the latest Lovable article layout. */
.article-layout {
  display: block;
  width: min(100% - 2rem, 820px);
  max-width: 1180px;
  padding-inline: 0;
}

.article-toc {
  display: none;
}

.article-toc-mobile {
  margin: 0 0 2rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.article-toc-mobile summary {
  color: var(--moss);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-toc-mobile ol,
.article-toc ol {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0 0 0 1rem;
  list-style: none;
  border-left: 1px solid var(--line);
}

.article-toc-mobile a,
.article-toc a {
  display: block;
  color: rgba(31, 36, 33, 0.72);
  font-size: 0.86rem;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc-mobile a:hover,
.article-toc a:hover {
  color: var(--clay);
}

.article-toc-mobile .toc-subitem,
.article-toc .toc-subitem {
  padding-left: 0.8rem;
}

@media (min-width: 1020px) {
  .article-layout {
    width: min(100% - 3rem, 1180px);
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(220px, 260px);
    gap: clamp(3rem, 6vw, 6rem);
    justify-content: center;
  }

  .article-toc-mobile {
    display: none;
  }

  .article-toc {
    position: sticky;
    top: 6.5rem;
    display: block;
    max-height: calc(100vh - 8rem);
    overflow: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .article-toc p {
    margin-bottom: 0.9rem;
    color: var(--moss);
    letter-spacing: 0.08em;
  }
}

@media (max-width: 900px) {
  .faq-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .faq-hero {
    grid-template-columns: 1fr;
  }

  .faq-hero__visual {
    min-height: 230px;
  }

  .faq-closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 1.8rem;
  }

  .about-timeline::before {
    left: 0.35rem;
  }

  .about-timeline article:nth-child(n) {
    grid-column: 1;
    transform: none;
  }

  .about-timeline article:nth-child(n)::after {
    left: -1.8rem;
    right: auto;
  }
}

@media (max-width: 560px) {
  .faq-hero,
  .faq-start {
    width: min(100% - 1.25rem, var(--max));
  }

  .faq-hero__copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .faq-category-grid,
  .faq-directory__grid {
    grid-template-columns: 1fr;
  }

  .faq-category-grid a {
    min-height: 165px;
  }

  .faq-directory {
    padding-inline: 0.625rem;
  }

  .faq-closing .button {
    width: 100%;
    justify-content: center;
  }
}

/* Reference design: editorial imagery, author identity and about page. */
.article-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.article-author--compact {
  margin-top: 1.5rem;
}

.article-author img,
.article-author-card img {
  flex: 0 0 auto;
  padding: 0.35rem;
  object-fit: contain;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: none;
}

.article-author img {
  width: 42px;
  height: 42px;
  aspect-ratio: 1;
}

.article-author-card img {
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
}

.article-author span,
.article-author small {
  display: block;
}

.article-author strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.article-author small {
  margin-top: 0.08rem;
  color: rgba(31, 36, 33, 0.6);
  font-size: 0.76rem;
}

.article-author-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 3.5rem;
  padding: 1.2rem;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.article-author-card p,
.article-author-card span {
  margin: 0;
}

.article-author-card p {
  color: var(--ink);
  font-family: var(--font-apple);
  font-size: 1.2rem;
  font-weight: 700;
}

.article-author-card span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(31, 36, 33, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin: 1rem 0 -1rem;
  padding-top: 1.2rem;
  color: rgba(251, 248, 243, 0.58);
  font-size: 0.76rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero,
.about-story,
.about-values {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.15fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.about-hero h1 {
  max-width: 10ch;
  margin: 0.8rem 0 1.3rem;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
}

.about-hero h1 span {
  color: var(--clay);
  font-style: italic;
}

.about-hero__copy > p:last-child {
  max-width: 34rem;
  color: rgba(31, 36, 33, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-hero__media {
  position: relative;
  margin: 0 0 2rem;
}

.about-hero__media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-hero blockquote {
  position: absolute;
  right: clamp(1rem, 5vw, 3rem);
  bottom: -2rem;
  left: clamp(-3rem, -4vw, -1rem);
  max-width: 29rem;
  margin: 0;
  padding: 1.25rem 1.4rem;
  color: var(--ink);
  font-family: var(--font-apple);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.about-story {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

.about-section-heading {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-section-heading h2,
.about-cta h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
}

.about-story__grid,
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-story__grid article,
.about-values__grid article {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--soft-shadow);
}

.about-story__grid span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--moss);
  font-weight: 800;
  background: rgba(74, 93, 78, 0.1);
  border-radius: 50%;
}

.about-story__grid h3,
.about-values__grid strong {
  display: block;
  margin: 1rem 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-apple);
  font-size: 1.35rem;
}

.about-story__grid p,
.about-values__grid p {
  margin: 0;
  color: rgba(31, 36, 33, 0.7);
  line-height: 1.65;
}

.about-values {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.about-values__grid article:hover,
.about-story__grid article:hover {
  border-color: rgba(201, 109, 75, 0.5);
  box-shadow: var(--shadow);
}

.about-cta {
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - 54rem) / 2));
  color: var(--milk);
  text-align: center;
  background: var(--moss);
}

.about-cta .eyebrow,
.about-cta h2 {
  color: var(--milk);
}

.about-cta > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.2rem auto 0;
  color: rgba(251, 248, 243, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-cta .button-row {
  justify-content: center;
}

.button--light {
  color: var(--ink);
  background: var(--milk);
  border-color: var(--milk);
}

.button--outline-light {
  color: var(--milk);
  background: transparent;
  border-color: rgba(251, 248, 243, 0.45);
}

.button--light:hover {
  color: var(--ink);
  background: #fff;
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--milk);
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 0.35rem;
  }

  .main-nav a {
    padding-inline: 0.45rem;
    font-size: 0.79rem;
  }
}

@media (max-width: 920px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    max-width: 42rem;
  }

  .about-hero blockquote {
    left: 1rem;
  }
}

@media (max-width: 720px) {
  .about-story__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    width: min(100% - 1.25rem, var(--max));
  }

  .about-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .about-hero__media > img {
    border-radius: 20px;
  }

  .about-hero blockquote {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -2rem 0 0 0.75rem;
  }

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

/* Keep the reference composition on tablet and small desktop widths. */
@media (min-width: 781px) and (max-width: 920px) {
  .main-nav a {
    padding-inline: 0.42rem;
    font-size: 0.68rem;
  }

  .about-hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  }

  .about-hero blockquote {
    left: -1rem;
  }
}
