:root {
  --font-main: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  --paper: #f6f8f5;
  --surface: #ffffff;
  --surface-soft: #eef4f0;
  --surface-cool: #edf4f6;
  --hero-bg: #e9f1ec;
  --ink: #171b18;
  --muted: #5f6964;
  --soft: #8a948f;
  --line: #d8ded8;
  --line-strong: #b9c2bc;
  --green: #1d5e4c;
  --green-dark: #123b31;
  --brick: #9b4a36;
  --blue: #315f73;
  --amber: #b48628;
  --ad-bg: #f1f5f7;
  --shadow: 0 18px 48px rgba(22, 31, 27, 0.08);
  --shadow-hover: 0 16px 34px rgba(27, 45, 38, 0.1);
  --component-border: rgba(18, 59, 49, 0.14);
  --component-border-hover: rgba(18, 59, 49, 0.34);
  --component-bg: rgba(255, 255, 255, 0.78);
  --component-bg-strong: #ffffff;
  --focus-ring: 0 0 0 3px rgba(29, 94, 76, 0.16);
  --radius: 8px;
  --max: 1240px;
}* {
  box-sizing: border-box;
}html {
  scroll-behavior: smooth;
}body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
}img {
  display: block;
  max-width: 100%;
}a {
  color: inherit;
  text-decoration: none;
}a:hover {
  color: var(--green);
}p {
  margin: 0;
}h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}h1 {
  font-size: 52px;
}h2 {
  font-size: 30px;
}h3 {
  font-size: 20px;
}button,
input {
  font: inherit;
}.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}.topline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 9px 0;
  width: fit-content;
}.brand-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(18, 59, 49, 0.16);
}.brand-copy {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
}.site-header .brand-name {
  display: block;
  color: var(--green-dark);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}.site-header .brand-note {
  display: inline-flex;
  width: fit-content;
  border-top: 1px solid rgba(29, 94, 76, 0.22);
  color: #41524a;
  padding-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}.header-search {
  display: grid;
  grid-template-columns: 20px minmax(130px, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: clamp(300px, 29vw, 390px);
  min-height: 48px;
  border: 1px solid rgba(185, 194, 188, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(22, 31, 27, 0.06);
  padding: 6px 6px 6px 14px;
}.header-search:focus-within {
  border-color: rgba(29, 94, 76, 0.48);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(29, 94, 76, 0.1);
}.header-search-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  color: var(--green-dark);
  opacity: 0.72;
}.header-search-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}.header-search-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}.header-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}.header-search-input::placeholder {
  color: #738079;
  opacity: 1;
}.header-search-submit {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: var(--green-dark);
  color: #ffffff;
  cursor: pointer;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}.header-search-submit:hover,
.header-search-submit:focus-visible {
  background: var(--green);
  color: #ffffff;
}.menu-toggle,
.text-button {
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
}.menu-toggle:hover,
.text-button:hover {
  border-color: var(--green);
  color: var(--green);
}.text-button {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}.text-button:hover {
  background: var(--green-dark);
  color: #ffffff;
}.menu-toggle {
  display: none;
}.nav-row {
  border-top: 1px solid var(--line);
}.site-nav {
  display: flex;
  align-items: center;
  align-content: stretch;
  flex-wrap: nowrap;
  gap: 0;
  min-height: 46px;
  overflow: visible;
  scrollbar-width: none;
}.site-nav::-webkit-scrollbar {
  display: none;
}.site-nav a {
  flex: 1 1 0;
  min-width: 0;
  color: var(--muted);
  border-right: 1px solid var(--line);
  padding: 13px 8px 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}.site-nav a:first-child {
  border-left: 1px solid var(--line);
}.site-nav a:hover,
.site-nav a.active {
  color: var(--green-dark);
  background: var(--surface);
}.top-media-blocks,
.section-tile-panel,
.media-hub,
.mistake-board,
.calc-library {
  scroll-margin-top: 126px;
}.page-main {
  padding: 34px 0 60px;
}.eyebrow {
  color: var(--brick);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.meta {
  color: var(--soft);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 13px;
}.meta span + span::before {
  content: "/";
  color: var(--line-strong);
  margin-right: 9px;
}.story-thumb img,
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.result-aside,
.article-aside-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}.story-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-cool);
}.footer {
  background: #111814;
  color: #e8eee9;
  padding: 42px 0;
}.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}.footer p,
.footer a {
  color: #b9c5bd;
}.footer a:hover {
  color: #ffffff;
}.footer-links {
  display: grid;
  gap: 8px;
}.footer-brand {
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 700;
}.breadcrumbs {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
}.breadcrumbs a + a::before,
.breadcrumbs a + span::before {
  content: "/";
  color: var(--line-strong);
  margin-right: 8px;
}.category-breadcrumbs {
  margin: 0 0 2px;
  font-size: 13px;
}.article-shell,
.category-shell,
.search-shell {
  display: grid;
  gap: 28px;
}.article-header {
  max-width: 900px;
}.article-header h1 {
  margin: 12px 0 18px;
}.article-header p {
  color: var(--muted);
  font-size: 20px;
  max-width: 780px;
}.article-hero {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-cool);
}.article-hero {
  aspect-ratio: 21 / 9;
}.article-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
}.article-aside {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 14px;
}.article-aside-box {
  padding: 18px;
}.article-aside-box h2,
.article-aside-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}.article-aside-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}.article-aside-box a {
  color: var(--muted);
  font-size: 14px;
}.article-body {
  display: grid;
  gap: 22px;
  font-size: 18px;
}.article-body h2 {
  margin-top: 18px;
}.article-body p,
.article-body li {
  color: #313934;
}.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 24px;
}.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}.spec-table th {
  width: 38%;
  color: var(--green-dark);
}.related-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}.page-title {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 6px;
}.page-title h1 {
  font-size: 46px;
}.page-title p {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
}.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}.stream {
  display: grid;
  gap: 16px;
}.stream-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}.stream-item .story-thumb {
  aspect-ratio: 4 / 3;
}.stream-content {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px 18px 18px 0;
}.stream-content p {
  color: var(--muted);
}.sidebar-stack {
  display: grid;
  gap: 16px;
}.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
}.search-form input {
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0 16px;
}.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}.result-list {
  display: grid;
  gap: 14px;
}.result-item {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
}.result-item p {
  color: var(--muted);
}.result-path {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}.result-aside {
  padding: 18px;
}.result-aside h2 {
  font-size: 20px;
  margin-bottom: 14px;
}.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.tag-cloud a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}.service-page {
  background:
    linear-gradient(180deg, rgba(238, 244, 240, 0.76), rgba(246, 248, 245, 0) 420px),
    var(--paper);
}.service-shell {
  gap: 24px;
}.service-title {
  max-width: 860px;
}.service-search {
  max-width: 820px;
}.result-summary,
.empty-state,
.not-found-main,
.not-found-routes {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}.result-summary {
  display: grid;
  gap: 8px;
  border-top: 3px solid var(--green-dark);
  padding: 20px;
}.result-summary h2 {
  color: var(--green-dark);
  font-size: 28px;
}.result-summary p,
.empty-state p,
.not-found-main p {
  color: var(--muted);
}.empty-state {
  display: grid;
  gap: 8px;
  border-top: 3px solid #8a6a44;
  padding: 20px;
}.empty-state h2 {
  color: var(--green-dark);
  font-size: 23px;
}.not-found-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}.not-found-main {
  display: grid;
  gap: 18px;
  border-top: 4px solid var(--green-dark);
  padding: 34px 38px;
}.not-found-code {
  color: #8a6a44;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}.not-found-main h1 {
  color: var(--green-dark);
  font-size: clamp(38px, 5vw, 64px);
}.not-found-main p {
  max-width: 680px;
  font-size: 18px;
}.not-found-routes {
  display: grid;
  gap: 16px;
  padding: 22px;
}.not-found-routes h2 {
  color: var(--green-dark);
  font-size: 24px;
}.service-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}.service-link-grid a {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--green-dark);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}.service-link-grid a:hover {
  border-color: var(--green);
  background: #ffffff;
}@media (max-width: 1100px) {h1 {
    font-size: 42px;
  }.category-layout,
.search-layout,
.not-found-shell {
    grid-template-columns: 1fr;
  }.article-grid {
    grid-template-columns: minmax(0, 1fr);
  }.article-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}@media (max-width: 760px) {body {
    font-size: 15px;
  }.wrap {
    width: min(100% - 24px, var(--max));
  }.topline {
    min-height: 66px;
  }.brand {
    gap: 10px;
  }.brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }.site-header .brand-name {
    font-size: 31px;
  }.site-header .brand-note {
    max-width: 230px;
    font-size: 10px;
    letter-spacing: 0.1em;
    white-space: normal;
  }.header-search {
    display: none;
  }.menu-toggle {
    display: inline-flex;
  }.nav-row {
    display: none;
  }.nav-row.is-open {
    display: block;
  }.site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 0;
  }.site-nav a,
