/*
Theme Name: Crop Rates V13.1 Mobile Publisher
Theme URI: https://croprates.net/
Author: CropRates
Description: Mobile-first editorial publisher and responsive crop-price design, compatible with virtual rate pages and progressive price lookup.
Version: 13.1.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: crop-rates-v12
*/

:root {
  --cr-bg: #f5f7f3;
  --cr-surface: #ffffff;
  --cr-surface-soft: #eef5ee;
  --cr-text: #13291d;
  --cr-muted: #607268;
  --cr-line: #dce5de;
  --cr-green: #1a7d45;
  --cr-green-bright: #29a45c;
  --cr-green-dark: #0c4327;
  --cr-green-deep: #082f1d;
  --cr-gold: #d9a72f;
  --cr-danger: #9c2d2d;
  --cr-shadow-sm: 0 6px 18px rgba(13, 50, 29, 0.06);
  --cr-shadow: 0 18px 50px rgba(13, 50, 29, 0.1);
  --cr-radius-sm: 14px;
  --cr-radius: 22px;
  --cr-container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cr-bg);
  color: var(--cr-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.admin-bar .cr-site-header {
  top: 32px;
}

a {
  color: var(--cr-green-dark);
  text-decoration: none;
}

a:hover {
  color: var(--cr-green);
}

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

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

.cr-container {
  width: min(100% - 32px, var(--cr-container));
  margin-inline: auto;
}

.cr-skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 10px;
  background: #fff;
  color: var(--cr-green-dark);
  box-shadow: var(--cr-shadow);
}

.cr-skip-link:focus {
  top: 12px;
}

.cr-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 47, 29, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.cr-header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cr-brand-wrap {
  flex: 0 0 auto;
}

.cr-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.cr-brand:hover {
  color: #fff;
}

.cr-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #38b86a, #188147);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.26);
}

.cr-brand-text {
  display: grid;
  gap: 2px;
}

.cr-brand-title {
  color: #fff;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cr-brand-tagline {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.cr-custom-logo img {
  width: auto;
  max-width: 220px;
  max-height: 48px;
}

.cr-main-nav {
  margin-left: auto;
}

.cr-header-menu,
.cr-header-menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-header-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.cr-header-menu a:hover,
.cr-header-menu .current-menu-item > a {
  color: #fff;
}

.cr-header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 999px;
  background: #fff;
  color: var(--cr-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.cr-header-cta:hover {
  background: #eef8f1;
  color: var(--cr-green-dark);
}

.cr-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.cr-nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cr-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.cr-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.cr-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cr-site-main {
  min-height: 60vh;
}

.cr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.cr-button-primary {
  background: var(--cr-green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(26, 125, 69, 0.2);
}

.cr-button-primary:hover {
  background: #146a3a;
  color: #fff;
}

.cr-button-primary:disabled {
  opacity: 0.65;
  cursor: wait;
}

.cr-button-secondary {
  border-color: var(--cr-line);
  background: #fff;
  color: var(--cr-green-dark);
}

.cr-home {
  overflow: hidden;
}

.cr-hero {
  position: relative;
  padding: 48px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(67, 183, 105, 0.28), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(44, 155, 83, 0.18), transparent 30%),
    var(--cr-green-deep);
  color: #fff;
}

.cr-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  top: -150px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.025),
    0 0 0 90px rgba(255, 255, 255, 0.02);
}

.cr-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.cr-eyebrow,
.cr-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cr-green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cr-eyebrow {
  color: #bce9c9;
}

.cr-eyebrow::before,
.cr-section-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.cr-hero-copy h1 {
  max-width: 700px;
  margin: 15px 0 18px;
  color: #fff;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.cr-hero-lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.68;
}

.cr-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.cr-hero-facts span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.cr-hero-facts strong {
  color: #fff;
}

.cr-data-date {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.cr-data-date > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57d681;
  box-shadow: 0 0 0 5px rgba(87, 214, 129, 0.11);
}

.cr-search-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: #fff;
  color: var(--cr-text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.cr-search-heading > span {
  color: var(--cr-green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-search-heading h2 {
  margin: 5px 0 4px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.cr-search-heading p {
  margin: 0;
  color: var(--cr-muted);
  font-size: 14px;
}

.cr-rate-search {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.cr-rate-search label {
  min-width: 0;
}

.cr-rate-search label > span {
  display: block;
  margin: 0 0 6px;
  color: #405549;
  font-size: 12px;
  font-weight: 750;
}

.cr-rate-search select {
  width: 100%;
  min-height: 48px;
  padding: 10px 38px 10px 12px;
  border: 1px solid #d8e2da;
  border-radius: 13px;
  background-color: #f9fbf9;
  color: var(--cr-text);
  outline: none;
}

.cr-rate-search select:focus {
  border-color: #66a97d;
  box-shadow: 0 0 0 3px rgba(26, 125, 69, 0.1);
}

.cr-rate-search select:disabled {
  color: #829087;
  background-color: #f0f3f1;
  cursor: not-allowed;
}

.cr-rate-search .cr-button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 2px;
}

.cr-search-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: var(--cr-danger);
  font-size: 12px;
}

.cr-search-status:empty {
  display: none;
}

.cr-rate-search.is-loading {
  opacity: 0.76;
}

.cr-rate-search.is-loading .cr-search-status {
  color: var(--cr-muted);
}

.cr-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.cr-section + .cr-section:not(.cr-section-tint):not(.cr-section-dark) {
  padding-top: 16px;
}

.cr-section-tint {
  border-block: 1px solid var(--cr-line);
  background: var(--cr-surface-soft);
}

.cr-section-dark {
  background: var(--cr-green-deep);
  color: #fff;
}

.cr-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.cr-section-head h2 {
  max-width: 760px;
  margin: 7px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.cr-section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--cr-muted);
}

.cr-section-head-light h2 {
  color: #fff;
}

.cr-section-head-light p {
  color: rgba(255, 255, 255, 0.68);
}

.cr-section-head-light .cr-section-kicker,
.cr-section-head-light .cr-text-link {
  color: #92dbab;
}

.cr-text-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cr-green);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.cr-text-link span {
  transition: transform 0.15s ease;
}

.cr-text-link:hover span {
  transform: translateX(3px);
}

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

.cr-combo-card {
  position: relative;
  min-height: 168px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius);
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cr-combo-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--cr-surface-soft);
}

