:root {
  --accent: #ddb75f;
  --link: #2f2f2f;
  --ink: #171717;
  --muted: #555;
  --line: #eeeeee;
  --soft: #f6f6f6;
  --card: #fbfbfa;
  --paper: #ffffff;
  --container: 1440px;
  --content: 760px;
  --social-primary: #ddb75f;
  --social-secondary: #111111;
  --surface-bg: #fbfbfa;
  --surface-border: 1px solid #eeeeee;
  --surface-radius: 8px;
  --surface-shadow: none;
  --surface-hover-shadow: 0 16px 38px rgba(0,0,0,.075);
  --surface-hover-transform: translateY(-2px);
  --surface-image-hover-transform: scale(1.035);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: Lora, Georgia, serif;
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  font-weight: 700;
}
h2 {
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 600;
}
h3 {
  font-size: 1.625rem;
  line-height: 1.25;
  font-weight: 600;
}
h4 {
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 500;
}
h5 {
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 500;
}
h6 {
  font-size: .875rem;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(var(--container), 80vw); margin-inline: auto; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.site-header__top {
  display: grid;
  grid-template-columns: 1fr 443px 1fr;
  align-items: center;
  min-height: 84px;
  padding: 12px 0 6px;
}
.site-branding { position: relative; z-index: 3; text-align: center; }
.site-branding a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-logo { width: 156px; margin-inline: auto; }
.site-branding img.site-logo {
  width: 156px;
  height: auto;
}
.site-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
}
.site-social {
  justify-self: end;
  display: flex;
  gap: 12px;
}
.social-link {
  display: inline-grid;
  place-items: center;
  width: 33.6px;
  height: 33.6px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: var(--social-primary);
  color: var(--social-secondary);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.site-social .social-link {
  background: var(--social-primary);
}
.social-link:hover {
  transform: translateY(-1px);
  border-color: var(--social-secondary);
  background: var(--social-secondary);
  color: var(--social-primary);
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
  stroke-width: 1.8;
}
.social-link span {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
}
.site-search-mini svg,
.search-overlay svg {
  fill: none;
  stroke: currentColor;
}
.site-header__navrow {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) minmax(152px, max-content);
  gap: 10px;
  align-items: center;
  min-height: 68px;
  border-top: 1px solid var(--line);
}
.site-search-mini a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  color: #000;
}
.site-search-mini svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.site-search-mini span { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; }
.primary-navigation { justify-self: center; }
.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-navigation li { position: relative; }
.primary-navigation a {
  display: block;
  padding: 10px 11px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
  z-index: 60;
}
.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu { display: block; }
.primary-navigation .sub-menu .sub-menu { left: 100%; top: -1px; }
.primary-navigation .sub-menu a {
  padding: 10px 14px;
  text-transform: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.submenu-toggle { display: none; }
.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}
.writer-cta {
  justify-self: end;
  display: inline-flex;
  box-sizing: border-box;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.writer-cta:hover { color: #fff; background: #CBA44C; }
.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}
.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  width: auto;
  max-width: 100%;
  margin: 14px 0 18px;
  font-size: 12px;
  line-height: 1.35;
  color: #666;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: #4a4a4a;
  font-weight: 600;
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--link); }
.breadcrumbs__sep {
  color: #b0b0b0;
}
.breadcrumbs__current {
  color: #777;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  background: #242424 center / cover no-repeat;
  isolation: isolate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.56), rgba(0,0,0,.24) 52%, rgba(0,0,0,.44)),
    rgba(0,0,0,.1);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 50px);
  align-items: stretch;
  padding: 72px 0;
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: none;
  padding: 0 10px;
  color: #fff;
  text-align: center;
}
.hero__content::before {
  content: "";
  width: 52px;
  height: 2px;
  margin: 0 auto 18px;
  background: var(--accent);
}
.hero h1,
.single-hero h1,
.archive-hero h1 {
  margin: 10px 0 18px;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
}
.hero h1 {
  font-size: 48px;
}
.hero p { max-width: 590px; margin: 0 auto 26px; color: rgba(255,255,255,.88); }
.hero__list {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero__list .post-list-item {
  grid-template-columns: 82px minmax(0, 1fr);
  margin-bottom: 0;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.hero__list .post-list-item:last-child { margin-bottom: 0; }
.hero__list .entry-meta { font-size: 11px; }
.hero__list .post-list-item__media {
  width: 74px;
  height: 74px;
  aspect-ratio: 1;
  border-radius: 999px;
}
.hero__list .post-list-item h2 {
  max-width: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hero__list .post-list-item h2 a,
.featured-card h2 a,
.horizontal-card h2 a,
.post-list-item h2 a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
}
.hero__content .button {
  align-self: center;
}
.button:hover,
.button--light:hover {
  background: #CBA44C;
  color: #fff;
}
.button--light { background: #000; color: #fff; border-color: #000; }
.button--light:hover {
  border-color: #CBA44C;
  background: #CBA44C;
  color: #fff;
}

.section { padding: 64px 0; }
.section--soft { background: var(--soft); }
.section-header { margin-bottom: 28px; }
.section-header--center { text-align: center; }
.section-kicker,
.eyebrow {
  color: var(--link);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-header h2 {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}
.section-heading h2 {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: none;
}
.section-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-top: 14px;
  background: var(--accent);
}
.section-header--center::after { margin-inline: auto; }

.post-grid { display: grid; gap: 26px; }
.post-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.post-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.post-card {
  background: var(--surface-bg);
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  box-shadow: var(--surface-shadow);
  min-width: 0;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.post-card__media { display: block; background: var(--soft); aspect-ratio: 1.45; overflow: hidden; }
.post-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.post-card:hover {
  transform: var(--surface-hover-transform);
  border-color: rgba(157,110,0,.22);
  box-shadow: var(--surface-hover-shadow);
}
.post-card:hover .post-card__image { transform: var(--surface-image-hover-transform); }
.post-card__image--placeholder { display: block; background: linear-gradient(135deg, #f1f1f1, #dedede); }
.post-card__body { padding: 18px; }
.post-card__title {
  margin: 8px 0;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}
.post-card p { color: var(--muted); margin: 10px 0 0; }
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
}

.split-layout,
.content-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}
.two-column-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
}
.stack-list { display: grid; gap: 18px; }
.post-list-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.post-list-item > div { min-width: 0; }
.post-list-item__media {
  aspect-ratio: 1.25;
  overflow: hidden;
  background: #fff;
}
.post-list-item__image { width: 100%; height: 100%; object-fit: cover; }
.post-list-item h2 {
  margin: 5px 0 5px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.28;
}

.promo-band {
  padding: 70px 0;
  color: #fff;
  background: var(--ink);
  border-top: 6px solid var(--accent);
  border-bottom: 6px solid var(--accent);
}
.promo-band__inner { text-align: center; }
.promo-band h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}
.promo-band p { margin: 0; color: rgba(255,255,255,.78); }

.archive-hero,
.single-hero {
  padding: 60px 0 120px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  text-align: center;
}
.archive-description { max-width: 740px; color: var(--muted); }
.author-box { display: flex; gap: 20px; align-items: center; }
.author-box img,
.author-card img { border-radius: 999px; }

.single-hero__inner {
  max-width: min(var(--container), 1080px);
}
.single-hero h1 {
  font-family: var(--font-heading);
  text-wrap: balance;
}
.single-byline {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px auto 0;
  color: #3f3f3f;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.35;
}
.single-byline > span,
.single-byline > a,
.single-reading {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.72);
}
.single-byline a {
  color: #2a2a2a;
  font-weight: 500;
  text-decoration: none;
}
.single-byline span a {
  display: inline;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.single-byline a:hover { color: var(--link); }
.single-featured {
  margin-top: -90px;
  margin-bottom: 46px;
  contain: layout;
}
.single-featured img {
  width: 100%;
  aspect-ratio: 1280 / 305;
  max-height: 250px;
  object-fit: cover;
}
figcaption {
  margin-top: 8px;
  color: rgba(0,0,0,.7);
  font-size: .95em;
  font-style: italic;
  text-align: center;
}
.entry-content,
.page-content {
  max-width: var(--content);
  font-size: 15px;
  line-height: 1.64;
  font-weight: 400;
}
.entry-content p,
.entry-content li,
.page-content p,
.page-content li {
  font-family: var(--font-body);
  font-size: 1em;
  line-height: 1.68;
  font-weight: 300;
}
.entry-content strong,
.entry-content b,
.page-content strong,
.page-content b {
  font-weight: 700;
}
.entry-content em,
.entry-content i,
.page-content em,
.page-content i {
  font-style: italic;
}
.entry-content .has-small-font-size,
.page-content .has-small-font-size {
  font-size: .9em !important;
}
.entry-content .has-medium-font-size,
.page-content .has-medium-font-size {
  font-size: 1em !important;
}
.entry-content .has-large-font-size,
.page-content .has-large-font-size {
  font-size: 1.12em !important;
}
.entry-content .has-x-large-font-size,
.page-content .has-x-large-font-size {
  font-size: 1.18em !important;
}
.entry-content h1,
.page-content h1 {
  margin-top: 1.15em;
  margin-bottom: .28em;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
}
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-family: var(--font-heading);
  margin-top: 1.05em;
  margin-bottom: .28em;
}
.entry-content h2 + *,
.entry-content h3 + *,
.entry-content h4 + *,
.entry-content h5 + *,
.entry-content h6 + *,
.page-content h2 + *,
.page-content h3 + *,
.page-content h4 + *,
.page-content h5 + *,
.page-content h6 + * {
  margin-top: 0;
}
.entry-content h2,
.page-content h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
}
.entry-content h3,
.page-content h3 {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 600;
}
.entry-content h4,
.page-content h4 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}
.entry-content h5,
.page-content h5 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}
.entry-content h6,
.page-content h6 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}
.entry-content a,
.page-content a {
  color: var(--link);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content blockquote,
.page-content blockquote {
  position: relative;
  margin: 28px 0;
  padding: 24px 54px;
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.08em;
  line-height: 1.7;
}
.entry-content blockquote::before,
.page-content blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -6px;
  font-family: Georgia, serif;
  font-size: 52px;
  opacity: .35;
}
.entry-content blockquote::after,
.page-content blockquote::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: -16px;
  font-family: Georgia, serif;
  font-size: 52px;
  opacity: .35;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tag-list a,