.site-nav a:first-child {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 4px;
  }.page-main {
    padding-top: 22px;
  }h1,
.page-title h1 {
    font-size: 34px;
  }h2 {
    font-size: 25px;
  }.article-header p,
.page-title p {
    font-size: 17px;
  }.related-row,
.article-aside,
.footer-grid {
    grid-template-columns: 1fr;
  }.stream-item {
    grid-template-columns: 1fr;
  }.stream-content {
    padding: 18px;
  }.article-hero {
    aspect-ratio: 4 / 3;
  }.search-form {
    grid-template-columns: 1fr;
  }.result-summary,
.empty-state,
.not-found-main,
.not-found-routes {
    padding: 18px;
  }.not-found-main h1 {
    font-size: 36px;
  }.not-found-main p {
    font-size: 16px;
  }.service-link-grid {
    grid-template-columns: 1fr;
  }
}.media-hub {
  --hub-bg: #f3f7f2;
  --hub-card: rgba(255, 255, 255, 0.82);
  --hub-tint: #e8f0eb;
  --hub-accent: var(--green);
  --hub-accent-dark: var(--green-dark);
  margin-top: 52px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--hub-bg);
}.media-hub--sage {
  --hub-bg: #edf3ec;
  --hub-tint: #e2ecdf;
  --hub-accent: #49745a;
  --hub-accent-dark: #173f34;
}.media-hub--stone {
  --hub-bg: #f2f1ec;
  --hub-tint: #e8e4d8;
  --hub-accent: #8a7046;
  --hub-accent-dark: #3f3422;
}.media-hub--blue {
  --hub-bg: #edf4f6;
  --hub-tint: #dcebf0;
  --hub-accent: #315f73;
  --hub-accent-dark: #143848;
}.media-hub--warm {
  --hub-bg: #f6f2ea;
  --hub-tint: #ece1cf;
  --hub-accent: #9b4a36;
  --hub-accent-dark: #4e2d24;
}.media-hub--teal {
  --hub-bg: #edf4f3;
  --hub-tint: #dcebea;
  --hub-accent: #2f776c;
  --hub-accent-dark: #123b36;
}.media-hub--graphite {
  --hub-bg: #eef1ef;
  --hub-tint: #dde4df;
  --hub-accent: #51635a;
  --hub-accent-dark: #202b26;
}.media-hub--light {
  --hub-bg: #f7f7f3;
  --hub-tint: #ebeee7;
  --hub-accent: #6f7f74;
  --hub-accent-dark: #22312a;
}.media-hub-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}.media-hub-head > div {
  display: grid;
  gap: 0;
}.media-hub-head h2 {
  max-width: 920px;
  color: var(--hub-accent-dark);
  font-size: 40px;
  line-height: 1.04;
}.media-hub-head h2 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}.media-hub-head h2 a:hover,
.media-hub-head h2 a:focus-visible {
  color: var(--hub-accent-dark);
  text-decoration-color: currentColor;
}.media-hub-head p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}.hub-rubrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}.hub-rubrics span,
.hub-rubrics a {
  border: 1px solid rgba(29, 94, 76, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--hub-accent-dark);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}.hub-rubrics span {
  border-color: transparent;
  background: transparent;
  color: var(--hub-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}.media-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.58fr);
  gap: 22px;
  align-items: stretch;
}.media-hub--feature-right .media-hub-grid {
  grid-template-columns: minmax(330px, 0.58fr) minmax(0, 1.04fr);
}.media-hub--feature-right .hub-feature {
  order: 2;
}.media-hub--feature-right .hub-photo-pair {
  order: 1;
}.hub-feature {
  border: 1px solid var(--line);
  background: var(--hub-card);
}.hub-feature {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(290px, 1fr) auto;
  min-height: 560px;
  overflow: hidden;
  border-top: 4px solid var(--hub-accent-dark);
}.media-hub--reverse .hub-feature-photo {
  order: 0;
}.hub-feature-photo {
  min-height: 290px;
  overflow: hidden;
  background: var(--surface-cool);
}.hub-feature-photo img,
.hub-photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.hub-feature-body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 28px 30px 30px;
}.hub-feature-body h3 {
  font-size: 30px;
  line-height: 1.12;
}.hub-feature-body p {
  color: var(--muted);
  font-size: 17px;
}.hub-photo-pair {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
  min-height: 560px;
  height: 100%;
}.hub-photo-pair a {
  position: relative;
  display: flex;
  min-height: 0;
  overflow: hidden;
  align-items: flex-end;
  border: 1px solid var(--line);
  background: var(--green-dark);
  color: #ffffff;
  padding: 18px;
  isolation: isolate;
}.hub-photo-pair a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 24, 20, 0.04), rgba(17, 24, 20, 0.72));
}.hub-photo-pair img {
  position: absolute;
  inset: 0;
  z-index: -2;
}.hub-photo-pair span {
  max-width: 380px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.14;
}.hub-photo-pair a:hover {
  color: #ffffff;
}@media (max-width: 1100px) {.media-hub-head,
.media-hub-grid,
.media-hub--feature-right .media-hub-grid {
    grid-template-columns: 1fr;
  }.media-hub {
    padding: 24px;
  }.media-hub-head p {
    max-width: 760px;
    padding-top: 0;
  }.hub-feature,
.hub-photo-pair {
    grid-column: auto;
    grid-row: auto;
  }.media-hub--feature-right .hub-feature,
.media-hub--feature-right .hub-photo-pair {
    order: initial;
  }.media-hub--reverse .hub-feature-photo {
    order: 0;
  }.hub-photo-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: auto;
  }.hub-photo-pair a {
    min-height: 240px;
  }
}@media (max-width: 760px) {.media-hub-head h2 {
    font-size: 29px;
  }.media-hub {
    margin-top: 36px;
    padding: 18px;
  }.hub-rubrics {
    gap: 8px;
  }.hub-rubrics span,
.hub-rubrics a {
    padding: 7px 10px;
    font-size: 12px;
  }.hub-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }.hub-feature-photo {
    min-height: 240px;
  }.hub-feature-body {
    padding: 20px;
  }.hub-feature-body h3 {
    font-size: 24px;
  }.hub-feature-body p {
    font-size: 16px;
  }.hub-photo-pair {
    grid-template-columns: 1fr;
  }.hub-photo-pair a {
    min-height: 220px;
  }.hub-photo-pair span {
    font-size: 20px;
  }
}/* Softer editorial typography */
h1,
h2,
h3,
.media-hub-head h2,
.hub-feature-body h3,
.page-title h1,
.article-header h1 {
  font-weight: 600;
}h1,
.page-title h1,
.article-header h1 {
  line-height: 1.06;
}h2,
.media-hub-head h2 {
  line-height: 1.08;
}h3,
.hub-feature-body h3 {
  line-height: 1.14;
}.brand-name {
  font-weight: 700;
}.site-nav a,
.menu-toggle,
.text-button,
.hub-rubrics span,
.hub-rubrics a {
  font-weight: 600;
}.eyebrow,
.edition-line,
.hub-photo-pair span,
.meta,
.brand-note {
  font-weight: 600;
}.stream-content h2,
.footer-brand {
  font-weight: 620;
}.media-hub-head p,
.hub-feature-body p,
.article-body,
.article-header p,
.page-title p {
  font-weight: 400;
}/* Modern editorial homepage */
.home-modern {
  padding-top: 0;
}.edition-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}.edition-line span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 7px 10px;
}.hero-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}.hero-article-meta span + span::before {
  content: "/";
  color: var(--line-strong);
  margin-right: 9px;
}.hero-main-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  background: var(--green-dark);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}.hero-main-link:hover {
  background: var(--green);
  color: #ffffff;
}.hero-side {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  align-self: stretch;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}.hero-side-head,
.hero-side a {
  display: grid;
  align-content: center;
  min-height: 104px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: 16px 18px;
}.hero-side a:last-child {
  border-right: 0;
}.hero-side-head h2 {
  color: var(--green-dark);
  font-size: 22px;
}.hero-side a span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}.hero-side a strong {
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.25;
}@media (max-width: 760px) {.edition-line {
    gap: 7px;
  }.hero-side {
    grid-template-columns: 1fr;
  }.hero-side a {
    min-height: auto;
  }
}/* Typography direction: one calm editorial Cyrillic system */
:root {
  --type-hero: 50px;
  --type-section: 36px;
  --type-feature: 28px;
  --type-card: 20px;
  --type-body: 16px;
}html,
body {
  font-family: var(--font-main);
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
}body {
  font-size: var(--type-body);
  line-height: 1.62;
}h1,
h2,
h3,
strong,
a,
button {
  font-synthesis-weight: none;
}h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: 0;
}h1,
.article-header h1,
.page-title h1 {
  font-size: var(--type-hero);
  font-weight: 600;
  line-height: 1.08;
}h2,
.media-hub-head h2 {
  font-size: var(--type-section);
  font-weight: 600;
  line-height: 1.12;
}h3,
.hub-feature-body h3,
.stream-content h2,
.article-aside-box h2,
.article-aside-box h3 {
  font-size: var(--type-feature);
  font-weight: 600;
  line-height: 1.16;
}.brand-name {
  font-weight: 700;
  letter-spacing: 0;
}.brand-note,
.eyebrow,
.edition-line,
.hub-rubrics span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}.site-nav a,
.menu-toggle,
.text-button,
.hub-rubrics a {
  font-weight: 600;
}.media-hub-head p,
.hub-feature-body p,
.article-header p,
.page-title p,
.stream-content p,
.article-body p,
.article-body li {
  font-weight: 400;
  line-height: 1.62;
}.hub-photo-pair span {
  font-weight: 600;
  line-height: 1.18;
}.meta,
.hero-side a strong {
  font-weight: 500;
}.hub-feature-body h3 {
  font-size: 30px;
}.article-body {
  font-size: 17px;
  line-height: 1.68;
}.article-body h2 {
  font-size: 30px;
  font-weight: 600;
}.footer-brand {
  font-weight: 600;
}@media (max-width: 1100px) {:root {
    --type-hero: 44px;
    --type-section: 33px;
    --type-feature: 26px;
  }
}@media (max-width: 760px) {:root {
    --type-hero: 32px;
    --type-section: 27px;
    --type-feature: 23px;
    --type-card: 18px;
  }body {
    font-size: 15px;
    line-height: 1.58;
  }.site-header .brand-name {
    font-size: 30px;
  }h1,
.page-title h1,
.article-header h1 {
    font-size: var(--type-hero);
    line-height: 1.1;
  }.media-hub-head h2 {
    font-size: var(--type-section);
  }.hub-feature-body h3 {
    font-size: var(--type-feature);
  }
}@media (max-width: 1100px) {.hero-side {
    grid-template-columns: 1fr;
  }.hero-side-head,
.hero-side a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }.hero-side a:last-child {
    border-bottom: 0;
  }
}.edition-line span {
  border-color: rgba(29, 94, 76, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: #214538;
}@media (max-width: 760px) {.hero-main-link {
    width: 100%;
    justify-content: center;
  }
}/* Experimental cover hero */
.hero-cover {
  border-top: 1px solid rgba(29, 94, 76, 0.12);
  border-bottom: 1px solid rgba(29, 94, 76, 0.16);
  background: #eef4f0;
  padding: 30px 0 0;
}.hero-cover-inner {
  display: grid;
}.hero-cover-card {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  background: #142219;
  box-shadow: 0 22px 58px rgba(31, 47, 39, 0.16);
  isolation: isolate;
}.hero-cover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 22, 16, 0.62) 0%, rgba(8, 22, 16, 0.46) 36%, rgba(8, 22, 16, 0.1) 66%, rgba(8, 22, 16, 0) 100%),
    linear-gradient(180deg, rgba(8, 22, 16, 0) 0%, rgba(8, 22, 16, 0.18) 100%);
}.hero-cover-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}.hero-cover-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 535px;
  max-width: 720px;
  align-content: center;
  gap: 18px;
  padding: 52px 56px;
  color: #ffffff;
}.hero-cover-tags,
.hero-cover-tags span {
  color: rgba(255, 255, 255, 0.9);
}.hero-cover-tags {
  font-size: 11px;
  letter-spacing: 0.08em;
}.hero-cover-tags span {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 9px;
  backdrop-filter: blur(8px);
}.hero-cover-content h1 {
  max-width: 690px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: clamp(38px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(8, 22, 16, 0.28);
}.hero-cover-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.5;
}.hero-cover-meta {
  color: rgba(255, 255, 255, 0.74);
}.hero-cover-meta span + span::before {
  color: rgba(255, 255, 255, 0.38);
}.hero-cover-link {
  background: #ffffff;
  color: #102419;
}.hero-cover-link:hover {
  background: #f2f0e8;
  color: #102419;
}.hero-side--cover {
  border-top: 0;
  background: rgba(255, 255, 255, 0.92);
}@media (max-width: 1100px) {.hero-cover-card,
.hero-cover-content {
    min-height: 500px;
  }.hero-cover-content {
    max-width: 680px;
    padding: 38px;
  }
}@media (max-width: 760px) {.hero-cover {
    padding-top: 20px;
  }.hero-cover-card,
.hero-cover-content {
    min-height: 540px;
  }.hero-cover-card::before {
    background:
      linear-gradient(180deg, rgba(8, 22, 16, 0.08) 0%, rgba(8, 22, 16, 0.62) 76%, rgba(8, 22, 16, 0.7) 100%),
      linear-gradient(90deg, rgba(8, 22, 16, 0.34) 0%, rgba(8, 22, 16, 0.04) 100%);
  }.hero-cover-photo {
    object-position: 62% center;
  }.hero-cover-content {
    align-content: end;
    gap: 14px;
    padding: 24px;
  }.hero-cover-content h1 {
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }.hero-cover-content p {
    font-size: 17px;
  }
}.mistake-board {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 52px;
  border: 1px solid var(--line);
  border-top: 4px solid #9b4a36;
  background: #f5f2ec;
  padding: 34px 40px 38px;
}.mistake-board-media {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-cool);
}.mistake-board-media img,
.calc-library-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.mistake-board-content {
  display: grid;
  align-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  padding: 36px 42px;
}.mistake-board-content h2,
.calc-library-head h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.08;
}.mistake-board-content > p,
.calc-library-head p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.55;
}.mistake-board-content h2 {
  color: var(--green-dark);
}.calc-library-head h2 {
  color: #f5eee4;
}.mistake-board-content > p {
  color: var(--muted);
}.calc-library-head p {
  color: #d8c9b7;
}.mistake-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}.mistake-list a {
  display: grid;
  min-height: 132px;
  gap: 10px;
  align-content: start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  padding: 18px;
}.mistake-list strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.16;
}.mistake-list em {
  color: #9b4a36;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}.mistake-list a:hover {
  background: #ffffff;
}.section-tile-panel {
  margin-top: 30px;
  border: 1px solid #d4ddd2;
  border-top: 3px solid var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px 24px 26px;
}.section-tile-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.58fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}.section-tile-head > div {
  display: grid;
  gap: 8px;
}.section-tile-head span {
  color: #8d5a3e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.section-tile-head h2 {
  color: var(--green-dark);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}.section-tile-head p {
  max-width: 560px;
  color: #52635b;
  font-size: 16px;
  line-height: 1.56;
}.section-tile-menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}.section-tile-menu a {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 49, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--green-dark);
}.section-tile-menu img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98);
}.section-tile-menu span {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-top: 1px solid rgba(18, 59, 49, 0.14);
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
}.section-tile-menu a:hover {
  color: var(--green-dark);
  border-color: rgba(18, 59, 49, 0.34);
  background: #ffffff;
  transform: translateY(-2px);
}.calc-library {
  margin-top: 48px;
  border: 1px solid #d5ded4;
  border-top: 3px solid #8a6a44;
  background: #f4f6f2;
  color: var(--ink);
  padding: 28px 30px 30px;
}.calc-library-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.62fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}.calc-library-head > div {
  display: grid;
  gap: 12px;
}.calc-library .eyebrow {
  color: #8d5a3e;
}.calc-library-head h2 {
  color: var(--green-dark);
}.calc-library-head p {
  color: #52635b;
}.calc-library-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
}.calc-library-main {
  position: relative;
  display: flex;
  min-height: 310px;
  overflow: hidden;
  align-items: flex-end;
  border: 1px solid rgba(18, 59, 49, 0.16);
  background: #ffffff;
  color: var(--green-dark);
  padding: 14px;
  isolation: isolate;
}.calc-library-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 24, 20, 0.02) 34%, rgba(17, 24, 20, 0.34) 100%);
}.calc-library-main img {
  position: absolute;
  inset: 0;
  z-index: -2;
}.calc-library-main span {
  max-width: 300px;
  border: 1px solid rgba(18, 59, 49, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  padding: 13px 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.16;
}.calc-preview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(18, 59, 49, 0.14);
  background: rgba(255, 255, 255, 0.58);
}.calc-preview-list a {
  display: grid;
  min-height: 96px;
  align-content: start;
  gap: 6px;
  border-right: 1px solid rgba(18, 59, 49, 0.12);
  border-bottom: 1px solid rgba(18, 59, 49, 0.12);
  background: rgba(255, 255, 255, 0.56);
  padding: 14px 16px;
}.calc-preview-list a:nth-child(2n) {
  border-right: 0;
}.calc-preview-list a:nth-last-child(-n + 2) {
  border-bottom: 0;
}.calc-preview-list span {
  color: #9a6b3b;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}.calc-preview-list strong {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.12;
}.calc-preview-list em {
  color: #66736c;
  font-size: 14px;
  font-style: normal;
  line-height: 1.36;
}.calc-preview-list a:hover {
  background: #ffffff;
}.top-media-blocks .video-strip {
  margin-top: 0;
}.section-tile-panel + .top-media-blocks {
  margin-top: 52px;
}.video-strip {
  margin-top: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid #c08a52;
  background: #17352e;
  color: #f6efe4;
  padding: 34px 40px 38px;
}.video-strip-head,
.inspiration-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}.video-strip-head > div,
.inspiration-head > div {
  display: grid;
  gap: 12px;
}.video-strip .eyebrow {
  color: #d9ad76;
}.video-strip-head h2,
.inspiration-head h2 {
  max-width: 820px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.08;
}.video-strip-head p {
  max-width: 560px;
  color: #d7cbbd;
  font-size: 17px;
  line-height: 1.62;
}.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}.video-card {
  position: relative;
  display: flex;
  min-height: 245px;
  overflow: hidden;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #0f251f;
  color: #ffffff;
  isolation: isolate;
}.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 22, 19, 0.02) 20%, rgba(10, 22, 19, 0.86) 100%),
    linear-gradient(90deg, rgba(10, 22, 19, 0.42), rgba(10, 22, 19, 0.04));
}.video-card img,
.inspiration-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}.play-mark {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(18, 59, 49, 0.82);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}.play-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #f8efe3;
  transform: translate(-40%, -50%);
}.video-card-copy {
  display: grid;
  gap: 8px;
  padding: 84px 18px 18px;
}.video-card-copy em,
.inspiration-card em {
  color: #d9ad76;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.video-card-copy strong {
  max-width: 330px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.14;
}.video-card:hover {
  color: #ffffff;
  transform: translateY(-2px);
}.inspiration-gallery {
  margin-top: 52px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-dark);
  background: #f0eee7;
  padding: 34px 40px 38px;
}.inspiration-head h2 {
  color: var(--green-dark);
}.inspiration-head p {
  max-width: 570px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 18px;
}.inspiration-card {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  border: 1px solid rgba(18, 59, 49, 0.16);
  border-radius: var(--radius);
  background: #1b261f;
  color: #ffffff;
  isolation: isolate;
}.inspiration-card--large {
  grid-column: span 2;
  grid-row: span 2;
}.inspiration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 21, 17, 0) 32%, rgba(11, 21, 17, 0.86) 100%),
    linear-gradient(90deg, rgba(11, 21, 17, 0.34), rgba(11, 21, 17, 0.04));
}.inspiration-card span {
  display: grid;
  max-width: 440px;
  gap: 8px;
  padding: 22px;
}.inspiration-card strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.12;
}.inspiration-card--large strong {
  font-size: 31px;
  line-height: 1.08;
}.inspiration-card:hover {
  color: #ffffff;
  transform: translateY(-2px);
}.media-hub {
  margin-top: 52px;
  padding: 34px 40px 38px;
}.media-hub-head {
  gap: 10px;
  margin-bottom: 16px;
}.media-hub-head h2 {
  max-width: 860px;
  font-size: 38px;
  line-height: 1.08;
}.media-hub-head p {
  max-width: 740px;
  font-size: 16px;
  line-height: 1.5;
}.hub-rubrics {
  gap: 8px;
  margin-bottom: 22px;
}.media-hub-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.58fr);
  gap: 22px;
}.media-hub--feature-right .media-hub-grid {
  grid-template-columns: minmax(330px, 0.58fr) minmax(0, 1.04fr);
}.hub-feature {
  grid-template-rows: 350px 1fr;
  min-height: 620px;
}.hub-feature-photo {
  height: 350px;
  min-height: 0;
}.hub-feature-body {
  min-height: 270px;
  gap: 12px;
  padding: 28px 30px 30px;
}.hub-feature-body h3 {
  font-size: 30px;
  line-height: 1.12;
}.hub-feature-body h3 a,
.hub-feature-body p,
.hub-photo-pair span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}.hub-feature-body h3 a {
  -webkit-line-clamp: 3;
}.hub-feature-body p {
  font-size: 16px;
  line-height: 1.52;
  -webkit-line-clamp: 3;
}.hub-photo-pair {
  min-height: 620px;
  gap: 22px;
}.hub-photo-pair a {
  padding: 20px 22px;
}.hub-photo-pair span {
  max-width: 380px;
  font-size: 21px;
  line-height: 1.14;
  -webkit-line-clamp: 3;
}@media (max-width: 1100px) {.mistake-board,
.video-strip-head,
.inspiration-head,
.calc-library-head,
.calc-library-grid {
    grid-template-columns: 1fr;
  }.mistake-board-media,
.calc-library-main {
    min-height: 280px;
  }.calc-preview-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.section-tile-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }.section-tile-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }.video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.video-card {
    min-height: 270px;
  }.inspiration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }.inspiration-card--large {
    grid-column: span 2;
  }.calc-preview-list a {
    min-height: 104px;
    border-right: 1px solid rgba(18, 59, 49, 0.12);
    border-bottom: 1px solid rgba(18, 59, 49, 0.12);
  }.calc-preview-list a:nth-child(2n) {
    border-right: 0;
  }.calc-preview-list a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }.media-hub {
    padding: 24px;
  }.media-hub-grid,