.cr-combo-card:hover {
  transform: translateY(-3px);
  border-color: #9ac3a7;
  box-shadow: var(--cr-shadow);
}

.cr-combo-label {
  display: block;
  color: var(--cr-muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cr-combo-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 9px;
  color: var(--cr-text);
  font-size: 22px;
  line-height: 1.15;
}

.cr-combo-action {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  color: var(--cr-green);
  font-size: 13px;
  font-weight: 800;
}

.cr-link-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.cr-link-grid a {
  min-width: 0;
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--cr-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(13, 50, 29, 0.035);
}

.cr-link-grid strong {
  display: block;
  overflow: hidden;
  color: var(--cr-text);
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.cr-link-grid span {
  display: block;
  margin-top: 7px;
  color: var(--cr-muted);
  font-size: 11px;
}

.cr-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cr-chip-grid a {
  padding: 10px 14px;
  border: 1px solid var(--cr-line);
  border-radius: 999px;
  background: #fff;
  color: #294637;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 3px 9px rgba(13, 50, 29, 0.035);
}

.cr-chip-grid a:hover {
  border-color: #9ac3a7;
  background: #f4faf5;
}

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

.cr-post-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--cr-radius);
  background: #fff;
  color: var(--cr-text);
  box-shadow: var(--cr-shadow-sm);
}

.cr-article-grid-light .cr-post-card {
  border-color: var(--cr-line);
}

.cr-post-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfece2;
}

.cr-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cr-post-card:hover .cr-post-card-image img {
  transform: scale(1.025);
}

.cr-post-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #1b8248, #0d4c2d);
  color: rgba(255, 255, 255, 0.9);
  font-size: 32px;
  font-weight: 900;
}

.cr-post-card-body {
  padding: 20px;
}

.cr-post-category,
.cr-article-category {
  display: inline-flex;
  color: var(--cr-green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cr-post-card h3 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.cr-post-card h3 a {
  color: var(--cr-text);
}

.cr-post-card h3 a:hover {
  color: var(--cr-green);
}

.cr-post-card-body > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--cr-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cr-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #e8eee9;
  color: #76857d;
  font-size: 11px;
  font-weight: 650;
}

.cr-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 50px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--cr-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
}

.cr-trust-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cr-trust-copy p {
  margin: 0;
  color: var(--cr-muted);
}

.cr-trust-points {
  display: grid;
  gap: 10px;
}

.cr-trust-points div {
  position: relative;
  padding: 16px 16px 16px 50px;
  border: 1px solid var(--cr-line);
  border-radius: 16px;
  background: #f9fbf9;
}

.cr-trust-points div::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcf2e3;
  color: var(--cr-green);
  font-size: 12px;
  font-weight: 900;
}

.cr-trust-points strong,
.cr-trust-points span {
  display: block;
}

.cr-trust-points strong {
  font-size: 14px;
}

.cr-trust-points span {
  margin-top: 2px;
  color: var(--cr-muted);
  font-size: 12px;
}

.cr-faq {
  padding: 34px;
  border: 1px solid var(--cr-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
}

.cr-faq .cr-section-head {
  margin-bottom: 18px;
}

.cr-faq details {
  padding: 15px 0;
  border-top: 1px solid var(--cr-line);
}

.cr-faq summary {
  padding-right: 24px;
  cursor: pointer;
  font-weight: 800;
}

.cr-faq p {
  max-width: 850px;
  margin: 10px 0 0;
  color: var(--cr-muted);
}

.cr-main-shell {
  padding-top: 52px;
  padding-bottom: 72px;
}

.cr-content-card {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--cr-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
}

.cr-page-header h1,
.cr-listing-header h1 {
  margin: 10px 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.cr-page-image {
  margin: 26px 0 30px;
  overflow: hidden;
  border-radius: 20px;
}

.cr-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 14px;
  color: #7a8980;
  font-size: 12px;
}

.cr-breadcrumbs a {
  color: #61736a;
}

.cr-listing-header {
  max-width: 850px;
  margin-bottom: 32px;
}

.cr-listing-header > p,
.cr-archive-description {
  color: var(--cr-muted);
}

.cr-empty-state {
  padding: 34px;
  border: 1px dashed #b8c8bd;
  border-radius: var(--cr-radius);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.cr-empty-state h2 {
  margin: 0 0 8px;
}

.cr-empty-state p {
  margin: 0;
  color: var(--cr-muted);
}

.cr-pagination {
  margin-top: 36px;
}

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

.cr-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--cr-line);
  border-radius: 12px;
  background: #fff;
  font-weight: 750;
}