.chip-list a {
  display: inline-flex;
  padding: 6px 10px;
  background: var(--soft);
  color: #111;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 42px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.post-navigation a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.author-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--soft);
  border-left: 4px solid var(--accent);
}
.author-card h2 { margin: 0 0 6px; font-size: 20px; }
.author-card p { margin: 0; color: var(--muted); }

.site-sidebar { display: grid; gap: 22px; }
.widget {
  padding: 22px;
  background: var(--surface-bg);
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  box-shadow: var(--surface-shadow);
}
.widget-title,
.footer-widget-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.22;
  font-weight: 900;
}
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.widget li:last-child { border-bottom: 0; }
.widget a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}
.widget a:hover { color: var(--link); }
.sidebar-post-list li {
  display: grid;
  gap: 5px;
}
.sidebar-post-list > li > a {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}
.sidebar-post-list span {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.sidebar-post-list span em {
  color: #aaa;
  font-style: normal;
}
.sidebar-post-list .sidebar-post-list__author {
  color: #444;
  font-family: var(--font-ui);
  font-size: inherit;
  font-weight: 500;
}
.sidebar-ad-widget {
  position: relative;
  display: block;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.08)),
    url("/wp-content/uploads/2025/08/ads-banner-pmc71durnj4u90yklzzwcz91cp23ga6uf1p2wi9frg.webp") center / cover no-repeat;
  overflow: hidden;
}
.sidebar-ad-widget__link {
  position: absolute;
  inset: 0;
  display: block;
}
.sidebar-subscribe-widget p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.sidebar-subscribe-widget {
  text-align: center;
}
.sidebar-subscribe-form {
  display: grid;
  gap: 10px;
}
.sidebar-subscribe-form.newsletter-form--cf7 {
  display: block;
}
.sidebar-subscribe-form .wpcf7-form {
  display: grid;
  gap: 10px;
}
.sidebar-subscribe-form .wpcf7-form p {
  display: contents;
}
.sidebar-subscribe-form input[type="email"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 0 12px;
  font: inherit;
}
.sidebar-subscribe-form button,
.sidebar-subscribe-form input[type="submit"] {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sidebar-subscribe-form button:hover,
.sidebar-subscribe-form input[type="submit"]:hover {
  background: #CBA44C;
  color: #fff;
}
.latest-section .site-sidebar {
  position: sticky;
  top: 18px;
  align-self: start;
  max-height: calc(100vh - 36px);
  overflow: auto;
}
.search-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
}
.search-field {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font: inherit;
}
.search-form button {
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.search-form button:hover {
  background: #CBA44C;
  color: #fff;
}
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(255,255,255,.96);
}
.search-overlay.is-open { display: grid; }
.search-overlay__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}
.search-overlay__inner {
  width: min(760px, 100%);
  text-align: center;
}
.search-overlay__form {
  display: grid;
  grid-template-columns: 1fr 64px;
  margin-top: 18px;
  border-bottom: 2px solid var(--ink);
}
.search-overlay__form input {
  min-width: 0;
  border: 0;
  padding: 18px 0;
  background: transparent;
  font: inherit;
  font-size: 28px;
  outline: 0;
}
.search-overlay__form button {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}
.search-overlay__form button svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
}
.search-overlay__form button span {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
}
.pagination { margin-top: 34px; }
.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.page-numbers.current { color: #fff; background: var(--accent); border-color: var(--accent); }

.section--title-only {
  padding: 80px 0 70px;
}
.section--title-only .section-header { margin: 0; }
.section--title-only h2 {
  font-size: 16px;
  letter-spacing: .03em;
}
.popular-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 0 42px;
  text-align: center;
}
.popular-header::after {
  margin: -6px auto 0;
  order: 2;
}
.popular-tabs {
  order: 3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  background: #fff;
}
.popular-tab {
  min-height: 34px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.popular-tab.is-active,
.popular-tab:hover {
  background: #000;
  color: #fff;
}
.weekly-popular {
  min-height: 700px;
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f8f8 0%, #f2f2f2 100%);
}
.popular-panel {
  display: none;
}
.popular-panel.is-active {
  display: grid;
}
.weekly-popular__grid {
  grid-template-columns: 432px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.weekly-popular__list {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.weekly-popular .horizontal-card {
  height: 145px;
  min-height: 0;
  overflow: hidden;
  border: var(--surface-border);
  box-shadow: var(--surface-shadow);
}
.weekly-popular .horizontal-card__media {
  height: 100%;
}
.weekly-popular .horizontal-card:hover {
  border-color: var(--accent);
}
.weekly-popular .horizontal-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.weekly-popular .horizontal-card .text-link {
  align-self: end;
  margin-top: 0;
}
.featured-card {
  height: 610px;
  min-width: 0;
  overflow: hidden;
  background: var(--surface-bg);
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  box-shadow: var(--surface-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.featured-card__media {
  display: block;
  height: 382px;
  overflow: hidden;
  background: #eee;
}
.featured-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.featured-card:hover {
  box-shadow: var(--surface-hover-shadow);
  transform: var(--surface-hover-transform);
}
.featured-card:hover .featured-card__image { transform: var(--surface-image-hover-transform); }
.featured-card__body {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 20px;
}
.featured-card h2 {
  margin: 0;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.featured-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  font-style: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.featured-card .entry-meta {
  font-style: normal;
}
.horizontal-card {
  display: grid;
  grid-template-columns: 185px 1fr;
  min-height: 145px;
  background: var(--surface-bg);
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  box-shadow: var(--surface-shadow);
  overflow: hidden;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.horizontal-card__media {
  display: block;
  overflow: hidden;
  background: #eee;
}
.horizontal-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.horizontal-card:hover {
  background: var(--surface-bg);
  box-shadow: var(--surface-hover-shadow);
  transform: var(--surface-hover-transform);
}
.horizontal-card:hover .horizontal-card__image { transform: var(--surface-image-hover-transform); }
.horizontal-card__body {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 16px 18px;
}
.horizontal-card h2 {
  margin: 0;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.horizontal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}
.horizontal-card .entry-meta {
  align-items: center;
  overflow: hidden;
}
.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--link);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.social-follow-band {
  padding: 56px 0;
  background: #fff;
  color: #111;
}
.social-follow-band__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 210px;
  padding: 34px 42px;
  background: url("/wp-content/uploads/2025/08/jurno-big-banner.webp") center / cover no-repeat;
  overflow: hidden;
}
.social-follow-band__content {
  display: grid;
  gap: 14px;
  justify-items: end;
  margin-left: auto;
  color: #111;
  text-align: right;
}
.social-follow-band h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .04em;
}
.social-follow-band__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.social-follow {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--social-primary);
  border-radius: 999px;
  padding: 0;
  background: var(--social-primary);
  color: var(--social-secondary);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.social-follow:hover {
  transform: translateY(-2px);
  border-color: var(--social-secondary);
  background: var(--social-secondary);
  color: var(--social-primary);
}
.social-follow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}
.social-follow span {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
}
.latest-section { padding-top: 50px; }
.latest-section .section-header::after {
  margin-left: 0;
  margin-right: auto;
}
.latest-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
.latest-section .horizontal-card {
  grid-template-columns: 220px 1fr;
  min-height: 195px;
  margin-bottom: 18px;
  background: var(--surface-bg);
  border: var(--surface-border);
  box-shadow: var(--surface-shadow);
}
.latest-section .horizontal-card:hover {
  background: var(--surface-bg);
  box-shadow: var(--surface-hover-shadow);
}
.latest-section .horizontal-card__body {
  grid-template-rows: auto auto auto auto;
  align-content: center;
  padding: 18px 22px;
}
.latest-section .horizontal-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-hero {
  padding: 60px 0 70px;
  background: #f9f9f9;
}
.archive-hero h1 {
  font-size: 40px;
}
.archive-results {
  padding: 0 0 78px;
}
.archive-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
}
.archive-main {
  min-width: 0;
}
.archive-results .site-sidebar,
.term-list-section .site-sidebar {
  position: sticky;
  top: 18px;
}
.archive-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 44px;
}
.archive-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface-bg);
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  box-shadow: var(--surface-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.archive-card:hover {
  box-shadow: var(--surface-hover-shadow);
  transform: var(--surface-hover-transform);
}
.archive-card__media {
  display: block;
  aspect-ratio: 1.38;
  overflow: hidden;
  margin-bottom: 24px;
  background: #eee;
}
.archive-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-card h3 {
  margin: 12px 0 16px;
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.24;
  font-weight: 900;
}
.archive-card h3 a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.archive-card .entry-meta {
  margin-top: 16px;
  font-size: 13px;
}
.archive-empty {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.term-compact-hero {
  min-height: 76px;
  display: grid;
  align-items: center;
  background: #f9f9f9;
  text-align: center;
}
.term-compact-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.2;
}
.term-list-section {
  padding: 60px 0 70px;
}
.term-list {
  max-width: none;
  margin-left: 0;
}
.term-list .horizontal-card {
  grid-template-columns: 220px 1fr;
  min-height: 195px;
  margin-bottom: 24px;
  background: var(--surface-bg);
}
.term-list .horizontal-card:last-child {
  margin-bottom: 0;
}

.author-profile-hero {
  min-height: 310px;
  padding: 42px 0 46px;
  display: grid;
  align-items: center;
  background: #f9f9f9;
  text-align: center;
}
.author-profile-card {
  display: grid;
  justify-items: center;
  gap: 12px;
}
.author-profile-card .breadcrumbs {
  margin: 0 0 6px;
}
.author-profile-card img {
  border-radius: 999px;
  width: 112px;
  height: 112px;
  border: 6px solid #fff;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.author-profile-card h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1.1;
}
.author-profile-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.author-profile-card__role {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(221, 183, 95, .18);
  color: #2b2b2b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.author-profile-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.author-profile-stats span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.authors-page-hero {
  padding: 72px 0 78px;
  text-align: center;
}
.authors-page-hero .container {
  max-width: 820px;
}
.authors-page-hero h1 {
  margin-bottom: 16px;
}
.authors-page-hero p:not(.section-kicker) {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.authors-page-content {
  padding: 64px 0 86px;
}
.authors-page-content .breadcrumbs {
  width: 100%;
  margin: -28px 0 46px;
}
.authors-group {
  margin-bottom: 74px;
}
.authors-group:last-child {
  margin-bottom: 0;
}
.authors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.authors-card {
  position: relative;
  min-width: 0;
  background: var(--surface-bg);
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  box-shadow: var(--surface-shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.authors-card::before {
  content: "";
  display: block;
  height: 6px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.authors-card:hover {
  transform: var(--surface-hover-transform);
  border-color: rgba(255,61,0,.22);
  box-shadow: var(--surface-hover-shadow);
}
.authors-card:hover::before {
  transform: scaleX(1);
}
.authors-card a {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 342px;
  padding: 32px 24px 28px;
  text-align: center;
}
.authors-card__avatar {
  width: 132px;
  height: 132px;
  border: 6px solid #f5f5f5;
  border-radius: 999px;
  object-fit: cover;
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.authors-card__role {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 5px 10px;
  background: #fff3ee;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.authors-card h3 {
  margin: 2px 0 0;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.25;
}
.authors-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.authors-card strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 4px;
  padding: 5px 12px;
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.authors-empty {
  margin: 0;
  padding: 24px;
  background: var(--soft);
  color: var(--muted);
  text-align: center;
}

.page-compact-hero {
  min-height: 186px;
}
.writer-page-content {
  max-width: var(--container);
  padding: 70px 0;
}
.writer-page-content > .elementor,
.writer-page-content > * {
  max-width: 100%;
}
.jurno-writer-application-copy {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}
.jurno-writer-application-copy h2 {
  margin: 6px 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
}
.jurno-writer-application-copy p:not(.section-kicker) {
  margin: 0 auto 12px;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.writer-page-content .wpcf7 {
  max-width: 980px;
  margin: 0 auto;
}
.jurno-cf7-application {
  display: grid;
  gap: 20px;
}
.jurno-cf7-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}
.jurno-cf7-progress__item {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.jurno-cf7-progress__item::before {
  content: attr(data-step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.jurno-cf7-progress__item.is-active {
  border-color: rgba(219, 183, 99, .65);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .06);
}
.jurno-cf7-progress__item.is-active::before,
.jurno-cf7-progress__item.is-complete::before {
  background: var(--accent);
  color: #111;
}
.jurno-cf7-step {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.jurno-cf7-application.is-stepped .jurno-cf7-step {
  display: none;
}
.jurno-cf7-application.is-stepped .jurno-cf7-step.is-active {
  display: block;
}
.jurno-cf7-step legend {
  padding: 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}
.jurno-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.jurno-cf7-step > p,
.jurno-cf7-grid > p,
.jurno-cf7-acceptance > p,
.jurno-cf7-submit > p {
  margin: 0;
}
.jurno-cf7-grid > p {
  display: contents;
}
.jurno-cf7-application br {
  display: none;
}
.jurno-cf7-application label {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.jurno-cf7-application .wpcf7-form-control-wrap {
  display: block;
}
.jurno-cf7-application input:not([type="checkbox"]):not([type="submit"]),
.jurno-cf7-application textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fafafa;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.jurno-cf7-application input[type="file"] {
  cursor: pointer;
}
.jurno-cf7-application textarea {
  min-height: 146px;
  resize: vertical;
}
.jurno-cf7-application input:focus,
.jurno-cf7-application textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(219, 183, 99, .18);
}
.jurno-cf7-note {
  margin: 4px 0 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.jurno-cf7-acceptance {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.jurno-cf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.jurno-cf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.jurno-cf7-acceptance input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.jurno-cf7-submit {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 8px;
}
.jurno-cf7-turnstile-slot {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 0;
}
.jurno-cf7-turnstile-slot[hidden] {
  display: none !important;
}
.jurno-cf7-turnstile-slot:empty {
  display: none;
}
.jurno-cf7-turnstile-slot .cf-turnstile,
.jurno-cf7-turnstile-slot .wpcf7-turnstile {
  min-height: 65px;
  background: transparent !important;
}
.jurno-cf7-turnstile-slot iframe {
  background: transparent !important;
}
.jurno-cf7-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.jurno-cf7-step-button {
  border: 1px solid var(--ink);
  border-radius: 50px;
  padding: 14px 28px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.jurno-cf7-step-button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.jurno-cf7-submit input[type="submit"] {
  min-width: 190px;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.jurno-cf7-submit input[type="submit"]:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.writer-page-content .wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.writer-page-content .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #9b1c1c;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.single-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 25%) minmax(0, 75%);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.single-side { min-height: 100%; }
.single-side__box {
  position: sticky;
  top: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 0 14px 0 0;
  border-right: 1px solid var(--line);
  background: #fff;
}
.single-side__box > :not(.single-side-ad) {
  transition: opacity .24s ease, visibility .24s ease;
}
.single-side__box.is-showing-ad {
  min-height: calc(100vh - 40px);
}
.single-side__box.is-showing-ad > :not(.single-side-ad) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.single-progress {
  height: 7px;
  margin: 0 0 30px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 42%, #fff);
  overflow: hidden;
}
.single-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
@supports (animation-timeline: scroll()) {
  .single-progress span {
    animation: jurno-reading-progress linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes jurno-reading-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.single-side__authors {
  margin: 0 0 24px;
  color: #383838;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.25;
}
.single-side__authors a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}
.single-side__editor {
  display: block;
  margin-top: 5px;
  color: #666;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
}
.single-side__editor a {
  color: inherit;
  font-weight: 600;
}
.single-side__meta {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: #3a3a3a;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
}
.single-side__meta li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.single-side__meta svg {
  width: 21px;
  height: 21px;
  color: #a17100;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.single-side__meta strong {
  font-weight: 500;
}
.single-side__meta a {
  color: inherit;
  font-weight: 400;
  text-decoration: none;
}
.single-side__meta a:hover { color: var(--link); }
.single-toc {
  padding-top: 0;
}
.single-toc h2 {
  margin: 0 0 12px;
}
.single-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-heading);
  color: #3a3a3a;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
}
.single-toc__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.single-toc__icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #111;
  border-left: 3px solid #111;
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.single-toc__toggle[aria-expanded="true"] .single-toc__icon::before {
  transform: rotate(45deg);
}
.single-toc.is-collapsed .single-toc__icon::before {
  transform: rotate(225deg);
}
.single-toc__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.single-toc ol {
  margin: 0;
  padding: 16px 12px 16px 14px;
  list-style: none;
  max-height: 300px;
  overflow: auto;
  border-top: 1px solid #aeb4bc;
  scrollbar-color: #b9bdc4 transparent;
  scrollbar-width: auto;
}
.single-toc li {
  margin-bottom: 12px;
}
.single-toc a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  color: #444;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.single-toc__number {
  color: #444;
  font-variant-numeric: tabular-nums;
}
.single-toc__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single-toc a:hover { color: var(--link); }
.single-toc .toc-level-2 { padding-left: 14px; }
.single-toc .toc-level-3 { padding-left: 28px; }
.single-toc .toc-level-4 { padding-left: 42px; }
.single-toc .toc-level-5 { padding-left: 56px; }
.single-toc.is-collapsed ol {
  display: none;
}
.single-share {
  margin-top: 34px;
  border-top: 0;
  padding-top: 0;
}
.single-share h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  color: #3a3a3a;
  font-size: 19px;
  font-weight: 500;
}
.single-share__links {
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
}
.single-share__link {
  display: inline-grid;
  flex: 0 0 40px;
  width: 40px;
  min-height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #ededed;
  color: #252525;
}
.single-share__link:hover {
  background: var(--accent);
  color: #fff;
}
.single-side-ad {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  margin: 0;
  opacity: 0;
  transform: translate(-50%, -48%);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.single-side-ad.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
  visibility: visible;
  pointer-events: auto;
}
.single-side-ad__link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--surface-radius);
  overflow: hidden;
  background: var(--surface-bg);
}
.single-side-ad__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-share__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.single-share__link--instagram svg {
  fill: currentColor;
  stroke: none;
}
.single-share__link span {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
}
.blog-compact-hero h1 {
  font-size: 28px;
}
.single-entry {
  max-width: none;
  width: 100%;
}
.single-entry figure,
.single-entry .wp-block-image,
.entry-content figure,
.entry-content .wp-block-image {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}
.single-entry figure img,
.single-entry .wp-block-image img,
.single-entry > p > img,
.entry-content figure img,
.entry-content .wp-block-image img,
.entry-content > p > img {
  display: block !important;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.single-entry figcaption,
.single-entry .wp-element-caption,
.entry-content figcaption,
.entry-content .wp-element-caption {
  display: block !important;
  caption-side: initial !important;
  width: min(100%, 820px) !important;
  max-width: 100% !important;
  margin: 8px auto 0 !important;
  color: rgba(0,0,0,.68);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  overflow-wrap: break-word;
}
.single-reading {
  width: fit-content;
  margin: 0;
  color: #444;
  font-size: 13px;
  line-height: 1.35;
}
.single-scroll {
  margin-top: 20px;
}
.comments-wrap {
  margin-top: 70px;
  margin-bottom: 70px;
}
.comments-area {
  max-width: 804px;
  margin-left: auto;
  margin-right: auto;
  padding: 38px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 16px 40px rgba(0,0,0,.055);
}
.comments-header {
  margin-bottom: 28px;
}
.comments-header h2,
.comment-reply-title {
  margin: 4px 0 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.25;
}
.comment-list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.comment-list .children {
  margin: 18px 0 0 34px;
  padding: 0;
  list-style: none;
}
.comment {
  margin-bottom: 18px;
}
.comment-body {
  position: relative;
  padding: 22px 22px 20px 92px;
  background: #fafafa;
  border: 1px solid var(--line);
}
.comment-body .avatar {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
}
.comment-author {
  color: var(--ink);
  font-weight: 800;
}
.comment-author .says {
  color: var(--muted);
  font-weight: 500;
}
.comment-metadata,
.comment-awaiting-moderation {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.comment-content {
  margin-top: 12px;
  color: #333;
  line-height: 1.75;
}
.comment-content p {
  margin: 0 0 12px;
}
.reply {
  margin-top: 12px;
}
.comment-reply-link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.comment-respond {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.comment-form {
  display: grid;
  gap: 14px;
}
.comment-form p {
  margin: 0;
}
.comment-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #CBA44C;
  outline: 2px solid rgba(203,164,76,.18);
}
.comment-form-cookies-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
}
.comment-form-cookies-consent label {
  margin: 0;
  color: inherit;
  font-weight: 500;
}
.comment-form .submit {
  min-height: 48px;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.comment-form .submit:hover {
  background: #CBA44C;
  color: #fff;
}

.site-footer {
  margin-top: 80px;
  background: #f6f6f6;
  color: #3f3f3f;
}
.footer-newsletter {
  padding: 60px 0;
  background: #f6f6f6;
}
.footer-newsletter__inner {
  min-height: 338px;
  text-align: center;
}
.footer-newsletter__icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border: 1px solid #9d6e00;
  border-radius: 999px;
  color: #9d6e00;
}
.footer-newsletter__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.footer-newsletter h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.35;
  color: #3f3f3f;
}
.footer-newsletter p {
  max-width: 690px;
  margin: 0 auto;
  color: #3f3f3f;
}
.footer-divider {
  height: 1px;
  margin: 26px 10px 30px;
  background: rgba(63,63,63,.16);
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 150px;
  width: 510px;
  max-width: 100%;
  min-height: 50px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  min-width: 0;
  border: 1px solid #ddd;
  border-right: 0;
  border-radius: 50px 0 0 50px;
  padding: 0 16px;
  font: inherit;
  background: #fff;
}
.newsletter-form.newsletter-form--cf7 {
  display: block;
}
.newsletter-form .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 150px;
  width: 510px;
  max-width: 100%;
  min-height: 50px;
  margin: 0 auto;
}
.jurno-newsletter-cf7 {
  display: contents;
}
.newsletter-form .wpcf7-form p {
  display: contents;
}
.newsletter-form .wpcf7-form-control-wrap {
  display: contents;
}
.newsletter-form button,
.newsletter-form input[type="submit"] {
  border: 0;
  border-radius: 0 50px 50px 0;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.newsletter-form button:hover,
.newsletter-form input[type="submit"]:hover {
  background: #CBA44C;
  color: #fff;
}
.newsletter-form .wpcf7-spinner,
.sidebar-subscribe-form .wpcf7-spinner {
  margin: 10px auto 0;
}
.newsletter-form .wpcf7-not-valid-tip,
.sidebar-subscribe-form .wpcf7-not-valid-tip {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: #9b1c1c;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.newsletter-form .wpcf7-response-output,
.sidebar-subscribe-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}
.newsletter-form__empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-brand-row {
  padding: 20px 0 10px;
  background: #f6f6f6;
}
.footer-brand-row__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  min-height: 118px;
  gap: 10px;
}
.footer-center { text-align: center; }
.footer-center__logo {
  width: 200px;
  margin: 0 auto 18px;
}
.footer-center p {
  margin: 0;
  color: #3f3f3f;
  font-size: 15px;
}
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer-social .social-link {
  width: 38.4px;
  height: 38.4px;
}
.footer-social span {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
}
.footer-links-row {
  padding: 5px 0 40px;
  background: #f6f6f6;
}
.footer-links-row__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  align-items: start;
}
.footer-legal-note { padding: 56px 10px 0; }
.footer-legal-note img {
  width: 540px;
  max-width: 100%;
  height: 38px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}
.footer-legal-note p {
  max-width: 540px;
  margin: 0;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.7;
}
.footer-legal-note a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-menu-block { padding: 10px; }
.footer-menu-block h2 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.4;
  color: #3f3f3f;
}
.footer-menu-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu-block a {
  display: inline-block;
  padding: 5px 10px 5px 0;
  color: #3f3f3f;
  font-size: 15px;
}
.footer-menu-block a:hover { color: var(--accent); }

@media (max-width: 1024px) {
  .site-header {
    position: relative;
    min-height: 90px;
  }
  .site-header__top {
    grid-template-columns: 1fr auto;
    min-height: 90px;
    padding: 14px 0;
  }
  .site-header__spacer,
  .site-social,
  .site-search-mini,
  .writer-cta { display: none; }
  .site-branding { text-align: left; }
  .site-branding a {
    min-height: 48px;
    justify-content: flex-start;
  }
  .site-logo {
    width: auto;
    max-width: min(194px, calc(100vw - 112px));
    max-height: 44px;
    margin: 0;
  }
  .site-branding img.site-logo {
    max-height: 44px;
  }
  .site-header__navrow {
    position: absolute;
    top: 22px;
    right: 14px;
    display: flex;
    justify-content: flex-end;
    width: auto;
    min-height: 0;
    border-top: 0;
    z-index: 8;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 9;
    width: 46px;
    height: 46px;
    padding: 11px;
  }
  .menu-toggle span:not(.screen-reader-text) {
    height: 2px;
    margin: 5px 0;
  }
  .primary-navigation {
    position: absolute;
    top: 58px;
    right: 0;
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100vh - 92px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
    display: none;
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul { display: grid; align-items: stretch; }
  .primary-navigation li.menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }
  .primary-navigation li.menu-item-has-children > a {
    min-width: 0;
  }
  .submenu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-left: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
  }
  .submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .18s ease;
  }
  .submenu-toggle[aria-expanded="true"] span {
    transform: rotate(225deg) translate(-2px, -2px);
  }
  .primary-navigation .sub-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding-left: 16px;
  }
  .primary-navigation .is-submenu-open > .sub-menu {
    display: block;
  }
  .primary-navigation li:hover > .sub-menu,
  .primary-navigation li:focus-within > .sub-menu {
    display: none;
  }
  .primary-navigation .is-submenu-open:hover > .sub-menu,
  .primary-navigation .is-submenu-open:focus-within > .sub-menu {
    display: block;
  }
  .post-grid--three,
  .post-grid--two,
  .split-layout,
  .content-sidebar,
  .two-column-feed,
  .weekly-popular__grid,
  .latest-section__grid,
  .archive-with-sidebar,
  .archive-card-grid,
  .single-content-grid,
  .footer-brand-row__grid,
  .footer-links-row__grid {
    grid-template-columns: 1fr;
  }
  .authors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-sidebar { order: 2; }
  .latest-section .site-sidebar,
  .archive-results .site-sidebar,
  .term-list-section .site-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .weekly-popular { min-height: 0; }
  .popular-header {
    margin-bottom: 30px;
  }
  .popular-tabs {
    flex-wrap: wrap;
  }
  .popular-panel.is-active {
    width: 100%;
    min-width: 0;
  }
  .weekly-popular .featured-card {
    width: 100%;
    height: auto;
    min-width: 0;
  }
  .weekly-popular .featured-card__media {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .weekly-popular__list {
    gap: 12px;
  }
  .weekly-popular .horizontal-card {
    grid-template-columns: 118px minmax(0, 1fr);
    height: auto;
    min-height: 132px;
  }
  .weekly-popular .horizontal-card__media {
    width: 100%;
    height: 100%;
    min-height: 132px;
    aspect-ratio: 1 / 1;
  }
  .weekly-popular .horizontal-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .horizontal-card,
  .latest-section .horizontal-card {
    grid-template-columns: 160px 1fr;
  }
  .archive-card-grid { gap: 40px; }
  .archive-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-width: 0;
  }
  .archive-card__media {
    aspect-ratio: 1.35;
    margin-bottom: 0;
  }
  .archive-card__body {
    min-width: 0;
  }
  .archive-card h3 {
    margin: 8px 0 12px;
    font-size: 22px;
  }
  .single-side__box { position: static; }
  .single-content-grid,
  .single-side,
  .single-entry {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .single-side {
    order: 2;
  }
  .single-entry {
    order: 1;
  }
  .single-side__box {
    width: 100%;
    margin: 22px 0 0;
    padding: 18px;
    border: 1px solid var(--line);
  }
  .single-progress {
    margin-bottom: 28px;
  }
  .single-side__authors {
    margin-bottom: 28px;
  }
  .single-side__meta {
    margin-bottom: 34px;
    font-size: 13px;
  }
  .single-toc ol {
    max-height: 220px;
  }
  .footer-brand-row__grid,
  .footer-links-row__grid { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-legal-note { padding-top: 20px; }
  .footer-legal-note p { margin-inline: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  body {
    font-size: 15px;
    line-height: 1.64;
  }
  h1 { font-size: 34px; line-height: 1.15; }
  h2 { font-size: 26px; line-height: 1.2; }
  h3 { font-size: 21px; line-height: 1.25; }
  h4 { font-size: 18px; line-height: 1.3; }
  h5 { font-size: 16px; line-height: 1.35; }
  h6 { font-size: 13px; line-height: 1.4; }
  body { overflow-x: hidden; }
  .site-header { min-height: 86px; }
  .site-header__top { min-height: 86px; }
  .site-logo {
    max-width: min(184px, calc(100vw - 110px));
    max-height: 40px;
  }
  .site-branding img.site-logo {
    max-height: 40px;
  }
  .site-header__navrow { top: 20px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  .primary-navigation {
    top: 56px;
    right: -14px;
    width: calc(100vw - 28px);
  }
  .hero { min-height: 420px; align-items: start; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 0 15px;
  }
  .hero__content { padding: 54px 0; }
  .hero__list { padding: 0; background: transparent; }
  .hero__list .post-list-item { grid-template-columns: 96px 1fr; }
  .section { padding: 46px 0; }
  .single-hero {
    padding: 42px 0 88px;
  }
  .single-hero h1 {
    font-size: 36px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .single-byline {
    gap: 7px;
    font-size: 12px;
  }
  .single-byline > span,
  .single-byline > a,
  .single-reading {
    min-height: 30px;
    padding: 6px 10px;
  }
  .single-reading {
    font-size: 12px;
  }
  .single-featured {
    margin-top: -62px;
    margin-bottom: 28px;
  }
  .single-featured img {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
  .single-featured figcaption {
    font-size: 14px;
    line-height: 1.45;
  }
  .single-entry {
    overflow-wrap: break-word;
  }
  .single-entry > * {
    max-width: 100%;
  }
  .single-entry figure,
  .single-entry .wp-block-image {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }
  .single-entry figure img,
  .single-entry .wp-block-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    object-fit: contain;
  }
  .single-entry iframe,
  .single-entry embed,
  .single-entry object {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
  }
  .single-entry figcaption,
  .single-entry .wp-element-caption {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 8px auto 0 !important;
    padding: 0 6px;
    color: rgba(0,0,0,.66);
    font-size: 12px;
    font-style: italic;
    line-height: 1.45;
    text-align: center;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .entry-content h2,
  .entry-content h3,
  .page-content h2,
  .page-content h3 {
    overflow-wrap: anywhere;
  }
  .post-list-item { grid-template-columns: 96px 1fr; }
  .post-list-item__media {
    aspect-ratio: 1;
  }
  .term-list-section {
    padding: 42px 0 54px;
  }
  .term-list {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }
  .horizontal-card,
  .latest-section .horizontal-card,
  .term-list .horizontal-card {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 28px;
  }
  .horizontal-card__media,
  .term-list .horizontal-card__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .weekly-popular .horizontal-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 124px;
    margin-bottom: 0;
  }
  .weekly-popular .horizontal-card__media {
    min-height: 124px;
    aspect-ratio: 1 / 1;
  }
  .weekly-popular .horizontal-card__body {
    padding: 13px 14px;
  }
  .weekly-popular .horizontal-card h2 {
    font-size: 16px;
  }
  .weekly-popular .horizontal-card p {
    font-size: 13px;
  }
  .horizontal-card__body,
  .latest-section .horizontal-card__body {
    padding: 18px;
  }
  .social-follow-band {
    padding: 50px 0;
  }
  .social-follow-band__inner {
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 190px;
    padding: 28px;
    background-position: 22% center;
  }
  .social-follow-band__content {
    justify-items: end;
    max-width: 230px;
    padding: 14px 16px;
    border-radius: var(--surface-radius);
    background: rgba(255,255,255,.88);
    text-align: right;
  }
  .social-follow-band__links {
    justify-content: flex-end;
  }
  .social-follow {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }
  .featured-card__media { height: 240px; }
  .archive-hero {
    padding: 42px 0 46px;
  }
  .archive-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .archive-results {
    padding-bottom: 48px;
  }
  .archive-card-grid {
    gap: 28px;
  }
  .archive-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 26px;
  }
  .archive-card__media {
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
  }
  .archive-card h3 { font-size: 22px; }
  .archive-card h3 a {
    white-space: nowrap;
  }
  .author-profile-hero {
    min-height: 0;
    padding: 34px 0 38px;
  }
  .author-profile-card h1 {
    font-size: 31px;
  }
  .author-profile-card p {
    font-size: 14px;
  }
  .authors-grid { grid-template-columns: 1fr; }
  .authors-card a { min-height: 0; }
  .search-overlay__form input { font-size: 20px; }
  .entry-content,
  .page-content {
    font-size: 14px;
    line-height: 1.64;
  }
  .entry-content h1,
  .page-content h1 {
    margin-bottom: .3em;
    font-size: 34px;
    line-height: 1.15;
  }
  .entry-content h2,
  .page-content h2 { font-size: 26px; line-height: 1.2; }
  .entry-content h3,
  .page-content h3 { font-size: 21px; line-height: 1.25; }
  .entry-content h4,
  .page-content h4 { font-size: 18px; line-height: 1.3; }
  .entry-content h5,
  .page-content h5 { font-size: 16px; line-height: 1.35; }
  .entry-content h6,
  .page-content h6 { font-size: 13px; line-height: 1.4; }
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6,
  .page-content h2,
  .page-content h3,
  .page-content h4,
  .page-content h5,
  .page-content h6 {
    margin-top: .95em;
    margin-bottom: .24em;
  }
  .writer-page-content {
    padding: 44px 0;
  }
  .jurno-writer-application-copy {
    margin-bottom: 26px;
    text-align: left;
  }
  .jurno-writer-application-copy h2 {
    font-size: 32px;
  }
  .jurno-writer-application-copy p:not(.section-kicker) {
    font-size: 15px;
  }
  .jurno-cf7-step {
    padding: 20px;
    border-radius: 8px;
  }
  .jurno-cf7-progress {
    grid-template-columns: 1fr;
  }
  .jurno-cf7-progress__item {
    grid-template-columns: 28px 1fr;
    align-items: center;
  }
  .jurno-cf7-step legend {
    font-size: 21px;
  }
  .jurno-cf7-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .jurno-cf7-submit {
    justify-items: stretch;
  }
  .jurno-cf7-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .jurno-cf7-step-button {
    width: 100%;
  }
  .jurno-cf7-submit input[type="submit"] {
    width: 100%;
  }
  .comments-area { padding: 24px 18px; }
  .comment-body { padding: 18px; }
  .comment-body .avatar {
    position: static;
    display: block;
    margin-bottom: 10px;
  }
  .comment-list .children { margin-left: 14px; }
  .entry-content blockquote,
  .page-content blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--ink);
    overflow: hidden;
  }
  .entry-content blockquote::before,
  .page-content blockquote::before {
    left: 8px;
    top: -8px;
    font-size: 38px;
  }
  .entry-content blockquote::after,
  .page-content blockquote::after {
    right: 8px;
    bottom: -18px;
    font-size: 38px;
  }
  .entry-content blockquote p,
  .page-content blockquote p {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    overflow-wrap: anywhere;
  }
  .entry-content pre,
  .page-content pre,
  .entry-content table,
  .page-content table {
    max-width: 100%;
    overflow-x: auto;
  }
  .single-share__links {
    gap: 7px;
  }
  .post-navigation { flex-direction: column; }
  .footer-newsletter h2 { font-size: 30px; }
  .newsletter-form,
  .newsletter-form .wpcf7-form { grid-template-columns: 1fr; }
  .newsletter-form input[type="email"] {
    min-height: 48px;
    border-right: 1px solid #ddd;
    border-radius: 50px;
  }
  .newsletter-form button,
  .newsletter-form input[type="submit"] {
    min-height: 48px;
    border-radius: 50px;
  }
}