.media-hub--feature-right .media-hub-grid {
    grid-template-columns: 1fr;
  }.hub-feature {
    grid-template-rows: 330px auto;
    min-height: auto;
  }.hub-feature-photo {
    height: 330px;
  }.hub-feature-body {
    min-height: auto;
  }.hub-photo-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }.hub-photo-pair a {
    min-height: 250px;
  }
}@media (max-width: 760px) {html,
body {
    overflow-x: hidden;
  }.topline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }.brand,
.brand-copy,
.hero-side,
.section-tile-panel,
.video-strip,
.inspiration-gallery,
.calc-library,
.media-hub,
.mistake-board {
    min-width: 0;
    max-width: 100%;
  }.header-actions {
    flex: 0 0 auto;
  }.menu-toggle {
    min-height: 38px;
    padding: 8px 10px;
  }.site-header .brand-note {
    max-width: 165px;
  }.edition-line {
    max-width: 100%;
  }.edition-line span {
    max-width: 100%;
    white-space: normal;
  }.video-card,
.inspiration-card,
.calc-library-main,
.hub-feature,
.hub-photo-pair a {
    width: 100%;
    max-width: 100%;
  }.section-tile-panel {
    margin-top: 24px;
    padding: 18px;
  }.section-tile-head {
    margin-bottom: 16px;
  }.section-tile-head h2 {
    font-size: 27px;
  }.section-tile-head p {
    font-size: 15px;
  }.section-tile-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }.section-tile-menu span {
    min-height: 46px;
    font-size: 14px;
    padding: 9px 10px;
  }.section-tile-panel + .top-media-blocks {
    margin-top: 36px;
  }.mistake-board,