.cr-pagination .current {
  border-color: var(--cr-green);
  background: var(--cr-green);
  color: #fff;
}

.cr-article-shell {
  padding-top: 46px;
  padding-bottom: 72px;
}

.cr-single-article {
  max-width: 1080px;
  margin-inline: auto;
}

.cr-article-header {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.cr-article-header .cr-breadcrumbs {
  justify-content: center;
}

.cr-article-header h1 {
  margin: 13px 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.cr-article-deck {
  max-width: 790px;
  margin: 0 auto;
  color: var(--cr-muted);
  font-size: 19px;
  line-height: 1.6;
}

.cr-article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 19px;
  color: #6e8076;
  font-size: 12px;
  font-weight: 650;
}

.cr-article-meta a {
  color: var(--cr-green);
  font-weight: 800;
}

.cr-article-hero {
  margin: 0;
}

.cr-article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--cr-shadow);
}

.cr-article-hero figcaption {
  margin-top: 9px;
  color: #77877e;
  font-size: 12px;
  text-align: center;
}

.cr-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(220px, 280px);
  gap: 48px;
  align-items: start;
  margin-top: 42px;
}

.cr-entry-content {
  min-width: 0;
  color: #21362a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.82;
}

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

.cr-entry-content h2,
.cr-entry-content h3,
.cr-entry-content h4 {
  color: var(--cr-text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.cr-entry-content h2 {
  margin: 44px 0 16px;
  font-size: 32px;
}

.cr-entry-content h3 {
  margin: 34px 0 12px;
  font-size: 25px;
}

.cr-entry-content a {
  color: var(--cr-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cr-entry-content blockquote {
  margin: 30px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--cr-green);
  border-radius: 0 16px 16px 0;
  background: #eef7f0;
  color: #234832;
}

.cr-entry-content img {
  border-radius: 18px;
}

.cr-entry-content figure {
  margin: 32px 0;
}

.cr-entry-content figcaption {
  margin-top: 7px;
  color: #76867d;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  text-align: center;
}

.cr-entry-content ul,
.cr-entry-content ol {
  padding-left: 1.25em;
}

.cr-entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
}

.cr-entry-content th,
.cr-entry-content td {
  padding: 11px 12px;
  border: 1px solid var(--cr-line);
  text-align: left;
}

.cr-entry-content th {
  background: var(--cr-green-dark);
  color: #fff;
}

.cr-article-aside {
  position: sticky;
  top: 96px;
}

.cr-aside-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--cr-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
}

.cr-aside-card > span {
  color: var(--cr-green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-aside-card > strong {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.cr-aside-card .cr-button {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 13px;
}

.cr-article-footer {
  max-width: 740px;
  margin: 36px 0 0;
}

.cr-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.cr-tags span,
.cr-tags a {
  font-size: 12px;
  font-weight: 750;
}

.cr-tags a {
  padding: 6px 10px;
  border: 1px solid var(--cr-line);
  border-radius: 999px;
  background: #fff;
}

.cr-author-box {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--cr-line);
  border-radius: 20px;
  background: #fff;
}

.cr-author-box span,
.cr-author-box strong {
  display: block;
}

.cr-author-box span {
  color: var(--cr-muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.cr-author-box strong {
  margin-top: 3px;
  font-size: 17px;
}

.cr-author-box p {
  margin: 0;
  color: var(--cr-muted);
  font-size: 13px;
}

.cr-related {
  margin-top: 72px;
}

.cr-error-page {
  max-width: 720px;
  margin: 20px auto;
  padding: 70px 30px;
}

.cr-error-code {
  display: block;
  color: var(--cr-green);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.cr-error-page h1 {
  margin: 12px 0 8px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.06;
}

.cr-error-page p {
  max-width: 530px;
  margin-inline: auto;
}

.cr-error-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

/* Dynamic price pages: no duplicate theme title and a clean content width. */
.cr-rate-page-shell {
  padding: 34px 0 64px;
}

.crv12-rate-page .cr-main-shell {
  padding-top: 0;
  padding-bottom: 0;
}

.crv12-rate-page .cr88-wrap {
  max-width: none;
}

.crv12-rate-page .cr88-breadcrumbs {
  margin-top: 0;
}

.crv12-rate-page .cr88-block {
  margin-bottom: 18px;
}

.crv12-rate-page .cr88-hero {
  background: linear-gradient(135deg, var(--cr-green-dark), var(--cr-green));
  box-shadow: var(--cr-shadow-sm);
}

.crv12-rate-page .cr88-selector {
  box-shadow: var(--cr-shadow-sm);
}

.crv12-rate-page .cr88-chip:focus-visible,
.crv12-rate-page .cr88-selector select:focus-visible,
.crv12-rate-page .cr88-selector button:focus-visible {
  outline: 3px solid rgba(26, 125, 69, 0.22);
  outline-offset: 2px;
}

.cr-site-footer {
  padding: 52px 0 18px;
  background: #061f14;
  color: rgba(255, 255, 255, 0.72);
}

.cr-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.95fr;
  gap: 42px;
}

.cr-footer-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.cr-footer-text,
.cr-footer-note {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.cr-footer-note {
  padding-left: 12px;
  border-left: 2px solid rgba(83, 203, 123, 0.48);
  font-size: 11px;
}

.cr-footer-menu,
.cr-site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.cr-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cr-footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

@media (max-width: 1080px) {
  .cr-header-menu,
  .cr-header-menu ul {
    gap: 16px;
  }

  .cr-hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 28px;
  }

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

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

  .cr-footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  body.admin-bar .cr-site-header {
    top: 46px;
  }

  .cr-header-row {
    min-height: 64px;
  }

  .cr-nav-toggle {
    display: block;
  }

  .cr-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 14px 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #082f1d;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  }

  .cr-main-nav.is-open {
    display: block;
  }

  .cr-header-menu,
  .cr-header-menu ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .cr-header-menu a {
    display: block;
    padding: 11px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cr-header-cta {
    display: none;
  }

  .cr-hero-grid,
  .cr-trust-grid {
    grid-template-columns: 1fr;
  }

  .cr-hero-copy {
    text-align: center;
  }

  .cr-hero-lead {
    margin-inline: auto;
  }

  .cr-hero-facts,
  .cr-data-date {
    justify-content: center;
  }

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

  .cr-trust-grid {
    gap: 28px;
  }

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

  .cr-article-aside {
    position: static;
  }

  .cr-aside-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cr-aside-card > span,
  .cr-aside-card > strong {
    grid-column: 1;
  }

  .cr-aside-card .cr-button {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .cr-article-footer {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .cr-container {
    width: min(100% - 24px, var(--cr-container));
  }

  .cr-brand-mark {
    width: 38px;
    height: 38px;
  }

  .cr-brand-title {
    font-size: 17px;
  }

  .cr-brand-tagline {
    display: none;
  }

  .cr-hero {
    padding: 34px 0 38px;
  }

  .cr-hero-grid {
    gap: 26px;
  }

  .cr-hero-copy h1 {
    font-size: 39px;
  }

  .cr-hero-lead {
    font-size: 15px;
  }

  .cr-hero-facts {
    gap: 6px;
  }

  .cr-hero-facts span {
    padding: 7px 9px;
    font-size: 11px;
  }

  .cr-search-card {
    padding: 19px;
    border-radius: 20px;
  }

  .cr-search-heading h2 {
    font-size: 22px;
  }

  .cr-rate-search {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .cr-rate-search .cr-button,
  .cr-search-status {
    grid-column: 1;
  }

  .cr-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cr-section + .cr-section:not(.cr-section-tint):not(.cr-section-dark) {
    padding-top: 8px;
  }

  .cr-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }

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

  .cr-combo-grid,
  .cr-article-grid {
    grid-template-columns: 1fr;
  }

  .cr-combo-card {
    min-height: 145px;
  }

  .cr-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .cr-link-grid a {
    min-height: 82px;
    padding: 13px;
  }

  .cr-trust-grid,
  .cr-faq {
    padding: 22px;
    border-radius: 22px;
  }

  .cr-main-shell {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .cr-content-card {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 24px 18px;
    border-inline: 0;
    border-radius: 0;
  }

  .cr-article-shell {
    width: 100%;
    padding-top: 26px;
  }

  .cr-article-header {
    width: calc(100% - 24px);
  }

  .cr-article-header h1 {
    font-size: 38px;
  }

  .cr-article-deck {
    font-size: 16px;
  }

  .cr-article-hero img {
    border-radius: 0;
  }

  .cr-article-hero figcaption {
    padding-inline: 12px;
  }

  .cr-article-layout,
  .cr-article-footer,
  .cr-related {
    width: calc(100% - 24px);
    margin-inline: auto;
  }

  .cr-article-layout {
    gap: 28px;
    margin-top: 28px;
  }

  .cr-entry-content {
    font-size: 17px;
    line-height: 1.78;
  }

  .cr-entry-content h2 {
    font-size: 28px;
  }

  .cr-entry-content table {
    min-width: 680px;
  }

  .cr-entry-content .wp-block-table {
    overflow-x: auto;
  }

  .cr-aside-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cr-aside-card .cr-button {
    grid-column: 1;
    grid-row: auto;
  }

  .cr-author-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cr-related {
    margin-top: 50px;
  }

  .cr-rate-page-shell {
    padding: 20px 0 46px;
  }

  .cr-site-footer {
    padding-top: 38px;
  }

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

  .cr-footer-grid > :last-child {
    grid-column: auto;
  }

  .cr-footer-bottom,
  .cr-error-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cr-footer-bottom {
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .cr-hero-copy h1 {
    font-size: 34px;
  }

  .cr-link-grid {
    grid-template-columns: 1fr;
  }

  .cr-article-header h1 {
    font-size: 34px;
  }
}

/* V13 Discover Publisher */
.cr-topic-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 35, 21, 0.96);
  overflow-x: auto;
  scrollbar-width: none;
}

.cr-topic-nav::-webkit-scrollbar {
  display: none;
}

.cr-topic-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 9px 0;
  list-style: none;
}

.cr-topic-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.cr-topic-menu a:hover {
  color: #fff;
}

.cr-discover-hero {
  padding: 54px 0 62px;
  background:
    radial-gradient(circle at 12% 5%, rgba(61, 178, 101, 0.1), transparent 30%),
    linear-gradient(180deg, #edf5ed 0%, #f5f7f3 100%);
  border-bottom: 1px solid var(--cr-line);
}

.cr-home-intro {
  max-width: 940px;
  margin: 0 auto 34px;
  text-align: center;
}

.cr-home-intro h1 {
  margin: 10px 0 14px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.01;
  letter-spacing: -0.052em;
}

.cr-home-intro p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--cr-muted);
  font-size: 18px;
}

.cr-discover-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.cr-lead-story,
.cr-discover-finder {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--cr-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--cr-shadow);
}

.cr-lead-story-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfece2;
}

.cr-lead-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cr-lead-story:hover .cr-lead-story-image img {
  transform: scale(1.018);
}

.cr-story-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0d4c2d, #21884d);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.cr-lead-story-body {
  padding: clamp(22px, 4vw, 34px);
}

.cr-story-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #74847b;
  font-size: 11px;
  font-weight: 700;
}

.cr-story-topline a {
  color: var(--cr-green);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cr-lead-story h2 {
  margin: 10px 0;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cr-lead-story h2 a {
  color: var(--cr-text);
}

.cr-lead-story-body > p {
  margin: 0;
  color: var(--cr-muted);
  font-size: 16px;
}

.cr-story-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  color: var(--cr-green);
  font-size: 13px;
  font-weight: 850;
}

.cr-lead-story-empty {
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
}

.cr-discover-finder {
  padding: 26px;
  box-shadow: var(--cr-shadow-sm);
}

.cr-finder-date {
  margin: 15px 0 0;
  padding: 10px 12px;
  border: 1px solid #dbe9de;
  border-radius: 12px;
  background: #eff8f1;
  color: #315b41;
  font-size: 12px;
  font-weight: 750;
}

.cr-discover-finder .cr-rate-search {
  grid-template-columns: 1fr;
  gap: 11px;
}

.cr-discover-finder .cr-rate-search .cr-button,
.cr-discover-finder .cr-search-status {
  grid-column: 1;
}

.cr-price-shortcuts {
  border-bottom: 1px solid var(--cr-line);
  background: #fff;
}

.cr-price-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cr-price-shortcut-grid a {
  padding: 18px 12px;
  border-right: 1px solid var(--cr-line);
  color: #294637;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.cr-price-shortcut-grid a:first-child {
  border-left: 1px solid var(--cr-line);
}

.cr-price-shortcut-grid a:hover {
  background: #f3f8f3;
  color: var(--cr-green);
}

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

.cr-small-story {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--cr-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
}

.cr-small-story-image {
  min-height: 100%;
  overflow: hidden;
  background: #dfece2;
}

.cr-small-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cr-small-story:hover .cr-small-story-image img {
  transform: scale(1.025);
}

.cr-small-story-body {
  min-width: 0;
  padding: 19px;
}

.cr-small-story h3 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.cr-small-story h3 a {
  color: var(--cr-text);
}

.cr-small-story p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--cr-muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.cr-topic-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--cr-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
}

.cr-topic-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: #e1f2e5;
  color: var(--cr-green);
  font-weight: 900;
}

.cr-topic-card strong,
.cr-topic-card > span:last-child {
  display: block;
}

.cr-topic-card strong {
  color: var(--cr-text);
  font-size: 18px;
}

.cr-topic-card > span:last-child {
  margin-top: 7px;
  color: var(--cr-muted);
  font-size: 12px;
}

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

.cr-directory-grid a {
  display: flex;
  align-items: end;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--cr-line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(235, 246, 237, 0.95));
  box-shadow: var(--cr-shadow-sm);
}

