:root {
  color-scheme: light;
  --site-max: 1280px;
  --page-pad: 24px;
  --green: #123f31;
  --green-2: #1f4d3a;
  --bg: #f4f7f6;
  --card: #ffffff;
  --border: #dfe7e3;
  --text: #0f172a;
  --muted: #475569;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --color-green: #123f31;
  --color-green-2: #1f4d3a;
  --color-green-3: #0f5138;
  --color-bg: var(--bg);
  --color-card: #ffffff;
  --color-border: var(--border);
  --color-text: var(--text);
  --color-muted: var(--muted);
  --color-muted-2: #64748b;
  --color-panel: #eef3f1;
  --radius-card: 16px;
  --shadow-card: 0 14px 34px rgba(15, 23, 42, 0.055);
  --shadow-hover: 0 18px 44px rgba(15, 23, 42, 0.085);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  color: var(--color-text);
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--color-green);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.12;
}

h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

p {
  margin-bottom: 16px;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(31, 77, 58, 0.28);
  outline-offset: 3px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 22px;
  height: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  width: 160px;
  height: auto;
}

.desktop-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.desktop-nav a {
  padding: 10px 0;
  border-radius: 10px;
  color: #243246;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--color-green-2);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-green-2);
}

.icon-button:hover,
.mobile-menu summary:hover {
  border-color: #b7cfc4;
  background: #f7fbf9;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: 54px;
  width: min(360px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-hover);
}

.mobile-menu-panel nav {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.mobile-menu-panel nav a {
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--color-text);
  font-weight: 750;
}

.mobile-menu-panel nav a:hover {
  background: #edf5f1;
}

.hero-search,
.mobile-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 620px;
  min-height: 58px;
  border: 1px solid #d8e2dd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mobile-search {
  min-height: 48px;
  box-shadow: none;
}

.hero-search input,
.mobile-search input,
.signup-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--color-text);
  outline: 0;
}

.hero-search input {
  padding: 0 18px;
  font-size: 16px;
}

.mobile-search input {
  padding: 0 12px;
}

.hero-search button,
.mobile-search button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 5px;
  border: 0;
  border-radius: 9px;
  background: var(--color-green-3);
  color: #fff;
  font-weight: 800;
}

.hero-search button {
  min-width: 112px;
  padding: 0 18px;
}

.mobile-search button {
  min-width: 92px;
  padding: 0 12px;
}

.hero-section {
  padding: 54px 0 72px;
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 6vw, 86px);
  min-height: 560px;
}

.hero-copy h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(58px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-green-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #334155;
  font-size: 18px;
  line-height: 1.6;
}

.quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 18px;
}

.quick-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: #223044;
  font-size: 13px;
  font-weight: 750;
}

.quick-chips a:hover {
  border-color: #b7cfc4;
  background: #f7fbf9;
  color: var(--color-green-2);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center end;
  margin: 0;
}

.hero-visual img {
  width: clamp(540px, 44vw, 600px);
  height: auto;
  margin-left: auto;
  object-fit: contain;
}

.content-section {
  padding: 72px 0;
}

.home-section {
  background: var(--color-bg);
}

.content-section + .content-section {
  border-top: 1px solid rgba(223, 231, 227, 0.85);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 17px;
}

.section-heading h2 {
  font-size: 30px;
}

.section-action {
  flex: 0 0 auto;
  margin-bottom: 3px;
  color: var(--color-green-2);
  font-size: 14px;
  font-weight: 850;
}

.section-control-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.scroller-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroller-button {
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.scroller-button .icon {
  width: 20px;
  height: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.editorial-card,
.bullet-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.editorial-card {
  min-height: 205px;
  padding: 24px;
}

.editorial-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--color-green-2);
}

.editorial-icon .icon {
  width: 44px;
  height: 44px;
  stroke-width: 1.75;
}

.editorial-card h3 {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 18px;
}

.editorial-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.two-column-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bullet-panel {
  padding: 24px;
}

.bullet-panel h3 {
  margin-bottom: 16px;
  color: var(--color-green);
}

.bullet-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-panel li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.bullet-panel .icon {
  width: 20px;
  height: 20px;
  color: var(--color-green-2);
  stroke-width: 2;
}

.card-grid-8 {
  gap: 22px;
}

.home-card-grid {
  gap: 22px;
}