.video-strip,
.inspiration-gallery,
.calc-library {
    margin-top: 36px;
  }.calc-library,
.video-strip,
.inspiration-gallery {
    padding: 18px;
  }.mistake-board {
    padding: 18px;
  }.mistake-board-media,
.calc-library-main {
    min-height: 260px;
  }.mistake-board-content {
    padding: 22px;
  }.mistake-board-content h2,
.video-strip-head h2,
.inspiration-head h2,
.calc-library-head h2 {
    font-size: 28px;
  }.mistake-board-content > p,
.video-strip-head p,
.inspiration-head p,
.calc-library-head p {
    font-size: 15px;
  }.mistake-list,
.video-grid,
.inspiration-grid,
.calc-preview-list {
    grid-template-columns: 1fr;
  }.video-card {
    min-height: 255px;
  }.inspiration-grid {
    grid-auto-rows: auto;
  }.inspiration-card,
.inspiration-card--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }.inspiration-card--large strong {
    font-size: 25px;
  }.mistake-list a,
.calc-preview-list a,
.calc-preview-list a:nth-child(2n),
.calc-preview-list a:nth-last-child(-n + 2) {
    grid-column: auto;
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px;
  }.mistake-list a:last-child,
.calc-preview-list a:last-child {
    border-bottom: 0;
  }.calc-library-main span {
    font-size: 23px;
  }.calc-preview-list a,