.cr-directory-grid strong {
  color: var(--cr-text);
  font-size: 18px;
}

.cr-state-strip {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--cr-line);
}

.cr-state-strip h3 {
  margin: 0 0 13px;
  font-size: 17px;
}

.cr-section-trust {
  border-block: 1px solid var(--cr-line);
  background: var(--cr-green-deep);
}

.cr-section-trust .cr-trust-grid {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: none;
}

.cr-section-trust .cr-trust-copy h2 {
  color: #fff;
}

.cr-section-trust .cr-trust-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.cr-section-trust .cr-section-kicker {
  color: #84d69e;
}

.cr-section-trust .cr-trust-points div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.cr-section-trust .cr-trust-points strong {
  color: #fff;
}

.cr-section-trust .cr-trust-points span {
  color: rgba(255, 255, 255, 0.65);
}

.cr-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.cr-trust-links a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.cr-article-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  text-align: left;
}

.cr-byline-avatar img,
.cr-author-avatar img,
.cr-author-header-avatar img {
  border-radius: 50%;
}

.cr-article-byline > div > span {
  color: #51675a;
  font-size: 13px;
  font-weight: 700;
}

.cr-article-byline > div > span a {
  color: var(--cr-green);
}

.cr-article-byline .cr-article-meta {
  justify-content: flex-start;
  margin-top: 2px;
}