.card,
.info-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.guide-grid.home-card-grid,
.category-grid.home-card-grid,
.learn-grid.home-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid .info-card {
  min-height: 180px;
  padding: 24px;
}

.learn-grid .info-card {
  min-height: 200px;
}

.card:hover,
.info-card:hover,
.brand-card:hover,
.finder-card:hover {
  transform: translateY(-3px);
  border-color: #b7cfc4;
  box-shadow: var(--shadow-hover);
}

.card-icon {
  display: grid;
  min-height: 56px;
  place-items: start;
  color: #1f4d3a;
}

.card-icon .icon,
.finder-icon .icon {
  width: 52px;
  height: 52px;
  color: #1f4d3a;
  stroke-width: 1.75;
}

.info-card.has-card-media {
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.card-media {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--color-border);
  background: #f8faf9;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-card.has-card-media .card-title {
  padding: 20px 22px 0;
}

.info-card.has-card-media .card-description {
  display: -webkit-box;
  padding: 10px 22px 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.info-card.has-card-media .card-link {
  padding: 16px 22px 22px;
}

.product-preview-section {
  padding-top: 36px;
  padding-bottom: 38px;
  background: #f3f7f5;
}

.ported-article-hero + .product-preview-section {
  border-top: 1px solid rgba(223, 231, 227, 0.9);
}

.product-preview-section + .ported-main-section {
  padding-top: 0;
}

.product-preview-heading {
  margin-bottom: 18px;
}

.card-scroller {
  display: grid;
  grid-auto-columns: minmax(252px, calc((100% - 66px) / 4));
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.card-scroller .info-card {
  min-height: 360px;
  scroll-snap-align: start;
}

.card-title {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.22;
}

.card-description {
  color: var(--color-muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.card-link {
  margin-top: auto;
  color: var(--color-green-2);
  font-size: 13px;
  font-weight: 850;
}

.category-grid .card-icon .icon {
  width: 46px;
  height: 46px;
}

.category-grid .card-title,
.learn-grid .card-title {
  font-size: 17px;
}

.category-grid .card-description,
.learn-grid .card-description {
  font-size: 14px;
}

.learn-grid .card-icon .icon {
  width: 48px;
  height: 48px;
}

.finder-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--color-bg);
  border-top: 0;
}

.finder-panel {
  padding: 34px;
  border: 1px solid #dbe8e2;
  border-radius: 20px;
  background: linear-gradient(180deg, #f2f7f5 0%, #eaf2ee 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.finder-card {
  display: grid;
  min-height: 125px;
  place-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  color: var(--color-green-2);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.finder-icon .icon {
  width: 48px;
  height: 48px;
}

.finder-title {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.1;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.brand-card {
  display: grid;
  min-height: 140px;
  align-content: start;
  align-items: start;
  gap: 11px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.brand-logo {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 2px;
}

.brand-logo img {
  max-width: 150px;
  max-height: 38px;
  object-fit: contain;
}

.brand-logo-tudor span {
  color: #b8202d;
}

.brand-name {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 850;
}

.brand-description {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  background: #f8faf9;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-green-2);
}

.trust-icon .icon {
  width: 34px;
  height: 34px;
}

.trust-item h2 {
  margin-bottom: 3px;
  font-size: 16px;
}

.trust-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.page-hero {
  padding: 70px 0 54px;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.compact-hero h1 {
  margin-bottom: 12px;
}

.compact-hero p {
  max-width: 760px;
  color: #334155;
  font-size: 18px;
}

.category-hero .page-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #edf5f1;
  color: var(--color-green-2);
}

.page-icon .icon {
  width: 34px;
  height: 34px;
}

.brand-heading-lockup {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-logo.large {
  width: 180px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.brand-logo.large img {
  max-width: 138px;
  max-height: 54px;
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--color-muted-2);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #94a3b8;
}

.breadcrumbs a {
  color: var(--color-green-2);
  font-weight: 750;
}

.muted-section {
  background: var(--color-panel);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 38px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-text);
}

.check-list .icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--color-green-2);
}

.article-hero {
  background: linear-gradient(180deg, #fff 0%, #f8faf9 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: start;
}

.article-hero-grid > * {
  min-width: 0;
}

.article-hero h1,
.article-hero p,
.short-answer-box,
.short-answer-box p {
  overflow-wrap: anywhere;
}

.updated-date {
  color: var(--color-muted-2);
  font-size: 14px;
}

.short-answer-box {
  padding: 24px;
  border: 1px solid rgba(31, 77, 58, 0.22);
  border-radius: var(--radius-card);
  background: #edf5f1;
}

.box-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-green-2);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.short-answer-box p {
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  padding-top: 58px;
  padding-bottom: 76px;
}

.guide-layout {
  grid-template-columns: minmax(0, 820px) minmax(300px, 320px);
  align-items: start;
  justify-content: center;
}

.guide-content-card {
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
}

.guide-content-card .article-section:first-child h2 {
  margin-top: 0;
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.toc h2 {
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.toc nav {
  display: grid;
  gap: 8px;
}

.toc a {
  color: var(--color-muted);
  font-size: 14px;
}

.toc a:hover {
  color: var(--color-green-2);
}

.article-content {
  min-width: 0;
  color: #243044;
  font-size: 18px;
  line-height: 1.75;
}

.article-content p {
  margin: 0 0 1.35em;
}

.article-content h1,
.article-content h2 {
  margin: 64px 0 18px;
  color: #123f31;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.article-content h1:first-child,
.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 42px 0 14px;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.25;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4em;
  margin: 0 0 1.5em;
}

.article-content li {
  margin-bottom: 0.45em;
}

.article-content a {
  color: var(--color-green-2);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content blockquote {
  padding: 20px 24px;
  margin: 34px 0;
  border-left: 4px solid #1f4d3a;
  border-radius: 12px;
  background: #eef5f2;
  color: #183b30;
  font-size: 17px;
  line-height: 1.65;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content figure,
.article-content .wp-caption {
  width: auto !important;
  max-width: 100% !important;
  margin: 34px auto;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.article-content figure img,
.article-content .wp-caption img {
  margin: 0 auto;
}

.article-content figcaption,
.article-content .wp-caption-text {
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.article-content table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

.article-content table th,
.article-content table td {
  padding: 12px;
  border: 1px solid #dfe7e3;
  text-align: left;
  vertical-align: top;
}

.article-content table th {
  background: #eef5f2;
  color: #123f31;
  font-weight: 850;
}

.article-content table img {
  max-width: 110px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: none;
}

.article-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 32px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #dfe7e3;
  border-radius: 16px;
  background: #fff;
}

.article-table-wrap table {
  margin: 0;
  border: 0;
}

.article-card {
  border: 1px solid #dfe7e3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
}

.news-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 16px;
  background: #09110f;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.news-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-grid .card-media,
.news-section .card-media {
  padding: 0;
  background: #09110f;
}

.news-grid .card-media img,
.news-section .card-media img {
  object-fit: cover;
}

.news-summary-section {
  padding: 22px;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 14px;
  background: #edf5f1;
}

.ported-article-hero {
  padding: 54px 0 24px;
  background: #f3f7f5;
}

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

.ported-article-hero h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.98;
}

.ported-hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: #334155;
  font-size: 18px;
  line-height: 1.65;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.article-meta-row .updated-date {
  margin: 0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #cfe0d8;
  border-radius: 999px;
  background: #fff;
  color: #1f4d3a;
  font-size: 13px;
  font-weight: 800;
}

.ported-main-section {
  padding: 0 0 76px;
  background: #f3f7f5;
}

.ported-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(300px, 320px);
  gap: 48px;
  align-items: start;
  justify-content: center;
}

.ported-article {
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
}

.ported-hero-image {
  width: 100%;
  height: auto;
  max-height: 540px;
  margin-bottom: 32px;
  border-radius: 14px;
  object-fit: contain;
  background: #f8faf9;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
}

.article-info-box {
  padding: 20px 24px;
  margin: 0 0 36px;
  border: 1px solid rgba(31, 77, 58, 0.18);
  border-radius: 14px;
  background: #eef5f2;
}

.article-info-box p {
  max-width: 680px;
  margin: 0;
  color: #243044;
  font-size: 17px;
  line-height: 1.65;
}

.ported-content {
  overflow-wrap: break-word;
}

.ported-content .alignright,
.ported-content .alignleft,
.ported-content .aligncenter,
.ported-content .alignnone {
  float: none;
  margin-right: auto;
  margin-left: auto;
}

.ported-content .aligncenter img,
.ported-content .alignnone img {
  margin-right: auto;
  margin-left: auto;
}

.ported-content .btn-wrap {
  margin: 10px 0 !important;
}

.ported-content .btn,
.ported-content .btn-default {
  display: inline-flex !important;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--color-green-2);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.ported-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.sidebar-card {
  padding: 20px;
  border: 1px solid #dfe7e3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  margin-bottom: 18px;
}

.sidebar-card h2,
.article-toc-card summary {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.article-toc-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}

.article-toc-card summary::-webkit-details-marker {
  display: none;
}

.article-toc-card summary::after {
  content: "+";
  color: var(--color-green-2);
  font-size: 20px;
  line-height: 1;
}

.article-toc-card[open] summary::after {
  content: "-";
}

.sidebar-card nav {
  display: grid;
  gap: 8px;
}

.sidebar-card nav a {
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.sidebar-card nav a:hover {
  color: var(--color-green-2);
}

.quick-summary-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-summary-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}

.quick-summary-card .icon {
  width: 20px;
  height: 20px;
  color: var(--color-green-2);
  stroke-width: 2;
}

.brand-recommend-card nav {
  grid-template-columns: 1fr;
  gap: 10px;
}

.brand-recommend-card a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  border: 1px solid #dfe7e3;
  border-radius: 12px;
  background: #fff;
}

.sidebar-brand-logo {
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: flex-start;
}

.sidebar-brand-logo img {
  max-width: 142px;
  max-height: 30px;
  object-fit: contain;
}

.sidebar-brand-logo span {
  color: var(--color-green-2);
  font-size: 17px;
  font-weight: 900;
}

.sidebar-cta-card {
  background: #123f31;
  color: #fff;
}

.sidebar-cta-card h2 {
  color: #fff;
}

.sidebar-cta-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.sidebar-cta-card .box-label {
  color: #b7ddcb;
}

.sidebar-cta-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #123f31;
  font-size: 14px;
  font-weight: 850;
}

.article-section {
  padding: 0 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}

.article-section h2 {
  margin-bottom: 16px;
}

.article-section h3 {
  margin-top: 26px;
}

.article-section p,
.article-section li {
  max-width: 780px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #f8faf9;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 850;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table a {
  color: var(--color-green-2);
  font-weight: 850;
}

.faq-section details {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
}

.faq-section details + details {
  margin-top: 12px;
}

.faq-section summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--color-text);
  font-weight: 800;
}

.faq-section details p {
  padding: 0 18px 18px;
  margin: 0;
}

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

.related-grid a,
.empty-state {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
}

.related-grid a {
  color: var(--color-green-2);
  font-weight: 800;
}

.empty-state {
  color: var(--color-muted);
}

.search-page-form {
  max-width: 760px;
  margin-top: 24px;
}

.narrow-content {
  max-width: 820px;
}

.site-footer {
  padding: 56px 0 28px;
  background: #0b3d2e;
  color: #dbece4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr 1.4fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand img {
  width: 160px;
  height: auto;
}

.footer-about p {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-newsletter {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter p {
  margin-bottom: 16px;
  font-size: 14px;
}

.signup-form div {
  display: flex;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.signup-form input {
  padding: 0 12px;
  color: #fff;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.signup-form button {
  padding: 0 12px;
  background: #ffffff;
  color: #0b3a2c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1180px) {
  .guide-grid.home-card-grid,
  .category-grid.home-card-grid,
  .learn-grid.home-card-grid,
  .card-grid-8,
  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .desktop-nav {
    gap: 20px;
  }

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

  .footer-about,
  .footer-newsletter {
    grid-column: span 3;
  }

  .ported-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    gap: 44px;
    min-height: 500px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 5vw, 58px);
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    width: min(100%, 520px);
  }

  .ported-layout {
    grid-template-columns: 1fr;
  }

  .ported-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .guide-grid.home-card-grid,
  .category-grid.home-card-grid,
  .learn-grid.home-card-grid,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .article-hero-grid,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .toc {
    position: static;
  }

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

@media (max-width: 860px) {
  .header-inner {
    min-height: 64px;
  }

  .brand-logo-img {
    width: 135px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

}

@media (max-width: 760px) {
  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .brand-logo-img {
    width: 135px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
  }

  h2 {
    font-size: 23px;
    line-height: 1.15;
  }

  .category-hero h1 {
    font-size: clamp(31px, 8.7vw, 38px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-section {
    padding: 38px 0 44px;
  }

  .content-section {
    padding: 44px 0;
  }

  .finder-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .page-hero {
    padding: 48px 0 40px;
  }

  .page-hero .container,
  .compact-hero h1,
  .compact-hero p {
    min-width: 0;
    max-width: 100%;
  }

  .compact-hero p {
    overflow-wrap: break-word;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 10vw, 42px);
    line-height: 0.98;
  }

  .hero-lead,
  .compact-hero p {
    font-size: 17px;
  }

  .hero-search {
    display: flex;
    min-height: 54px;
    max-width: none;
    padding: 0;
  }

  .hero-search input {
    min-height: 52px;
    padding: 0 12px;
  }

  .hero-search button {
    min-width: 76px;
    min-height: 44px;
    margin: 5px;
    padding: 0 12px;
  }

  .quick-chips {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .quick-chips a {
    min-height: 32px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 0;
    place-items: center;
  }

  .hero-visual img {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
    gap: 8px;
  }

  .finder-panel {
    padding: 22px;
  }

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

  .info-card {
    min-height: 190px;
    padding: 22px;
  }

  .card-icon .icon {
    width: 46px;
    height: 46px;
  }

  .finder-card {
    min-height: 118px;
    padding: 16px 10px;
  }

  .finder-icon .icon {
    width: 46px;
    height: 46px;
  }

  .brand-heading-lockup {
    display: grid;
  }

  .brand-logo.large {
    width: 100%;
  }

  .toc nav {
    grid-template-columns: 1fr;
  }

  .article-layout {
    padding-top: 38px;
    padding-bottom: 54px;
  }

  .article-hero-grid,
  .article-layout,
  .guide-layout,
  .guide-content-card,
  .short-answer-box,
  .ported-sidebar {
    min-width: 0;
    max-width: 100%;
  }

  .article-hero h1,
  .article-content h1,
  .article-content h2,
  .sidebar-card h2,
  .sidebar-card a,
  .sidebar-card p,
  .sidebar-card li {
    overflow-wrap: anywhere;
  }

  .article-container {
    width: min(1220px, calc(100% - 32px));
  }

  .ported-article-hero {
    padding: 42px 0 22px;
  }

  .ported-article-hero h1 {
    font-size: clamp(38px, 10vw, 42px);
    line-height: 1;
  }

  .ported-hero-lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .ported-main-section {
    padding-bottom: 48px;
  }

  .ported-article {
    overflow: visible;
    padding: 22px;
  }

  .ported-hero-image {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 14px;
  }

  .article-info-box {
    padding: 18px;
    margin-bottom: 28px;
  }

  .article-content {
    font-size: 17px;
    line-height: 1.72;
  }

  .article-content h1,
  .article-content h2 {
    margin-top: 46px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .article-content h3 {
    margin-top: 34px;
    font-size: 22px;
  }

  .article-content img {
    margin: 24px auto;
    border-radius: 14px;
  }

  .article-content table {
    min-width: 620px;
  }

  .section-heading-row.product-preview-heading {
    align-items: flex-start;
  }

  .section-control-group {
    width: 100%;
    justify-content: space-between;
  }

  .card-scroller {
    grid-auto-columns: minmax(245px, 82vw);
    gap: 14px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .card-scroller .info-card {
    min-height: 340px;
  }

  .article-table-wrap {
    margin: 26px 0;
    border-radius: 12px;
  }

  .ported-content .alignright,
  .ported-content .alignleft {
    float: none;
    margin: 18px auto;
  }

  .site-footer {
    padding: 42px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about,
  .footer-newsletter {
    grid-column: auto;
  }

  .signup-form div {
    display: grid;
    gap: 10px;
    padding: 8px;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    min-height: 44px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 720px) {
  .guide-grid.home-card-grid,
  .category-grid.home-card-grid,
  .learn-grid.home-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-grid,
  .card-grid-8,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .editorial-grid,
  .two-column-panels {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .editorial-card,
  .bullet-panel {
    padding: 22px;
  }
}

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

  .scroller-controls {
    display: none;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .card-grid,
  .card-grid-8,
  .guide-grid.home-card-grid,
  .category-grid.home-card-grid,
  .learn-grid.home-card-grid,
  .brand-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-search button span {
    display: none;
  }
}

@media (max-width: 380px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