.calc-preview-list a:nth-child(2n),
.calc-preview-list a:nth-last-child(-n + 2) {
    border-right: 1px solid rgba(18, 59, 49, 0.12);
    border-bottom: 1px solid rgba(18, 59, 49, 0.12);
  }.media-hub {
    margin-top: 34px;
    padding: 18px;
  }.media-hub-head h2 {
    font-size: 27px;
  }.media-hub-head p {
    font-size: 15px;
  }.hub-rubrics {
    margin-bottom: 18px;
  }.hub-feature {
    grid-template-rows: 270px auto;
  }.hub-feature-photo {
    height: 270px;
  }.hub-feature-body {
    padding: 20px;
  }.hub-feature-body h3 {
    font-size: 24px;
  }.hub-feature-body h3 a {
    -webkit-line-clamp: 4;
  }.hub-photo-pair {
    grid-template-columns: 1fr;
  }
}/* Article and category prototypes */
.article-page,
.category-page {
  background:
    linear-gradient(180deg, rgba(238, 244, 240, 0.72), rgba(246, 248, 245, 0) 420px),
    var(--paper);
}.article-header-modern {
  max-width: 1180px;
}.article-page {
  padding-top: 26px;
}.article-page .article-shell {
  gap: 22px;
}.article-page .breadcrumbs {
  margin-bottom: 12px;
}.article-header-modern h1 {
  max-width: none;
  margin: 14px 0 16px;
  font-size: clamp(38px, 3vw, 47px);
  line-height: 1.08;
}.article-header-modern p {
  max-width: none;
  font-size: 19px;
  line-height: 1.55;
}.article-kicker,
.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}.article-kicker span:not(.eyebrow),
.article-meta-line span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
}.article-kicker-modern {
  gap: 8px 12px;
  color: var(--muted);
  font-size: 13px;
}.article-kicker-modern a,
.article-kicker-modern time,
.article-kicker-modern span:not(.eyebrow) {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 13px;
  font-weight: 500;
}.article-kicker-modern a {
  color: var(--green-dark);
  font-weight: 600;
}.article-kicker-modern a:hover {
  color: var(--green);
}.article-kicker-modern a::before,
.article-kicker-modern time::before,
.article-kicker-modern span:not(.eyebrow)::before {
  content: "/";
  color: var(--line-strong);
  margin-right: 12px;
}.article-kicker-modern .eyebrow + a::before,
.article-kicker-modern .eyebrow + time::before,
.article-kicker-modern .eyebrow + span::before {
  content: "";
  margin-right: 0;
}.article-kicker-modern a:first-child::before,
.article-kicker-modern time:first-child::before,
.article-kicker-modern span:not(.eyebrow):first-child::before {
  content: "";
  margin-right: 0;
}.article-meta-line {
  margin-top: 18px;
}.article-hero-modern {
  margin: 0;
  aspect-ratio: 13 / 5;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}.article-hero-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.article-grid-modern {
  grid-template-columns: minmax(0, 900px) 270px;
  gap: 36px;
  justify-content: center;
}.article-grid-modern .article-aside {
  grid-column: 2;
  grid-row: 1;
}.toc-box ol,
.popular-box ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}.toc-box a,
.popular-box a {
  color: var(--green-dark);
}.article-facts dl {
  display: grid;
  gap: 12px;
  margin: 0;
}.article-facts dl div {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}.article-facts dl div:first-child {
  border-top: 0;
  padding-top: 0;
}.article-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}.article-facts dd {
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.35;
}.article-body-modern {
  grid-column: 1;
  grid-row: 1;
  gap: 24px;
}.article-lead {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}.article-summary-card,
.check-panel,
.article-note,
.cost-layers,
.article-inline-photo,
.category-hero,
.category-feature,
.stream-head,
.pagination {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}.article-summary-card,
.check-panel {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
}.article-summary-card {
  border-top: 4px solid var(--green-dark);
  background: #eef4f0;
}.article-summary-card h2,
.check-panel h3 {
  color: var(--green-dark);
  font-size: 22px;
}.check-panel {
  border-top: 4px solid #8a6a44;
}.check-panel--accent {
  background: #f4f0e8;
}.article-note {
  display: grid;
  gap: 8px;
  border-left: 4px solid var(--green);
  padding: 20px 22px;
}.article-note strong {
  color: var(--green-dark);
}.article-note--warm {
  border-left-color: #9b4a36;
  background: #f8f1e9;
}.article-compare-table thead th {
  background: #eef4f0;
}.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface);
}.table-scroll .spec-table {
  border: 0;
  min-width: 720px;
}.article-inline-photo {
  margin: 0;
  overflow: hidden;
}.article-inline-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}.cost-layers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}.cost-layers div {
  display: grid;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding: 18px;
}.cost-layers div:last-child {
  border-right: 0;
}.cost-layers span {
  color: #9a6b3b;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}.cost-layers strong {
  color: var(--green-dark);
  font-size: 18px;
}.cost-layers em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}.article-related {
  display: grid;
  gap: 18px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-dark);
  background: #f7f8f3;
  padding: 24px;
}.article-related-head {
  display: grid;
  gap: 8px;
  max-width: 620px;
}.article-related-head h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1.12;
}.article-related-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}.article-related .related-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}.related-card {
  display: grid;
  grid-template-rows: 170px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 74, 57, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 74, 57, 0.36);
  box-shadow: 0 16px 34px rgba(27, 45, 38, 0.1);
}.related-card-media {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #e7ece6;
}.related-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}.related-card:hover .related-card-media img {
  transform: scale(1.035);
}.related-card-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  padding: 16px;
}.related-card-copy h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.2;
}.related-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.34fr);
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green-dark);
  background: rgba(255, 255, 255, 0.68);
  padding: 20px 22px;
}.category-hero .page-title {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
}.category-hero .page-title h1 {
  max-width: 760px;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.08;
}.category-hero .page-title p {
  max-width: 760px;
  font-size: 15.5px;
  line-height: 1.45;
}.category-hero-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 15px 16px;
}.category-hero-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.category-hero-card p,
.stream-head p {
  color: var(--muted);
}.category-hero-card p {
  font-size: 14px;
  line-height: 1.42;
}.category-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  margin-top: -10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  padding: 13px 16px;
}.category-subnav a {
  border-bottom: 2px solid transparent;
  color: var(--muted);
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
}.category-subnav a.active,
.category-subnav a:hover {
  border-color: var(--green);
  color: var(--green-dark);
}.category-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}.category-feature-photo {
  min-height: 270px;
  background: var(--surface-cool);
}.category-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.category-feature-copy {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 26px 30px;
}.category-feature-copy h2 {
  color: var(--green-dark);
  font-size: 29px;
  line-height: 1.1;
}.category-feature-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}.stream-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-top: 3px solid #8a6a44;
  background: rgba(255, 255, 255, 0.62);
  padding: 17px 20px;
}.stream-head h2 {
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.12;
}.stream-head p {
  font-size: 15px;
  line-height: 1.5;
}.stream-item {
  border-radius: 0;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}.stream-item:hover {
  border-color: rgba(17, 85, 70, 0.34);
  box-shadow: 0 14px 34px rgba(16, 42, 34, 0.08);
  transform: translateY(-1px);
}.stream-content h2 {
  font-size: 24px;
}.stream-content .meta {
  margin-top: 2px;
}.category-layout .popular-box h2 {
  font-size: 25px;
  line-height: 1.12;
  margin-bottom: 16px;
}.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 16px;
}.pagination a {
  min-width: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--green-dark);
  padding: 9px 12px;
  text-align: center;
  font-weight: 600;
}.pagination a.active,
.pagination a:hover {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}@media (max-width: 1100px) {.article-grid-modern,
.category-hero,
.category-feature {
    grid-template-columns: 1fr;
  }.cost-layers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.article-grid-modern .article-aside,
.article-body-modern {
    grid-column: auto;
    grid-row: auto;
  }.article-related .related-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }.category-hero-card {
    border-left: 0;
  }.stream-head {
    grid-template-columns: 1fr;
  }
}@media (max-width: 760px) {.article-kicker,
.article-meta-line {
    gap: 7px;
  }.article-header-modern h1 {
    font-size: 34px;
  }.article-lead {
    font-size: 19px;
  }.article-summary-card,
.check-panel,
.article-related,
.category-hero,
.category-feature-copy,
.stream-head {
    padding: 18px;
  }.article-related-head h2 {
    font-size: 24px;
  }.article-related .related-row {
    grid-template-columns: 1fr;
  }.related-card {
    grid-template-rows: minmax(190px, auto) auto;
  }.related-card-copy {
    padding: 14px;
  }.related-card-copy h3 {
    font-size: 18px;
  }.related-card-copy p {
    font-size: 13px;
  }.category-hero {
    gap: 12px;
    padding: 16px 18px;
  }.category-subnav {
    gap: 8px 14px;
    margin-top: -8px;
    padding: 12px 14px;
  }.category-hero .page-title h1 {
    font-size: 30px;
  }.category-hero .page-title p {
    font-size: 15px;
    line-height: 1.42;
  }.category-hero-card {
    gap: 5px;
    padding: 13px 14px;
  }.category-hero-card p {
    font-size: 13px;
    line-height: 1.4;
  }.cost-layers {
    grid-template-columns: 1fr;
  }.cost-layers div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }.cost-layers div:last-child {
    border-bottom: 0;
  }.category-feature-copy h2 {
    font-size: 27px;
  }.category-feature-photo {
    min-height: 230px;
  }

}
@media (max-width: 760px) {
  .wrap {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .topline {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 82px);
  }

  .header-actions,
  .menu-toggle {
    flex: 0 0 auto;
  }

  .menu-toggle {
    max-width: 74px;
  }

  .breadcrumbs,
  .hero-cover-inner,
  .hero-cover-card,
  .hero-cover-content,
  .hero-side,
  .hero-side a,
  .section-tile-head,
  .section-tile-head p,
  .category-hero,
  .category-hero .page-title,
  .category-hero-card,
  .category-subnav,
  .category-feature,
  .category-feature-copy,
  .stream-head,
  .stream-item,
  .stream-content,
  .article-header-modern,
  .article-body-modern,
  .article-aside,
  .article-aside-box,
  .article-related,
  .related-card,
  .service-title,
  .service-search,
  .result-summary,
  .result-item,
  .empty-state,
  .not-found-main,
  .not-found-routes,
  .footer-grid {
    min-width: 0;
    max-width: 100%;
  }

  .breadcrumbs,
  .hero-cover-content h1,
  .hero-cover-content p,
  .hero-side a strong,
  .section-tile-head p,
  .category-hero .page-title h1,
  .category-hero .page-title p,
  .category-hero-card p,
  .category-feature-copy h2,
  .category-feature-copy p,
  .stream-content h2,
  .stream-content p,
  .article-header-modern h1,
  .article-lead,
  .result-summary h2,
  .result-summary p,
  .result-item h2,
  .result-item p,
  .not-found-main h1,
  .not-found-main p,
  .footer p {
    overflow-wrap: anywhere;
  }

  .hero-cover-card,
  .hero-cover-content {
    min-height: 500px;
  }

  .hero-cover-content {
    padding: 22px;
  }

  .hero-cover-content h1 {
    font-size: clamp(29px, 8vw, 32px);
  }

  .hero-cover-content p {
    font-size: 16px;
  }

  .hero-cover-link {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .article-header-modern h1,
  .service-title h1,
  .not-found-main h1 {
    font-size: clamp(30px, 8vw, 34px);
  }

  .category-hero .page-title h1,
  .result-summary h2,
  .stream-content h2 {
    font-size: 28px;
  }

  .footer {
    overflow: hidden;
  }
}

/* Component system polish */
.section-tile-panel,
.media-hub,
.video-strip,
.inspiration-gallery,
.calc-library,
.mistake-board,
.article-summary-card,
.check-panel,
.article-note,
.article-inline-photo,
.article-related,
.category-hero,
.category-feature,
.stream-head,
.stream-item,
.result-summary,
.result-item,
.empty-state,
.not-found-main,
.not-found-routes,
.article-aside-box,
.result-aside,
.popular-box,
.related-card {
  border-color: var(--component-border);
}

.stream-item,
.result-item,
.related-card,
.article-aside-box,
.result-aside,
.popular-box,
.not-found-routes,
.service-link-grid a {
  background: var(--component-bg-strong);
}

.stream-item,
.result-item,
.related-card,
.service-link-grid a,
.section-tile-menu a,
.hub-rubrics a,
.category-subnav a,
.pagination a,
.tag-cloud a,
.hero-main-link,
.text-button,
.header-search-submit {
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.stream-item:hover,
.result-item:hover,
.related-card:hover,
.service-link-grid a:hover {
  border-color: var(--component-border-hover);
  box-shadow: var(--shadow-hover);
}

.stream-item:hover,
.result-item:hover,
.related-card:hover {
  transform: translateY(-1px);
}

.result-item h2,
.stream-content h2,
.related-card-copy h3,
.category-feature-copy h2,
.hub-feature-body h3 {
  color: var(--green-dark);
}

.result-item p,
.stream-content p,
.related-card-copy p,
.category-feature-copy p,
.hub-feature-body p,
.article-related-head p,
.category-hero-card p {
  color: var(--muted);
}

.eyebrow,
.result-path,
.category-hero-card span,
.hero-side a span,
.video-card-copy em,
.inspiration-card em {
  letter-spacing: 0.1em;
}

.search-form input,
.header-search,
.tag-cloud a,
.pagination a,
.service-link-grid a,
.category-subnav,
.category-hero-card {
  border-color: var(--component-border);
}

.search-form input:focus,
.header-search-input:focus,
.header-search:focus-within {
  outline: 0;
}

.search-form input:focus,
.header-search:focus-within,
.menu-toggle:focus-visible,
.text-button:focus-visible,
.header-search-submit:focus-visible,
.hero-main-link:focus-visible,
.site-nav a:focus-visible,
.section-tile-menu a:focus-visible,
.hub-rubrics a:focus-visible,
.category-subnav a:focus-visible,
.pagination a:focus-visible,
.tag-cloud a:focus-visible,
.service-link-grid a:focus-visible,
.stream-item:focus-visible,
.result-item:focus-visible,
.related-card:focus-visible {
  outline: 0;
  border-color: var(--green);
  box-shadow: var(--focus-ring);
}

.section-tile-menu a:hover,
.hub-rubrics a:hover,
.tag-cloud a:hover {
  border-color: var(--component-border-hover);
  background: #ffffff;
  color: var(--green-dark);
}

.category-subnav a:focus-visible {
  border-bottom-color: var(--green);
}

.pagination a.active,
.pagination a:hover,
.pagination a:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}

.stream-item {
  border-radius: var(--radius);
}

.stream-item .story-thumb {
  border-radius: 0;
}

.article-summary-card,
.article-related,
.category-hero,
.result-summary,
.not-found-main {
  border-top-color: var(--green-dark);
}

.check-panel,
.stream-head,
.empty-state {
  border-top-color: #8a6a44;
}

.article-note {
  border-left-color: var(--green);
}

.article-note--warm {
  border-left-color: #9b4a36;
}

.hero-cover-content h1 a {
  color: inherit;
  text-decoration: none;
}

.hero-cover-content h1 a:hover {
  color: inherit;
}

.hero-cover-content h1 a:focus-visible {
  outline: 0;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
}

/* WordPress theme adapters */
.site-nav-list,
.footer-menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-list li,
.footer-menu li {
  display: contents;
}

.site-nav .current-menu-item > a,
.site-nav .current-category-ancestor > a,
.site-nav .current-post-ancestor > a {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
}

.navigation.pagination {
  grid-column: 1 / -1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.page-numbers.current {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.article-body-modern h2,
.article-body-modern h3 {
  scroll-margin-top: 96px;
}

.toc-level-3 {
  margin-left: 12px;
  font-size: 0.94em;
}

.article-body-modern .wp-block-image,
.article-body-modern figure {
  margin-right: 0;
  margin-left: 0;
}

.article-body-modern img {
  max-width: 100%;
  height: auto;
}

.article-body-modern .alignwide,
.article-body-modern .alignfull {
  max-width: 100%;
}

.result-list .navigation.pagination {
  margin-top: 0;
}

.result-item .meta {
  margin-top: 2px;
}

.not-found-main .search-form {
  margin-top: 22px;
}

.not-found-routes ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-found-routes li {
  margin: 0;
}

@media (max-width: 760px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  .page-main,
  .home-modern,
  .service-page,
  .category-page,
  .article-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-cover,
  .hero-cover-inner,
  .hero-cover-card,
  .hero-cover-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-cover {
    overflow: hidden;
  }

  .hero-cover-card,
  .hero-cover-content {
    min-height: 480px;
  }

  .hero-cover-content {
    align-content: end;
    padding: 22px;
  }

  .hero-cover-content h1,
  .hero-cover-content h1 a {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-cover-content h1 {
    font-size: 27px;
    line-height: 1.14;
  }

  .hero-cover-content p,
  .hero-cover-meta,
  .hero-side a strong,
  .category-hero .page-title h1,
  .category-hero .page-title p,
  .article-header-modern h1,
  .article-lead,
  .service-title h1,
  .service-title p,
  .result-summary h2,
  .result-summary p,
  .result-item h2,
  .result-item p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .category-hero,
  .article-grid-modern,
  .search-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .category-hero .page-title h1,
  .article-header-modern h1,
  .service-title h1 {
    font-size: 29px;
    line-height: 1.16;
  }

  .category-hero-card {
    padding: 13px;
  }

  .article-header-modern,
  .service-title,
  .result-summary,
  .result-item {
    min-width: 0;
  }

  .article-page {
    padding-top: 22px;
  }

  .article-page .breadcrumbs {
    margin-bottom: 8px;
  }

  .article-kicker-modern {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .article-kicker-modern a,
  .article-kicker-modern time,
  .article-kicker-modern span:not(.eyebrow) {
    display: block;
    max-width: 100%;
    font-size: 12px;
    overflow-wrap: break-word;
  }

  .article-kicker-modern a::before,
  .article-kicker-modern time::before,
  .article-kicker-modern span:not(.eyebrow)::before {
    content: "";
    margin-right: 0;
  }

  .article-header-modern p {
    font-size: 17px;
    line-height: 1.5;
  }

  .article-hero-modern {
    aspect-ratio: 4 / 3;
  }

  .hero-side--cover {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-search {
    width: 100%;
  }
}