.cr-entry-column {
  min-width: 0;
}

.cr-key-points {
  margin-bottom: 32px;
  padding: 24px 26px;
  border: 1px solid #cee1d3;
  border-radius: 20px;
  background: #eff8f1;
}

.cr-key-points h2 {
  margin: 4px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.cr-key-points ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #294637;
}

.cr-data-note {
  margin-top: 38px;
  padding: 22px;
  border: 1px solid var(--cr-line);
  border-radius: 18px;
  background: #f8faf8;
}

.cr-data-note h2 {
  margin: 0 0 10px;
  font-size: 19px;
}

.cr-data-note p {
  margin: 6px 0 0;
  color: var(--cr-muted);
  font-size: 13px;
}

.cr-article-context {
  margin-top: 14px;
  padding: 17px;
  border: 1px solid var(--cr-line);
  border-radius: 16px;
  background: #f8faf8;
}

.cr-article-context strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cr-article-context p {
  margin: 6px 0 0;
  color: var(--cr-muted);
  font-size: 12px;
}

.cr-author-box {
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
}

.cr-author-details strong a {
  color: var(--cr-text);
}

.cr-author-details p {
  margin-top: 7px;
}

.cr-author-header {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 860px;
  margin: 0 0 38px;
  padding: 30px;
  border: 1px solid var(--cr-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--cr-shadow-sm);
}

.cr-author-header h1 {
  margin: 5px 0 8px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.05;
}

.cr-author-header p {
  margin: 0;
  color: var(--cr-muted);
}

@media (max-width: 1020px) {
  .cr-discover-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  }

  .cr-story-grid,
  .cr-topic-grid,
  .cr-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .cr-topic-nav {
    display: none;
  }

  .cr-discover-hero-grid {
    grid-template-columns: 1fr;
  }

  .cr-price-shortcut-grid {
    grid-template-columns: repeat(5, minmax(118px, 1fr));
    overflow-x: auto;
  }

  .cr-price-shortcuts .cr-container {
    width: 100%;
  }

  .cr-small-story {
    grid-template-columns: 1fr;
  }

  .cr-small-story-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .cr-discover-hero {
    padding: 34px 0 42px;
  }

  .cr-home-intro {
    margin-bottom: 24px;
    text-align: left;
  }

  .cr-home-intro h1 {
    font-size: 38px;
  }

  .cr-home-intro p {
    font-size: 15px;
  }

  .cr-lead-story,
  .cr-discover-finder {
    border-radius: 20px;
  }

  .cr-lead-story-body,
  .cr-discover-finder {
    padding: 19px;
  }

  .cr-lead-story h2 {
    font-size: 28px;
  }

  .cr-story-grid,
  .cr-topic-grid,
  .cr-directory-grid {
    grid-template-columns: 1fr;
  }

  .cr-small-story {
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .cr-small-story-image {
    aspect-ratio: auto;
  }

  .cr-small-story h3 {
    font-size: 18px;
  }

  .cr-small-story p {
    display: none;
  }

  .cr-topic-card {
    min-height: 160px;
  }

  .cr-directory-grid a {
    min-height: 98px;
  }

  .cr-article-byline {
    align-items: flex-start;
    width: 100%;
  }

  .cr-article-byline .cr-article-meta {
    display: grid;
    gap: 2px;
  }

  .cr-key-points {
    padding: 20px;
  }

  .cr-author-box,
  .cr-author-header {
    grid-template-columns: 1fr;
  }

  .cr-author-header {
    padding: 22px;
  }
}

/* V13.1 Mobile Publisher: spacious desktop canvas and touch-first rate pages. */
:root {
  --cr-container: 1320px;
  --cr-mobile-gutter: 18px;
}

body {
  background: #f3f6f2;
  font-size: 17px;
}

.cr-site-header {
  box-shadow: 0 8px 26px rgba(5, 35, 21, 0.12);
}

.cr-header-row {
  min-height: 76px;
}

.cr-header-menu a {
  font-size: 14px;
}

.cr-mobile-nav-cta {
  display: none;
}

.cr-discover-hero {
  padding: 48px 0 58px;
  background:
    radial-gradient(circle at 8% 8%, rgba(44, 164, 88, 0.14), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(217, 167, 47, 0.09), transparent 24%),
    linear-gradient(180deg, #edf6ee 0%, #f7f9f6 100%);
}

.cr-home-intro {
  max-width: 1060px;
  margin-bottom: 32px;
}

.cr-home-intro h1 {
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.02;
}

.cr-home-intro p {
  max-width: 850px;
  font-size: 19px;
}

.cr-home-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.cr-home-benefits span {
  position: relative;
  padding: 8px 13px 8px 31px;
  border: 1px solid #d4e5d7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #365a43;
  font-size: 12px;
  font-weight: 750;
}

.cr-home-benefits span::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff2e4;
  color: var(--cr-green);
  font-size: 9px;
  transform: translateY(-50%);
}

.cr-discover-hero-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(390px, 0.78fr);
  gap: 28px;
}

.cr-lead-story,
.cr-discover-finder {
  border-radius: 24px;
}

.cr-lead-story-image {
  aspect-ratio: 16 / 8.5;
}

.cr-discover-finder {
  padding: 28px;
}

.cr-rate-search select,
.cr-rate-search .cr-button {
  min-height: 52px;
}

.cr-directory-grid a {
  position: relative;
  padding-right: 50px;
}

.cr-directory-grid a::after {
  content: "→";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff1e3;
  color: var(--cr-green-dark);
  font-weight: 900;
}

/* Price engine desktop presentation. Higher specificity safely overrides its inline skin. */
.crv12-rate-page .cr14-wrap {
  width: 100%;
  max-width: var(--cr-container);
  color: var(--cr-text);
}

.crv12-rate-page .cr14-breadcrumb {
  margin-bottom: 16px;
  font-size: 13px;
}

.crv12-rate-page .cr14-hero {
  padding: clamp(24px, 3.5vw, 42px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15), transparent 25%),
    linear-gradient(135deg, #0b4a2b, #1c8a4b);
  box-shadow: 0 20px 46px rgba(12, 67, 39, 0.16);
}

.crv12-rate-page .cr14-hero h1 {
  max-width: 1050px;
  font-size: clamp(32px, 4vw, 52px);
}

.crv12-rate-page .cr14-selector {
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--cr-shadow-sm);
}

.crv12-rate-page .cr14-selector select,
.crv12-rate-page .cr14-selector button {
  min-height: 52px;
}

.crv12-rate-page .cr14-summary {
  gap: 14px;
}

.crv12-rate-page .cr14-summary div {
  min-width: 0;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 5px 16px rgba(13, 50, 29, 0.045);
}

.crv12-rate-page .cr14-summary strong {
  overflow-wrap: anywhere;
  font-size: 20px;
}

.crv12-rate-page .cr14-card {
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 5px 18px rgba(13, 50, 29, 0.045);
}

.crv12-rate-page .cr14-card h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.crv12-rate-page .cr14-table-wrap {
  border-radius: 16px;
  overscroll-behavior-x: contain;
}

.crv12-rate-page .cr14-table {
  min-width: 860px;
  font-size: 15px;
}

.crv12-rate-page .cr14-table th {
  padding: 14px;
  background: #0d4a2c;
}

.crv12-rate-page .cr14-table td {
  padding: 14px;
}

.crv12-rate-page .cr14-table tbody tr:hover td {
  background: #f1f8f3;
}

.crv12-rate-page .cr14-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.crv12-rate-page .cr14-grid a {
  min-height: 60px;
  padding: 14px 16px;
}

@media (max-width: 1100px) {
  .cr-discover-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }
}

@media (max-width: 900px) {
  body.cr-nav-open {
    overflow: hidden;
  }

  .cr-main-nav {
    max-height: calc(100vh - 64px);
    padding: 12px var(--cr-mobile-gutter) 22px;
    overflow-y: auto;
  }

  .cr-header-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 4px;
    font-size: 16px;
  }

  .cr-mobile-nav-cta {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border-radius: 13px;
    background: #fff;
    color: var(--cr-green-dark);
    font-size: 15px;
    font-weight: 850;
  }

  .cr-mobile-nav-cta:hover {
    color: var(--cr-green-dark);
  }
}

@media (max-width: 820px) {
  .cr-discover-hero-grid {
    grid-template-columns: 1fr;
  }

  .cr-discover-hero-grid.is-empty .cr-discover-finder {
    order: -1;
  }

  .cr-price-shortcut-grid {
    scroll-snap-type: x proximity;
  }

  .cr-price-shortcut-grid a {
    min-height: 56px;
    display: grid;
    place-items: center;
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  :root {
    --cr-mobile-gutter: 16px;
  }

  body {
    font-size: 16px;
  }

  .cr-container {
    width: calc(100% - (var(--cr-mobile-gutter) * 2));
  }

  .cr-header-row {
    min-height: 64px;
  }

  .cr-discover-hero {
    padding: 28px 0 34px;
  }

  .cr-home-intro {
    margin-bottom: 22px;
  }

  .cr-home-intro h1 {
    margin: 9px 0 12px;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .cr-home-intro p {
    font-size: 16px;
    line-height: 1.55;
  }

  .cr-home-benefits {
    justify-content: flex-start;
    gap: 7px;
    margin-top: 16px;
  }

  .cr-home-benefits span {
    padding: 7px 10px 7px 28px;
    font-size: 11px;
  }

  .cr-lead-story,
  .cr-discover-finder {
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(13, 50, 29, 0.09);
  }

  .cr-lead-story-image {
    aspect-ratio: 16 / 9;
  }

  .cr-lead-story-body,
  .cr-discover-finder {
    padding: 18px;
  }

  .cr-story-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .cr-lead-story h2 {
    font-size: 27px;
  }

  .cr-rate-search select,
  .cr-rate-search .cr-button {
    min-height: 52px;
    font-size: 16px;
  }

  .cr-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .cr-directory-grid a {
    min-height: 88px;
    border-radius: 16px;
  }

  .cr-state-strip {
    margin-top: 24px;
  }

  /* Dynamic rate page shell */
  .crv12-rate-page .cr-main-shell {
    width: calc(100% - (var(--cr-mobile-gutter) * 2));
  }

  .crv12-rate-page .cr-rate-page-shell {
    padding: 18px 0 42px;
  }

  .crv12-rate-page .cr14-breadcrumb {
    gap: 5px;
    margin: 0 2px 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .crv12-rate-page .cr14-hero {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .crv12-rate-page .cr14-hero h1 {
    margin-bottom: 9px;
    font-size: clamp(27px, 8.6vw, 36px);
    line-height: 1.08;
  }

  .crv12-rate-page .cr14-hero p {
    font-size: 14px;
    line-height: 1.58;
  }

  .crv12-rate-page .cr14-selector {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 17px;
    border-radius: 17px;
  }

  .crv12-rate-page .cr14-selector-head,
  .crv12-rate-page .cr14-selector button,
  .crv12-rate-page .cr14-selector-status {
    grid-column: 1;
  }

  .crv12-rate-page .cr14-selector-head {
    display: block;
  }

  .crv12-rate-page .cr14-selector-head span {
    display: block;
    margin-top: 4px;
  }

  .crv12-rate-page .cr14-selector select,
  .crv12-rate-page .cr14-selector button {
    min-height: 52px;
    font-size: 16px;
  }

  .crv12-rate-page .cr14-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .crv12-rate-page .cr14-summary div {
    min-height: 104px;
    padding: 15px;
    border-radius: 15px;
  }

  .crv12-rate-page .cr14-summary span {
    font-size: 12px;
    line-height: 1.35;
  }

  .crv12-rate-page .cr14-summary strong {
    font-size: 17px;
    line-height: 1.25;
  }

  .crv12-rate-page .cr14-card {
    padding: 16px;
    border-radius: 17px;
  }

  .crv12-rate-page .cr14-card h2 {
    margin-bottom: 13px;
    font-size: 22px;
  }

  .crv12-rate-page .cr14-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .crv12-rate-page .cr14-card .cr14-table {
    display: block;
    min-width: 0;
    font-size: 14px;
  }

  .crv12-rate-page .cr14-card .cr14-table thead {
    display: none;
  }

  .crv12-rate-page .cr14-card .cr14-table tbody {
    display: grid;
    gap: 14px;
  }

  .crv12-rate-page .cr14-card .cr14-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid #d7e3da;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(13, 50, 29, 0.055);
  }

  .crv12-rate-page .cr14-card .cr14-table td,
  .crv12-rate-page .cr14-card .cr14-table tbody tr:nth-child(even) td {
    min-height: 43px;
    display: grid;
    grid-template-columns: minmax(105px, 42%) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #e9efeb;
    background: #fff;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .crv12-rate-page .cr14-card .cr14-table td:first-child {
    background: #f4f9f5;
    color: #153f2b;
    font-weight: 800;
  }

  .crv12-rate-page .cr14-card .cr14-table td:last-child {
    border-bottom: 0;
  }

  .crv12-rate-page .cr14-card .cr14-table td::before {
    content: attr(data-label);
    color: #62766a;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.035em;
  }

  .crv12-rate-page .cr14-card .cr14-table .cr14-price {
    white-space: normal;
    font-size: 15px;
  }

  .crv12-rate-page .cr14-card .cr14-table .cr14-modal {
    background: #eaf7ee;
    color: #0c6335;
    font-size: 16px;
  }

  .crv12-rate-page .cr14-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .crv12-rate-page .cr14-grid a {
    min-height: 58px;
    padding: 11px;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.3;
  }

  .crv12-rate-page .cr14-pages a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .crv12-rate-page .cr14-history > summary {
    padding: 15px 16px;
  }

  .crv12-rate-page .cr14-history-card {
    border-radius: 0;
  }

  /* Simple article tables become labelled mobile cards via nav.js. */
  .cr-entry-content table.cr-mobile-table {
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
  }

  .cr-entry-content table.cr-mobile-table thead {
    display: none;
  }

  .cr-entry-content table.cr-mobile-table tbody {
    display: grid;
    gap: 13px;
  }

  .cr-entry-content table.cr-mobile-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid var(--cr-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(13, 50, 29, 0.045);
  }

  .cr-entry-content table.cr-mobile-table td {
    min-height: 43px;
    display: grid;
    grid-template-columns: minmax(100px, 40%) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #e9efeb;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .cr-entry-content table.cr-mobile-table td:last-child {
    border-bottom: 0;
  }

  .cr-entry-content table.cr-mobile-table td::before {
    content: attr(data-label);
    color: #607268;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.035em;
  }

  .cr-entry-content .wp-block-table:has(table.cr-mobile-table) {
    overflow: visible;
  }
}

@media (max-width: 430px) {
  .cr-home-benefits span:last-child {
    display: none;
  }

  .cr-small-story {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .cr-small-story-body {
    padding: 14px;
  }

  .cr-small-story h3 {
    font-size: 17px;
  }

  .crv12-rate-page .cr14-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crv12-rate-page .cr14-summary div {
    padding: 13px;
  }

  .crv12-rate-page .cr14-grid {
    grid-template-columns: 1fr;
  }

  .crv12-rate-page .cr14-card .cr14-table td,
  .crv12-rate-page .cr14-card .cr14-table tbody tr:nth-child(even) td,
  .cr-entry-content table.cr-mobile-table td {
    grid-template-columns: minmax(94px, 40%) minmax(0, 1fr);
    gap: 9px;
    padding-inline: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
