/*
Theme Name: Holiday Cents Blueprint
Author: Holiday Cents
Version: 1.4.0
Description: Holiday Cents theme based on the approved final simplified design system.
Text Domain: holiday-cents
*/

:root {
  --hc-navy: #17315f;
  --hc-teal: #12aeb5;
  --hc-teal-dark: #1388a7;
  --hc-gold: #e5a72c;
  --hc-ink: #202838;
  --hc-muted: #747b8e;
  --hc-pale: #f7fbfc;
  --hc-cream: #fff8e8;
  --hc-line: #dfe8eb;
  --hc-white: #ffffff;
  --hc-max: 1180px;
  --hc-content: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hc-white);
  color: var(--hc-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--hc-gold);
  outline-offset: 3px;
}

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

svg {
  display: block;
}

.hc-wrap {
  width: min(calc(100% - 48px), var(--hc-max));
  margin-right: auto;
  margin-left: auto;
}

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

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--hc-white);
  border-bottom: 1px solid var(--hc-line);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(90px, auto) 1fr 38px;
  gap: 26px;
  align-items: center;
  min-height: 86px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--hc-navy);
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 24px;
}

.menu-icon span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}

.brand,
.brand .custom-logo-link,
.brand-fallback {
  display: flex;
  align-items: center;
}

.brand .custom-logo,
.brand .fallback-logo {
  width: auto;
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
}

.brand-text {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: var(--hc-teal);
  font-size: 24px;
  font-weight: 800;
  line-height: 0.84;
  text-align: center;
}

.brand-text::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  border-bottom: 4px solid var(--hc-gold);
  border-radius: 50%;
  content: "";
}

.primary-nav {
  justify-self: end;
}

.primary-nav ul {
  display: flex;
  gap: 21px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: block;
  color: var(--hc-navy);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--hc-teal-dark);
}

.search-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--hc-navy);
}

.search-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

/* Approved homepage Blueprint */
.hero {
  border-bottom: 1px solid var(--hc-line);
  background: var(--hc-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 440px;
}

.hero-copy {
  align-self: center;
  padding: 54px 48px 50px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--hc-gold);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--hc-navy);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.06;
}

.hero p {
  max-width: 510px;
  margin: 0 0 24px;
  color: var(--hc-ink);
  font-size: 15px;
  line-height: 1.85;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  margin-right: 10px;
  padding: 11px 20px;
  border: 2px solid var(--hc-teal-dark);
  border-radius: 4px;
  background: var(--hc-teal-dark);
  color: var(--hc-white);
  font-size: 13px;
  font-weight: 700;
}

.btn.alt {
  background: var(--hc-white);
  color: var(--hc-teal-dark);
}

.btn:hover,
.btn:focus {
  border-color: var(--hc-navy);
  background: var(--hc-navy);
  color: var(--hc-white);
}

.section-heading {
  margin: 34px 0 30px;
  color: var(--hc-navy);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.section-heading::after,
.page-title::after,
.resources-title::after {
  display: block;
  width: 46px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--hc-gold);
  content: "";
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 30px;
}

.hub {
  padding: 6px 22px 18px;
  border-right: 1px solid var(--hc-line);
  text-align: center;
}

.hub:last-child {
  border-right: 0;
}

.hub-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  color: var(--hc-teal-dark);
}

.hub-icon svg,
.resource-icon svg,
.arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hub-icon svg,
.resource-icon svg {
  stroke-width: 1.8;
}

.hub strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hc-navy);
  font-size: 13px;
}

.hub > span:last-child {
  display: block;
  color: var(--hc-ink);
  font-size: 12px;
  line-height: 1.7;
}

.hub:hover strong,
.hub:focus strong {
  color: var(--hc-teal-dark);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: 4px;
  background: var(--hc-white);
}

.post-card-image {
  display: block;
  min-height: 110px;
  background: var(--hc-pale);
}

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

.post-card-body {
  padding: 12px 14px 16px;
}

.kicker {
  color: var(--hc-teal-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 6px 0 0;
  color: var(--hc-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.post-card h3 a:hover,
.post-card h3 a:focus {
  color: var(--hc-teal-dark);
}

/* Shared page shells */
.content-shell {
  width: min(calc(100% - 48px), var(--hc-content));
  margin: 0 auto;
  padding: 38px 0 58px;
}

.theme-feature-zone {
  width: 100%;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--hc-muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--hc-teal-dark);
  font-weight: 700;
}

.page-title,
.resources-title {
  margin: 0 0 18px;
  color: var(--hc-navy);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.page-title::after,
.resources-title::after {
  margin: 13px 0 0;
}

.page-intro {
  max-width: 720px;
  margin: 0 0 25px;
  color: var(--hc-ink);
  font-size: 15px;
  line-height: 1.7;
}

.article-list {
  border-top: 1px solid var(--hc-line);
}

.article-row {
  display: grid;
  grid-template-columns: 180px 1fr 24px;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hc-line);
}

.article-image {
  display: block;
  overflow: hidden;
  width: 180px;
  height: 105px;
  border-radius: 4px;
  background: var(--hc-pale);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.article-title {
  margin-bottom: 5px;
  color: var(--hc-navy);
  font-size: 16px;
  line-height: 1.35;
}

.article-excerpt {
  margin-bottom: 6px;
  color: var(--hc-ink);
  font-size: 12px;
}

.meta {
  color: var(--hc-muted);
  font-size: 10px;
}

.arrow {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--hc-navy);
}

.arrow svg {
  stroke-width: 2.5;
}

.article-row:hover .article-title,
.article-row:focus .article-title,
.article-row:hover .arrow,
.article-row:focus .arrow {
  color: var(--hc-teal-dark);
}

.back-home {
  display: inline-block;
  margin-top: 24px;
  color: var(--hc-teal-dark);
  font-size: 12px;
  font-weight: 700;
}

/* Approved Resources navigation */
.resources-page-v05 {
  max-width: 980px;
}

.resources-feature-zone {
  margin-bottom: 0;
}

.resources-page-v05 .resources-title {
  display: block !important;
}

.resource-list {
  border-top: 1px solid var(--hc-line);
}

.resource-row {
  display: grid;
  grid-template-columns: 62px 1fr 24px;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 18px 10px;
  border-bottom: 1px solid var(--hc-line);
}

.resource-icon {
  display: block;
  width: 48px;
  height: 48px;
  color: var(--hc-teal-dark);
}

.resource-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.resource-copy strong {
  margin-bottom: 3px;
  color: var(--hc-navy);
  font-size: 17px;
  line-height: 1.35;
}

.resource-copy > span {
  color: var(--hc-ink);
  font-size: 13px;
  line-height: 1.55;
}

.resource-row:hover .resource-copy strong,
.resource-row:focus .resource-copy strong,
.resource-row:hover .arrow,
.resource-row:focus .arrow {
  color: var(--hc-teal-dark);
}

/* WordPress editor content: always below and aligned */
.page-editor-content {
  width: 100%;
  margin-top: 52px;
  padding-top: 42px;
  border-top: 1px solid var(--hc-line);
}

.page-editor-content a {
  overflow-wrap: anywhere;
}

.home-editor-content {
  width: min(calc(100% - 48px), var(--hc-max));
  margin: 10px auto 48px;
  padding-top: 38px;
}

.home-editor-content .hc-home {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

/* The Blueprint already supplies these Home sections above. */
.home-editor-content .hc-home .hc-hero,
.home-editor-content .hc-home .hc-grid {
  display: none !important;
}

.home-editor-content .hc-home .hc-intro {
  max-width: 820px !important;
  margin: 0 auto 34px !important;
  padding: 0 20px 26px !important;
}

.home-editor-content .hc-home h2 {
  color: var(--hc-navy) !important;
  font-size: 28px !important;
  line-height: 1.35 !important;
}

.home-editor-content .hc-home p {
  color: var(--hc-muted) !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.home-editor-content .hc-home .hc-feature {
  margin: 0 0 30px !important;
  padding: 30px 24px !important;
  border-left: 5px solid var(--hc-gold) !important;
  background: var(--hc-cream) !important;
}

.home-editor-content .hc-home .hc-bottom {
  margin: 0 !important;
  padding: 32px 24px !important;
  background: var(--hc-navy) !important;
}

.home-editor-content .hc-home .hc-bottom h2,
.home-editor-content .hc-home .hc-bottom p {
  color: var(--hc-white) !important;
}

.home-editor-content .hc-home .hc-button {
  background: var(--hc-gold) !important;
  color: var(--hc-navy) !important;
}

/* Normalize all supplied page wrappers without deleting their content. */
.page-editor-content .hc-start,
.page-editor-content .hc-travel,
.page-editor-content .hc-save,
.page-editor-content .hc-earn,
.page-editor-content .hc-learn,
.page-editor-content .hc-toolkit {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: var(--hc-muted) !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.page-editor-content .hc-start h1,
.page-editor-content .hc-start h2,
.page-editor-content .hc-start h3,
.page-editor-content .hc-travel h1,
.page-editor-content .hc-travel h2,
.page-editor-content .hc-travel h3,
.page-editor-content .hc-save h1,
.page-editor-content .hc-save h2,
.page-editor-content .hc-save h3,
.page-editor-content .hc-earn h1,
.page-editor-content .hc-earn h2,
.page-editor-content .hc-earn h3,
.page-editor-content .hc-learn h1,
.page-editor-content .hc-learn h2,
.page-editor-content .hc-learn h3,
.page-editor-content .hc-toolkit h1,
.page-editor-content .hc-toolkit h2,
.page-editor-content .hc-toolkit h3 {
  color: var(--hc-navy) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
}

.page-editor-content .hc-start h2,
.page-editor-content .hc-travel h2,
.page-editor-content .hc-save h2,
.page-editor-content .hc-earn h2,
.page-editor-content .hc-learn h2,
.page-editor-content .hc-toolkit h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
}

.page-editor-content .hc-start h3,
.page-editor-content .hc-travel h3,
.page-editor-content .hc-save h3,
.page-editor-content .hc-earn h3,
.page-editor-content .hc-learn h3,
.page-editor-content .hc-toolkit h3,
.page-editor-content .hc-toolkit .hc-trusted-card h3 a,
.page-editor-content .hc-earn .hc-earn-card h3 a {
  font-size: 24px !important;
  line-height: 1.4 !important;
}

.page-editor-content .hc-start p,
.page-editor-content .hc-travel p,
.page-editor-content .hc-save p,
.page-editor-content .hc-earn p,
.page-editor-content .hc-earn li,
.page-editor-content .hc-learn p,
.page-editor-content .hc-toolkit p {
  color: var(--hc-muted) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

/* v1.4: duplicate editor presentation blocks are omitted by PHP before rendering. */

.page-editor-start-here .hc-start-intro,
.page-editor-travel .hc-travel-intro,
.page-editor-save .hc-save-intro,
.page-editor-learn .hc-learn-intro {
  margin-top: 0 !important;
}

/* Clean, Blueprint-style panels for supplied page content. */
.page-editor-content .hc-travel-grid,
.page-editor-content .hc-earn-grid,
.page-editor-content .hc-learn-grid,
.page-editor-content .hc-trusted-grid {
  gap: 18px !important;
}

.page-editor-content .hc-travel-card,
.page-editor-content .hc-earn-card,
.page-editor-content .hc-learn-card,
.page-editor-content .hc-toolkit-card,
.page-editor-content .hc-trusted-card {
  border-top: 4px solid var(--hc-teal) !important;
  border-radius: 4px !important;
  background: var(--hc-white) !important;
  box-shadow: 0 4px 16px rgba(23, 49, 95, 0.07) !important;
}

.page-editor-content .hc-start-callout,
.page-editor-content .hc-travel-feature,
.page-editor-content .hc-save-feature,
.page-editor-content .hc-earn-feature,
.page-editor-content .hc-learn-feature,
.page-editor-content .hc-learn-note,
.page-editor-content .hc-toolkit-note {
  border-left: 5px solid var(--hc-gold) !important;
  background: var(--hc-cream) !important;
}

.page-editor-content .hc-travel-closing,
.page-editor-content .hc-save-closing,
.page-editor-content .hc-earn-closing,
.page-editor-content .hc-learn-closing,
.page-editor-content .hc-toolkit-closing {
  border-radius: 6px !important;
  background: var(--hc-navy) !important;
}

.page-editor-content .hc-travel-closing h2,
.page-editor-content .hc-save-closing h2,
.page-editor-content .hc-earn-closing h2,
.page-editor-content .hc-learn-closing h2,
.page-editor-content .hc-toolkit-closing h2,
.page-editor-content .hc-travel-closing p:not(.hc-travel-signoff),
.page-editor-content .hc-save-closing p:not(.hc-save-signoff),
.page-editor-content .hc-earn-closing p:not(.hc-earn-signoff),
.page-editor-content .hc-learn-closing p:not(.hc-learn-signoff),
.page-editor-content .hc-toolkit-closing p:not(.hc-toolkit-signoff) {
  color: var(--hc-white) !important;
}

.page-editor-content .hc-travel-signoff,
.page-editor-content .hc-save-signoff,
.page-editor-content .hc-earn-signoff,
.page-editor-content .hc-learn-signoff,
.page-editor-content .hc-toolkit-signoff,
.page-editor-content .hc-start-signoff {
  color: var(--hc-gold) !important;
}

.page-editor-content .hc-earn a,
.page-editor-content .hc-learn a,
.page-editor-content .hc-toolkit a,
.page-editor-content .hc-start-link {
  color: var(--hc-teal-dark) !important;
}

/* Resources Toolkit: its own full-width column below the resource rows. */
.resources-editor-content {
  margin-top: 46px;
  padding-top: 44px;
}

.resources-editor-content .hc-toolkit {
  max-width: 900px !important;
}

.resources-editor-content .hc-toolkit h1 {
  display: block !important;
  margin: 0 0 12px !important;
  color: var(--hc-navy) !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.resources-editor-content .hc-toolkit-subtitle {
  color: var(--hc-teal-dark) !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

.resources-editor-content .hc-toolkit-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
}

.resources-editor-content .hc-toolkit-card {
  min-width: 0 !important;
  padding: 22px !important;
}

.resources-editor-content .hc-toolkit-card h3,
.resources-editor-content .hc-trusted-card h3 a {
  overflow-wrap: anywhere !important;
}

.resources-editor-content .hc-trusted-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.resources-editor-content .hc-trusted-card {
  min-width: 0 !important;
  background: var(--hc-pale) !important;
}

/* Generic pages and post archive */
.entry-content {
  color: var(--hc-ink);
  font-size: 16px;
  line-height: 1.75;
}

.entry-content h2,
.entry-content h3 {
  color: var(--hc-navy);
}

.entry-content h2 {
  margin-top: 28px;
  font-size: 24px;
}

.entry-content h3 {
  margin-top: 24px;
  font-size: 20px;
}

.entry-content a {
  color: var(--hc-teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

/* Single post */
.single-shell {
  width: min(calc(100% - 48px), 900px);
  margin: auto;
  padding: 30px 0 55px;
}

.category-pill {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid var(--hc-teal-dark);
  border-radius: 4px;
  color: var(--hc-teal-dark);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.single-title {
  margin: 8px 0;
  color: var(--hc-navy);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
}

.single-meta {
  margin-bottom: 18px;
  color: var(--hc-muted);
  font-size: 10px;
}

.single-featured img {
  width: 100%;
  max-height: 460px;
  border-radius: 6px;
  object-fit: cover;
}

.single-shell .entry-content {
  margin-top: 24px;
}

.share-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
  font-size: 11px;
}

.share-dot {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--hc-navy);
  color: var(--hc-white);
  font-weight: 700;
}

.related-title {
  color: var(--hc-navy);
  font-size: 18px;
}

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

.related-card img {
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: 4px;
  object-fit: cover;
}

.related-card h3 {
  margin: 4px 0 0;
  color: var(--hc-navy);
  font-size: 12px;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: var(--hc-navy);
  color: var(--hc-white);
}

.footer-inner {
  display: flex;
  gap: 34px;
  align-items: center;
  min-height: 92px;
}

.footer-brand {
  margin-right: 12px;
  font-weight: 800;
  line-height: 0.9;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 11px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--hc-gold);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-left: auto;
  font-size: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.footer-social a:hover,
.footer-social a:focus {
  background: var(--hc-gold);
  color: #17315f;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}

.share-row .share-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2f5;
  color: #17315f;
  margin-left: 6px;
}

.share-row .share-dot:hover,
.share-row .share-dot:focus {
  background: var(--hc-gold);
}

.share-row .share-dot svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}
.footer-social svg.icon-mail,
.share-row .share-dot svg.icon-mail {
	  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.copyright {
  padding: 0 18px 12px;
  font-size: 10px;
  text-align: center;
}

@media (max-width: 940px) {
  .primary-nav ul {
    gap: 13px;
  }

  .primary-nav a {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .hc-wrap {
    width: min(calc(100% - 28px), var(--hc-max));
  }

  .header-inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    min-height: 74px;
  }

  .menu-toggle {
    display: grid;
    grid-column: 1;
    place-items: center;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
  }

  .brand .custom-logo,
  .brand .fallback-logo {
    width: auto;
    max-width: 132px;
    max-height: 66px;
    object-fit: contain;
  }

  .brand-text {
    font-size: 19px;
  }

  .search-link {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 16px 24px 22px;
    border-top: 1px solid var(--hc-line);
    border-bottom: 1px solid var(--hc-line);
    background: var(--hc-white);
    box-shadow: 0 10px 24px rgba(23, 49, 95, 0.12);
  }

  .primary-nav.open {
    display: block;
  }

  .primary-nav ul {
    display: block;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--hc-line);
  }

  .primary-nav li:last-child {
    border-bottom: 0;
  }

  .primary-nav a {
    padding: 10px 4px;
    font-size: 15px;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-top: 20px;
  }

  .hero-copy {
    display: contents;
    text-align: center;
  }

  .eyebrow {
    order: 1;
    margin: 0 0 7px;
    font-size: 11px;
  }

  .hero h1 {
    order: 2;
    margin: 0 10px 14px;
    font-size: 27px;
    letter-spacing: -0.5px;
  }

  .hero p {
    display: none;
  }

  .hero-media {
    order: 3;
    height: 178px;
    border-radius: 4px;
  }

  .hero-actions {
    order: 4;
    padding-top: 7px;
  }

  .btn {
    display: flex;
    width: 100%;
    margin: 0 0 7px;
    padding: 9px 14px;
    font-size: 11px;
  }

  .section-heading {
    margin: 24px 0 20px;
    font-size: 20px;
  }

  .hub-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .hub {
    min-width: 0;
    padding: 0 4px 14px;
    border: 0;
  }

  .hub-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .hub strong {
    display: block;
    margin: 0;
    font-size: 9px;
  }

  .hub > span:last-child {
    display: none;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .post-card h3 {
    font-size: 12px;
  }

  .content-shell {
    width: min(calc(100% - 36px), var(--hc-content));
    padding: 28px 0 46px;
  }

  .page-title,
  .resources-title {
    font-size: 30px;
  }

  .page-intro {
    font-size: 14px;
  }

  .article-row {
    grid-template-columns: 92px 1fr 18px;
    gap: 12px;
    min-height: 94px;
    padding: 12px 0;
  }

  .article-image {
    width: 92px;
    height: 68px;
  }

  .article-title {
    font-size: 14px;
  }

  .article-excerpt {
    display: none;
  }

  .arrow {
    width: 18px;
    height: 18px;
  }

  .resource-row {
    grid-template-columns: 44px 1fr 18px;
    gap: 13px;
    min-height: 96px;
    padding: 14px 2px;
  }

  .resource-icon {
    width: 38px;
    height: 38px;
  }

  .resource-copy strong {
    font-size: 17px;
  }

  .resource-copy > span {
    font-size: 13px;
    line-height: 1.5;
  }

  .page-editor-content,
  .resources-editor-content {
    margin-top: 42px;
    padding-top: 34px;
  }

  .home-editor-content {
    width: min(calc(100% - 28px), var(--hc-max));
    margin-bottom: 34px;
    padding-top: 28px;
  }

  .home-editor-content .hc-home h2,
  .page-editor-content .hc-start h2,
  .page-editor-content .hc-travel h2,
  .page-editor-content .hc-save h2,
  .page-editor-content .hc-earn h2,
  .page-editor-content .hc-learn h2,
  .page-editor-content .hc-toolkit h2 {
    font-size: 26px !important;
  }

  .page-editor-content .hc-start h3,
  .page-editor-content .hc-travel h3,
  .page-editor-content .hc-save h3,
  .page-editor-content .hc-earn h3,
  .page-editor-content .hc-learn h3,
  .page-editor-content .hc-toolkit h3,
  .page-editor-content .hc-toolkit .hc-trusted-card h3 a,
  .page-editor-content .hc-earn .hc-earn-card h3 a {
    font-size: 22px !important;
  }

  .page-editor-content .hc-start p,
  .page-editor-content .hc-travel p,
  .page-editor-content .hc-save p,
  .page-editor-content .hc-earn p,
  .page-editor-content .hc-earn li,
  .page-editor-content .hc-learn p,
  .page-editor-content .hc-toolkit p,
  .home-editor-content .hc-home p {
    font-size: 18px !important;
  }

  .page-editor-content .hc-travel-grid,
  .page-editor-content .hc-earn-grid,
  .page-editor-content .hc-learn-grid,
  .resources-editor-content .hc-toolkit-grid,
  .resources-editor-content .hc-trusted-grid {
    grid-template-columns: 1fr !important;
  }

  .resources-editor-content .hc-toolkit h1 {
    font-size: 30px !important;
  }

  .resources-editor-content .hc-toolkit-card,
  .resources-editor-content .hc-trusted-card {
    width: 100% !important;
    padding: 20px !important;
  }

  .single-shell {
    width: min(calc(100% - 36px), 900px);
    padding-top: 24px;
  }

  .single-title {
    font-size: 27px;
  }

  .entry-content {
    font-size: 16px;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .related-card h3 {
    font-size: 10px;
  }

  .footer-inner {
    display: block;
    padding: 22px 0;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
    margin: 14px 0;
  }
}

@media (max-width: 410px) {
  .resource-copy strong {
    font-size: 16px;
  }

  .resource-copy > span {
    font-size: 12px;
  }

  .article-row {
    grid-template-columns: 82px 1fr 16px;
    gap: 10px;
  }

  .article-image {
    width: 82px;
    height: 64px;
  }
}

/* ==========================================================
   v0.6 Category redesign — Travel / Save / Earn / Learn only
   Simple photo + text-card system; no JS or custom SVG required.
   ========================================================== */
.hc-category-redesign { padding-top: 34px; padding-bottom: 48px; }
.hc-category-redesign .hc-category-heading { margin-bottom: 22px; }
.hc-category-redesign .page-intro { max-width: 720px; margin-bottom: 0; }
.hc-category-hero { margin: 22px 0 22px; border-radius: 14px; overflow: hidden; aspect-ratio: 1200 / 430; background: #f3f6f7; }
.hc-category-hero img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hc-topic-section { margin: 0 0 34px; }
.hc-topic-section > h2,
.hc-latest-section > h2 { margin: 0 0 14px; color: #17315f; font-size: 20px; text-align: center; }
.hc-latest-section > h2 { text-align: left; }
.hc-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #e2e8eb; border-radius: 10px; overflow: hidden; background: #fff; }
.hc-topic-card { min-height: 100px; padding: 18px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; text-decoration: none; color: #17315f; border-right: 1px solid #e2e8eb; }
.hc-topic-card:last-child { border-right: 0; }
.hc-topic-card strong { font-size: 14px; line-height: 1.25; }
.hc-topic-mark { width: 25px; height: 25px; border: 2px solid #12aeb5; border-radius: 7px; position: relative; }
.hc-topic-mark::after { content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #e5a72c; right: -4px; top: -4px; }
.hc-category-save .hc-topic-mark { border-color: #5c9c60; }
.hc-category-earn .hc-topic-mark { border-color: #e5a72c; }
.hc-category-learn .hc-topic-mark { border-color: #4f87c7; }
.hc-category-redesign .article-excerpt { display: none; }
.hc-category-redesign .article-row { min-height: 112px; }
.hc-category-redesign .article-image { height: 82px; }
.hc-category-redesign .back-home { margin-top: 24px; }
.hc-coming-soon { padding: 24px 0; color: #747b8e; border-top: 1px solid #e2e8eb; border-bottom: 1px solid #e2e8eb; }

@media (max-width: 700px) {
  .hc-category-redesign { padding-top: 24px; }
  .hc-category-hero { aspect-ratio: 16 / 6.6; margin: 18px 0; border-radius: 10px; }
  .hc-topic-section { margin-bottom: 28px; }
  .hc-topic-section > h2, .hc-latest-section > h2 { font-size: 18px; }
  .hc-topic-grid { grid-template-columns: repeat(4, 1fr); }
  .hc-topic-card { min-height: 86px; padding: 12px 5px; gap: 7px; }
  .hc-topic-card strong { font-size: 10px; }
  .hc-topic-mark { width: 22px; height: 22px; }
  .hc-category-redesign .article-row { min-height: 104px; }
}

/* v0.8 precision repair — category navigation restores approved icon-led compact layout. */
.hc-category-redesign{max-width:760px!important;padding:28px 18px 40px!important}
.hc-category-redesign .breadcrumbs{font-size:11px!important;margin-bottom:12px!important}
.hc-category-redesign .page-title{font-size:30px!important;line-height:1.05!important;margin:0!important}
.hc-category-redesign .title-rule{display:block!important;width:38px!important;height:3px!important;margin:8px 0 11px!important;background:#e5a72c!important;border:0!important}
.hc-category-redesign .page-intro{font-size:13px!important;line-height:1.42!important;margin:0 0 14px!important;max-width:610px!important}
.hc-category-redesign .category-hero{display:block;width:100%;height:155px!important;border-radius:8px!important;margin:0 0 10px!important;object-fit:cover!important}
.hc-category-redesign .category-section-title{font-size:15px!important;line-height:1.2!important;margin:0 0 7px!important;color:#17315f}
.hc-category-redesign .category-topic-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid #e2e8eb;border-radius:8px;overflow:hidden;background:#fff;margin:0 0 24px!important}
.hc-category-redesign .category-topic{min-height:68px!important;font-size:9.5px!important;line-height:1.15!important;padding:6px 2px!important;gap:4px!important;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;text-decoration:none;color:#17315f;border-right:1px solid #e2e8eb}
.hc-category-redesign .category-topic:last-child{border-right:0}
.hc-category-redesign .topic-icon{display:flex;align-items:center;justify-content:center;color:#12aeb5}
.hc-category-redesign.green .topic-icon{color:#5c9c60}.hc-category-redesign.gold .topic-icon{color:#e5a72c}.hc-category-redesign.blue .topic-icon{color:#4f87c7}
.hc-category-redesign .topic-icon svg{width:23px!important;height:23px!important}
.hc-category-redesign .category-latest h2{font-size:15px!important;padding:0 0 7px!important;margin:0!important;color:#17315f}
.hc-category-redesign .article-row{min-height:72px!important;grid-template-columns:76px minmax(0,1fr) 14px!important;gap:9px!important;padding:7px 0!important}
.hc-category-redesign .article-image{width:76px!important;height:50px!important;border-radius:4px!important;overflow:hidden}
.hc-category-redesign .article-image img{width:100%;height:100%;object-fit:cover}
.hc-category-redesign .article-title{font-size:10.5px!important;line-height:1.22!important}
.hc-category-redesign .meta{font-size:8.5px!important;margin-top:4px!important}
.hc-category-redesign .arrow svg{width:13px!important;height:13px!important}
.hc-category-redesign .back-home{font-size:10.5px!important;margin-top:10px!important}
@media(min-width:701px){.hc-category-redesign{max-width:760px!important;padding-top:32px!important}.hc-category-redesign .category-hero{height:170px!important}.hc-category-redesign .page-intro{font-size:14px!important}.hc-category-redesign .page-title{font-size:32px!important}}

/* Homepage: never let an editor-added Query/Latest Posts block create a second giant feed. */
.home-editor-content .wp-block-latest-posts,
.home-editor-content .wp-block-query,
.home-editor-content .wp-block-post-template,
.home-editor-content ul.wp-block-latest-posts,
.home-editor-content ul.wp-block-post-template,
.home-editor-content .wp-block-latest-posts__featured-image,
.home-editor-content .wp-block-post-featured-image{display:none!important}


/* v0.9 targeted repair: one title accent, category-colored line icons, WordPress content below theme features. */
.hc-category-redesign .page-title::after{display:none!important;content:none!important}
.hc-category-redesign .topic-icon svg{fill:none!important;stroke:currentColor!important;stroke-width:2.2!important;stroke-linecap:round!important;stroke-linejoin:round!important}
.hc-category-redesign.teal .topic-icon{color:#12aeb5!important}
.hc-category-redesign.green .topic-icon{color:#5c9c60!important}
.hc-category-redesign.gold .topic-icon{color:#e5a72c!important}
.hc-category-redesign.blue .topic-icon{color:#4f87c7!important}
.hc-category-editor-content{margin-top:34px;padding-top:28px;border-top:1px solid #dfe8eb}


/* =====================================================================
   HOLIDAY CENTS — MIGRATED PAGE-CONTENT STYLES (v1.5)
   Moved out of individual WordPress page editors into the theme so that
   responsive behavior and design updates are controlled in one place.
   Each block is scoped to its own top-level class and does not need to
   be duplicated in post content again.
   ===================================================================== */

/* ---- home page content ---- */
.hc-home {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #17315f;
  max-width: 1200px;
  margin: 0 auto;
}

.hc-home * {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

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

.hc-home h1 {
  font-size: 30px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: #17315f !important;
}

.hc-home h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #17315f !important;
}

.hc-home h3 {
  font-size: 24px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #17315f !important;
}

.hc-home p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  color: #747b8e !important;
}

.hc-hero {
  background: linear-gradient(135deg, #12aeb5 0%, #1388a7 100%);
  text-align: center;
  padding: 50px 24px;
  margin-bottom: 35px;
}

.hc-hero h1 {
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

.hc-tagline {
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  color: #e5a72c !important;
  margin-bottom: 18px;
}

.hc-hero p {
  color: #ffffff !important;
  max-width: 720px;
  margin: 0 auto 26px !important;
}

.hc-button {
  display: inline-block;
  background: #e5a72c;
  color: #17315f !important;
  padding: 12px 22px;
  margin: 5px;
  font-size: 17px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 4px;
}

.hc-button-light {
  background: #ffffff;
  color: #1388a7 !important;
}

.hc-intro {
  text-align: center;
  padding: 10px 20px 32px;
}

.hc-intro h2 {
  margin-bottom: 12px !important;
}

.hc-intro p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 38px;
}

.hc-card {
  background: #ffffff;
  border-top: 4px solid #12aeb5;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.hc-card h3 {
  margin-bottom: 8px !important;
}

.hc-card p {
  margin-bottom: 14px !important;
}

.hc-card a {
  color: #1388a7 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.hc-feature {
  background: #fff8e8;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 38px;
}

.hc-feature h2 {
  margin-bottom: 12px !important;
}

.hc-feature p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px !important;
}

.hc-bottom {
  background: #17315f;
  text-align: center;
  padding: 34px 24px;
  margin-bottom: 30px;
}

.hc-bottom h2 {
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

.hc-bottom p {
  color: #ffffff !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px !important;
}

@media (max-width: 700px) {
  .hc-home h1 {
    font-size: 30px !important;
  }

  .hc-home h2 {
    font-size: 28px !important;
  }

  .hc-home h3 {
    font-size: 24px !important;
  }

  .hc-home p {
    font-size: 18px !important;
  }

  .hc-hero {
    padding: 42px 20px;
  }

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

/* ---- start-here page content ---- */
.hc-start {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #17315f;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 22px 48px;
}

.hc-start * {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

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

.hc-start h1 {
  font-size: 30px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px !important;
}

.hc-start h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 12px !important;
}

.hc-start h3 {
  font-size: 24px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px !important;
}

.hc-start p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  color: #747b8e !important;
}

.hc-start-header {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 4px solid #12aeb5;
}

.hc-start-subtitle {
  color: #e5a72c !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  margin-bottom: 14px;
}

.hc-start-header p {
  max-width: 760px;
  margin-bottom: 0 !important;
}

.hc-start-intro {
  margin-bottom: 34px;
}

.hc-start-intro p {
  margin-bottom: 16px !important;
}

.hc-start-path {
  padding: 22px 0;
  border-bottom: 1px solid #dfe8eb;
}

.hc-start-path:first-of-type {
  border-top: 1px solid #dfe8eb;
}

.hc-start-path h3 {
  font-size: 24px !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}

.hc-start-path p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  margin-bottom: 12px !important;
}

.hc-start-link {
  display: inline-block;
  color: #1388a7 !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.hc-start-callout {
  background: #fff8e8;
  border-left: 5px solid #e5a72c;
  padding: 22px;
  margin: 36px 0;
}

.hc-start-callout h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  margin-bottom: 10px !important;
}

.hc-start-callout p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

/* Closing section */
.hc-start .hc-start-closing {
  width: 100%;
  padding-top: 8px;
  text-align: left !important;
}

.hc-start .hc-start-closing .hc-start-closing-text {
  display: block !important;
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto 22px !important;
  padding: 0 !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  color: #747b8e !important;
  text-align: left !important;
}

.hc-start .hc-start-closing .hc-start-signoff {
  display: block !important;
  width: 100% !important;
  color: #e5a72c !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 0 !important;
}

@media (max-width: 700px) {
  .hc-start {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hc-start h1 {
    font-size: 30px !important;
  }

  .hc-start h2,
  .hc-start-callout h2 {
    font-size: 28px !important;
  }

  .hc-start h3,
  .hc-start-path h3 {
    font-size: 24px !important;
  }

  .hc-start p,
  .hc-start-path p,
  .hc-start-callout p,
  .hc-start .hc-start-closing .hc-start-closing-text {
    font-size: 18px !important;
  }
}

/* ---- travel page content ---- */
.hc-travel {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #17315f;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 22px 48px;
}

.hc-travel * {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

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

.hc-travel h1 {
  font-size: 30px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px;
}

.hc-travel h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 12px;
}

.hc-travel h3 {
  font-size: 24px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px;
}

.hc-travel p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  font-weight: 400;
  color: #747b8e !important;
}

.hc-travel-header {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 4px solid #12aeb5;
}

.hc-travel-subtitle {
  color: #e5a72c !important;
  font-size: 20px !important;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 14px;
}

.hc-travel-header p {
  max-width: 760px;
  margin-bottom: 0;
}

.hc-travel-intro {
  margin-bottom: 32px;
}

.hc-travel-intro p {
  margin-bottom: 16px;
}

.hc-travel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 38px;
}

.hc-travel-card {
  background: #ffffff;
  border-top: 4px solid #12aeb5;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.hc-travel-card h3 {
  margin-bottom: 8px;
}

.hc-travel-card p {
  margin-bottom: 0;
}

.hc-travel-feature {
  background: #fff8e8;
  border-left: 5px solid #e5a72c;
  padding: 24px;
  margin: 36px 0;
}

.hc-travel-feature h2 {
  margin-bottom: 10px;
}

.hc-travel-feature p {
  margin-bottom: 0;
}

.hc-travel-guides {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #dfe8eb;
}

.hc-travel-guides p {
  margin-bottom: 16px;
}

.hc-travel-closing {
  background: #17315f;
  padding: 28px 24px;
  margin-top: 36px;
  text-align: center;
}

.hc-travel-closing h2 {
  color: #ffffff !important;
  margin-bottom: 10px;
}

.hc-travel-closing p {
  color: #ffffff !important;
  max-width: 700px;
  margin: 0 auto 14px;
}

.hc-travel-signoff {
  color: #e5a72c !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 700px) {
  .hc-travel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hc-travel-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- save page content ---- */
.hc-save {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #17315f;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 22px 48px;
}

.hc-save * {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

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

.hc-save h1 {
  font-size: 30px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px !important;
}

.hc-save h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 12px !important;
}

.hc-save h3 {
  font-size: 24px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px !important;
}

.hc-save p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  color: #747b8e !important;
}

.hc-save-header {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 4px solid #12aeb5;
}

.hc-save-subtitle {
  color: #e5a72c !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  margin-bottom: 14px;
}

.hc-save-header p {
  max-width: 760px;
  margin-bottom: 0 !important;
}

.hc-save-intro {
  margin-bottom: 34px;
}

.hc-save-intro p {
  margin-bottom: 16px !important;
}

.hc-save-section {
  padding: 24px 0;
  border-bottom: 1px solid #dfe8eb;
}

.hc-save-section:first-of-type {
  border-top: 1px solid #dfe8eb;
}

.hc-save-section h3 {
  margin-bottom: 8px !important;
}

.hc-save-section p {
  margin-bottom: 0 !important;
}

.hc-save-feature {
  background: #fff8e8;
  border-left: 5px solid #e5a72c;
  padding: 24px;
  margin: 36px 0;
}

.hc-save-feature h2 {
  margin-bottom: 10px !important;
}

.hc-save-feature p {
  margin-bottom: 0 !important;
}

.hc-save-guides {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #dfe8eb;
}

.hc-save-guides p {
  margin-bottom: 16px !important;
}

.hc-save-closing {
  background: #17315f;
  padding: 28px 24px;
  margin-top: 36px;
  text-align: center;
}

.hc-save-closing h2 {
  color: #ffffff !important;
  margin-bottom: 10px !important;
}

.hc-save-closing p {
  color: #ffffff !important;
  max-width: 700px;
  margin: 0 auto 14px !important;
  text-align: center !important;
}

.hc-save-closing .hc-save-signoff {
  color: #e5a72c !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  text-align: center !important;
}

@media (max-width: 700px) {
  .hc-save {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hc-save h1 {
    font-size: 30px !important;
  }

  .hc-save h2 {
    font-size: 28px !important;
  }

  .hc-save h3 {
    font-size: 24px !important;
  }

  .hc-save p {
    font-size: 18px !important;
  }
}

/* ---- learn page content ---- */
.hc-learn {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #17315f;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 22px 48px;
}

.hc-learn * {
  box-sizing: border-box;
}

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

.hc-learn h1 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 30px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px;
}

.hc-learn h2 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 28px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 12px;
}

.hc-learn h3 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #17315f !important;
  margin-bottom: 8px;
}

.hc-learn p {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  color: #747b8e !important;
}

.hc-learn a {
  color: #12aeb5 !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}

.hc-learn a:hover,
.hc-learn a:focus {
  color: #17315f !important;
  text-decoration-color: #e5a72c !important;
}

.hc-learn-header {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 4px solid #12aeb5;
}

.hc-learn-subtitle {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #e5a72c !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  margin-bottom: 14px;
}

.hc-learn-header p {
  max-width: 760px;
  margin-bottom: 0;
}

.hc-learn-intro {
  margin-bottom: 36px;
}

.hc-learn-intro p {
  margin-bottom: 16px;
}

.hc-learn-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #dfe8eb;
}

.hc-learn-section:first-of-type {
  margin-top: 0;
}

.hc-learn-section-head {
  margin-bottom: 22px;
}

.hc-learn-section-head h2 {
  margin-bottom: 10px;
}

.hc-learn-section-head p {
  margin-bottom: 0;
  max-width: 790px;
}

.hc-learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.hc-learn-card {
  background: #ffffff;
  border-top: 4px solid #12aeb5;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.hc-learn-card h3 {
  margin-bottom: 8px;
}

.hc-learn-card p {
  margin-bottom: 12px;
}

.hc-learn-card p:last-child {
  margin-bottom: 0;
}

.hc-learn-resource-link {
  margin-top: 14px !important;
}

.hc-learn-feature {
  background: #fff8e8;
  border-left: 5px solid #e5a72c;
  padding: 24px;
  margin: 34px 0 0;
}

.hc-learn-feature h2 {
  margin-bottom: 10px;
}

.hc-learn-feature p {
  margin-bottom: 0;
}

.hc-learn-note {
  background: #fff8e8;
  border-left: 5px solid #e5a72c;
  padding: 18px 20px;
  margin-top: 20px;
}

.hc-learn-note p {
  margin-bottom: 0 !important;
}

.hc-learn-note strong {
  color: #17315f !important;
}

.hc-learn-closing {
  background: #17315f !important;
  padding: 28px 24px;
  margin-top: 42px;
  text-align: center;
}

.hc-learn .hc-learn-closing h2 {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  margin-bottom: 14px !important;
  text-align: center !important;
}

.hc-learn .hc-learn-closing p.hc-learn-closing-text {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  max-width: 700px;
  margin: 0 auto 18px !important;
  text-align: left !important;
}

.hc-learn .hc-learn-closing p.hc-learn-signoff {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #e5a72c !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  text-align: center !important;
}

@media (max-width: 700px) {
  .hc-learn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hc-learn h1 {
    font-size: 30px !important;
  }

  .hc-learn h2 {
    font-size: 28px !important;
  }

  .hc-learn h3 {
    font-size: 24px !important;
  }

  .hc-learn p {
    font-size: 18px !important;
  }

  .hc-learn-grid {
    grid-template-columns: 1fr;
  }

  .hc-learn-section {
    margin-top: 34px;
    padding-top: 26px;
  }

  .hc-learn .hc-learn-closing p.hc-learn-closing-text {
    font-size: 18px !important;
  }

  .hc-learn .hc-learn-closing p.hc-learn-signoff {
    font-size: 20px !important;
  }
}

/* ---- earn page content ---- */
.hc-earn {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 18px 40px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  color: #747b8e !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.hc-earn * {
  box-sizing: border-box !important;
}

.hc-earn h1,
.hc-earn h2,
.hc-earn h3 {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #17315f !important;
  font-weight: 700 !important;
}

.hc-earn h1 {
  font-size: 30px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  margin: 0 0 12px !important;
}

.hc-earn h2 {
  font-size: 28px !important;
  line-height: 1.3 !important;
  margin: 36px 0 14px !important;
}

.hc-earn h3 {
  font-size: 24px !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
}

.hc-earn p,
.hc-earn li {
  font-size: 18px !important;
  line-height: 1.65 !important;
  color: #747b8e !important;
}

.hc-earn p.hc-earn-subtitle {
  text-align: center !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  color: #12aeb5 !important;
  font-weight: 700 !important;
  margin: 0 0 28px !important;
}

.hc-earn-divider {
  width: 72px !important;
  height: 4px !important;
  background: #e5a72c !important;
  border: 0 !important;
  margin: 24px auto 30px !important;
}

.hc-earn-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin: 24px 0 34px !important;
}

.hc-earn-card {
  background: #ffffff !important;
  border-top: 4px solid #12aeb5 !important;
  padding: 22px !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 20px rgba(23, 49, 95, 0.08) !important;
}

/* Clickable card headlines */
.hc-earn .hc-earn-card h3 a {
  color: #17315f !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: #12aeb5 !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 5px !important;
}

.hc-earn .hc-earn-card h3 a:hover,
.hc-earn .hc-earn-card h3 a:focus {
  color: #12aeb5 !important;
  text-decoration-color: #e5a72c !important;
}

.hc-earn-card p {
  margin-bottom: 0 !important;
}

.hc-earn-feature {
  background: #fff8e8 !important;
  border-left: 5px solid #e5a72c !important;
  padding: 20px !important;
  margin: 28px 0 !important;
  border-radius: 4px !important;
}

.hc-earn-feature strong {
  color: #17315f !important;
}

.hc-earn-resources {
  background: #f7fbfc !important;
  border-top: 4px solid #12aeb5 !important;
  padding: 22px !important;
  margin: 20px 0 30px !important;
  border-radius: 8px !important;
}

.hc-earn-resources p {
  margin: 0 0 14px !important;
}

.hc-earn-resources p:last-child {
  margin-bottom: 0 !important;
}

.hc-earn-resources a {
  color: #12aeb5 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

.hc-earn-resources a:hover {
  text-decoration: none !important;
}

.hc-earn-closing {
  background: #17315f !important;
  padding: 28px 24px !important;
  margin-top: 36px !important;
  border-radius: 8px !important;
}

.hc-earn .hc-earn-closing h2 {
  color: #ffffff !important;
  margin-top: 0 !important;
}

.hc-earn .hc-earn-closing p.hc-earn-closing-text {
  color: #ffffff !important;
  text-align: left !important;
}

.hc-earn .hc-earn-closing p.hc-earn-signoff {
  color: #e5a72c !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 700px) {
  .hc-earn {
    padding: 0 14px 32px !important;
  }

  .hc-earn h1 {
    font-size: 30px !important;
  }

  .hc-earn h2 {
    font-size: 28px !important;
  }

  .hc-earn h3,
  .hc-earn .hc-earn-card h3 a {
    font-size: 24px !important;
  }

  .hc-earn p,
  .hc-earn li {
    font-size: 18px !important;
  }

  .hc-earn p.hc-earn-subtitle {
    font-size: 20px !important;
  }

  .hc-earn-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ---- resources page content ---- */
/* Hide theme-generated page title */
body.page .entry-header .entry-title,
body.page .post-header .entry-title,
body.page h1.page-title,
body.page .wp-block-post-title {
  display: none !important;
}

.hc-toolkit {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 18px 40px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  color: #747b8e !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.hc-toolkit * {
  box-sizing: border-box !important;
}

.hc-toolkit h1,
.hc-toolkit h2,
.hc-toolkit h3 {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #17315f !important;
  font-weight: 700 !important;
}

.hc-toolkit h1 {
  font-size: 30px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  margin: 0 0 12px !important;
}

.hc-toolkit h2 {
  font-size: 28px !important;
  line-height: 1.3 !important;
  margin: 36px 0 14px !important;
}

.hc-toolkit h3 {
  font-size: 24px !important;
  line-height: 1.35 !important;
  margin: 0 0 12px !important;
}

.hc-toolkit p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  color: #747b8e !important;
}

.hc-toolkit a {
  color: #12aeb5 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

.hc-toolkit a:hover,
.hc-toolkit a:focus {
  color: #17315f !important;
  text-decoration-color: #e5a72c !important;
}

.hc-toolkit-subtitle {
  text-align: center !important;
  color: #12aeb5 !important;
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  margin: 0 0 26px !important;
}

.hc-toolkit-divider {
  width: 72px !important;
  height: 4px !important;
  background: #e5a72c !important;
  border: 0 !important;
  margin: 24px auto 30px !important;
}

.hc-toolkit-intro {
  margin-bottom: 28px !important;
}

/* TOOLKIT CARDS */
.hc-toolkit-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  margin: 28px 0 36px !important;
}

.hc-toolkit-card {
  background: #ffffff !important;
  border-top: 4px solid #12aeb5 !important;
  padding: 24px !important;
  border-radius: 6px !important;
  box-shadow: 0 6px 20px rgba(23, 49, 95, 0.08) !important;
}

.hc-toolkit-card h3 {
  color: #17315f !important;
}

.hc-toolkit-card p {
  margin-bottom: 12px !important;
}

.hc-toolkit-card p:last-child {
  margin-bottom: 0 !important;
}

.hc-toolkit-label {
  display: inline-block !important;
  margin-bottom: 12px !important;
  padding: 5px 10px !important;
  background: #fff8e8 !important;
  color: #17315f !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
}

.hc-toolkit-resource {
  margin-top: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid #dfe8eb !important;
}

.hc-toolkit-resource a {
  font-size: 17px !important;
}

.hc-toolkit-note {
  background: #fff8e8 !important;
  border-left: 5px solid #e5a72c !important;
  padding: 20px !important;
  margin: 30px 0 !important;
  border-radius: 4px !important;
}

.hc-toolkit-note p {
  margin: 0 !important;
}

/* TRUSTED RESOURCES */
.hc-trusted-section {
  margin-top: 36px !important;
}

.hc-trusted-intro {
  margin-bottom: 22px !important;
}

.hc-trusted-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
  margin: 24px 0 32px !important;
}

.hc-trusted-card {
  background: #f7fbfc !important;
  border-top: 4px solid #12aeb5 !important;
  padding: 22px !important;
  border-radius: 6px !important;
}

.hc-trusted-card h3 {
  margin-bottom: 10px !important;
}

/* Clickable trusted-resource headlines */
.hc-toolkit .hc-trusted-card h3 a {
  color: #17315f !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: #12aeb5 !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 5px !important;
}

.hc-toolkit .hc-trusted-card h3 a:hover,
.hc-toolkit .hc-trusted-card h3 a:focus {
  color: #12aeb5 !important;
  text-decoration-color: #e5a72c !important;
}

.hc-trusted-card p {
  margin-bottom: 0 !important;
}

.hc-toolkit-closing {
  background: #17315f !important;
  padding: 28px 24px !important;
  margin-top: 34px !important;
  border-radius: 8px !important;
}

.hc-toolkit .hc-toolkit-closing h2 {
  color: #ffffff !important;
  margin-top: 0 !important;
}

.hc-toolkit .hc-toolkit-closing p {
  color: #ffffff !important;
}

.hc-toolkit .hc-toolkit-closing .hc-toolkit-signoff {
  color: #e5a72c !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 0 !important;
}

@media (min-width: 760px) {
  .hc-toolkit-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 700px) {
  .hc-toolkit {
    padding: 0 14px 32px !important;
  }

  .hc-toolkit h1 {
    font-size: 28px !important;
  }

  .hc-toolkit h2 {
    font-size: 28px !important;
  }

  .hc-toolkit h3,
  .hc-toolkit .hc-trusted-card h3 a {
    font-size: 24px !important;
  }

  .hc-toolkit p {
    font-size: 18px !important;
  }

  .hc-toolkit-subtitle {
    font-size: 20px !important;
  }

  .hc-toolkit-card,
  .hc-trusted-card {
    padding: 22px !important;
  }

  .hc-trusted-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Packing & Budget-Saver Checklist — Resources page only */

#hc-packing-checklist [hidden] {
  display: none !important;
}

#hc-packing-checklist h4 {
  margin: 1.75rem 0 0.6rem;
  color: #17315f;
}

#hc-packing-checklist h4:first-child {
  margin-top: 0;
}

#hc-packing-checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#hc-packing-checklist li {
  margin: 0;
  padding: 0.45rem 0;
}

#hc-packing-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  line-height: 1.45;
}

#hc-packing-checklist input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  accent-color: #12aeb5;
}

#hc-packing-checklist .hc-check-hint {
  display: block;
  margin: 0.3rem 0 0 1.8rem;
  font-size: 0.875em;
  color: #747b8e;
}

#hc-packing-checklist .hc-checklist-status {
  margin: 1.5rem 0 0.75rem;
  font-size: 0.875em;
  color: #747b8e;
}

#hc-packing-checklist .hc-checklist-reset {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 1px solid #17315f;
  border-radius: 6px;
  background: transparent;
  color: #17315f;
  font: inherit;
  font-size: 0.9375em;
  cursor: pointer;
}

#hc-packing-checklist .hc-checklist-reset:hover,
#hc-packing-checklist .hc-checklist-reset:focus {
  background: #e5a72c;
  border-color: #e5a72c;
  color: #17315f;
}

/* Family Side-Hustle True ROI Calculator — Resources page only */

#hc-roi-calculator [hidden] {
    display: none !important;
}

#hc-roi-calculator {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    background: #ffffff;
}

#hc-roi-calculator h4 {
    margin: 1.5rem 0 0.65rem;
    color: #17315f;
    font-size: 1.1rem;
    line-height: 1.35;
}

#hc-roi-calculator h4:first-child {
    margin-top: 0;
}

#hc-roi-calculator p {
    margin: 0 0 1rem;
}

#hc-roi-calculator label {
    display: block;
    margin-bottom: 0.35rem;
    color: #17315f;
    font-weight: 600;
}

#hc-roi-calculator input[type="number"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.75rem;
    border: 1px solid #c9ced8;
    border-radius: 6px;
    background: #ffffff;
    color: #333333;
    font: inherit;
    font-size: 1rem;
}

#hc-roi-calculator input[type="number"]:focus {
    outline: 2px solid #12aeb5;
    outline-offset: 2px;
    border-color: #12aeb5;
}

#hc-roi-calculator .hc-roi-results {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem 1rem;
    margin: 1rem 0 1.25rem;
    padding: 1rem;
    border-radius: 6px;
    background: #f7f8fa;
}

#hc-roi-calculator .hc-roi-results dt {
    margin: 0;
    color: #747b8e;
}

#hc-roi-calculator .hc-roi-results dd {
    margin: 0;
    color: #17315f;
    font-weight: 700;
    text-align: right;
}

#hc-roi-calculator .hc-roi-note {
    margin: 1rem 0;
    color: #747b8e;
    font-size: 0.9rem;
    line-height: 1.55;
}

#hc-roi-calculator .hc-roi-reset {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border: 1px solid #17315f;
    border-radius: 6px;
    background: transparent;
    color: #17315f;
    font: inherit;
    font-size: 0.9375em;
    cursor: pointer;
}

#hc-roi-calculator .hc-roi-reset:hover,
#hc-roi-calculator .hc-roi-reset:focus {
    background: #e5a72c;
    border-color: #e5a72c;
    color: #17315f;
}

@media (max-width: 600px) {
    #hc-roi-calculator {
        padding: 1rem;
    }

    #hc-roi-calculator .hc-roi-results {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    #hc-roi-calculator .hc-roi-results dd {
        margin-bottom: 0.7rem;
        text-align: left;
    }
}
/* ROI Calculator — mobile radio/legend polish */

#hc-roi-calculator .hc-roi-mode {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
}

#hc-roi-calculator .hc-roi-mode legend {
  display: block;
  width: 100%;
  margin: 0 0 0.6rem;
  padding: 0;
  font-size: 0.9375em;
  font-weight: 700;
  color: #17315f;
}
/* ==========================================================
   Seasonal Sinking Fund Planner
   ========================================================== */

#hc-sinking-fund {
	margin: 1.5rem 0;
}

#hc-sinking-fund h4 {
	margin: 1.5rem 0 0.75rem;
}

#hc-sinking-fund h4:first-child {
	margin-top: 0;
}

#hc-sinking-fund p {
	margin: 0 0 1rem;
}

#hc-sinking-fund label {
	display: block;
	font-weight: 600;
}

#hc-sinking-fund .hc-fund-hint {
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
	opacity: 0.8;
	margin: 0.15rem 0 0.35rem;
}

#hc-sinking-fund input[type="number"],
#hc-sinking-fund input[type="text"] {
	width: 100%;
	max-width: 20rem;
	padding: 0.5rem;
	font: inherit;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	background: #fff;
}

#hc-sinking-fund input:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

#hc-sinking-fund .hc-fund-frequency {
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	padding: 0.75rem 1rem;
	margin: 0 0 1rem;
}

#hc-sinking-fund .hc-fund-frequency legend {
	font-weight: 600;
	padding: 0 0.35rem;
}

#hc-sinking-fund .hc-fund-frequency p {
	margin: 0 0 0.35rem;
}

#hc-sinking-fund .hc-fund-frequency p:last-child {
	margin-bottom: 0;
}

#hc-sinking-fund .hc-fund-frequency label {
	font-weight: 400;
}

#hc-sinking-fund .hc-fund-frequency input {
	width: auto;
	margin-right: 0.4rem;
}

#hc-sinking-fund .hc-fund-results {
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
}

#hc-sinking-fund .hc-fund-results dt {
	font-weight: 600;
	margin-top: 0.6rem;
}

#hc-sinking-fund .hc-fund-results dt:first-child {
	margin-top: 0;
}

#hc-sinking-fund .hc-fund-results dd {
	margin: 0.1rem 0 0;
	font-variant-numeric: tabular-nums;
}

#hc-sinking-fund .hc-fund-notice:empty {
	display: none;
}

#hc-sinking-fund .hc-fund-notice {
	font-size: 0.9rem;
}

#hc-sinking-fund .hc-fund-note {
	font-size: 0.875rem;
	opacity: 0.85;
}

#hc-sinking-fund .hc-fund-reset {
	font: inherit;
	padding: 0.5rem 1rem;
	cursor: pointer;
	border: 1px solid currentColor;
	border-radius: 4px;
	background: transparent;
}

#hc-sinking-fund .hc-fund-reset[hidden] {
	display: none;
}

@media (min-width: 600px) {
	#hc-sinking-fund .hc-fund-results {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0.4rem 1.5rem;
		align-items: baseline;
	}

	#hc-sinking-fund .hc-fund-results dt,
	#hc-sinking-fund .hc-fund-results dd {
		margin: 0;
	}
}
/* Sinking Fund Planner — legend wrapping fix */

#hc-sinking-fund .hc-fund-frequency {
	padding-top: 0.5rem;
}

#hc-sinking-fund .hc-fund-frequency legend {
	float: left;
	width: 100%;
	padding: 0 0 0.5rem;
	margin: 0;
}
/* Sinking Fund Planner — color to match ROI Calculator */

#hc-sinking-fund h4,
#hc-sinking-fund label,
#hc-sinking-fund .hc-fund-frequency legend,
#hc-sinking-fund .hc-fund-results dt {
	color: #17315f;
}

#hc-sinking-fund .hc-fund-results dd {
	color: #17315f;
}
.page-editor-content .hc-save .hc-save-closing p.hc-save-signoff,
.page-editor-content .hc-earn .hc-earn-closing p.hc-earn-signoff,
.page-editor-content .hc-travel .hc-travel-closing p.hc-travel-signoff {
	color: #e5a72c !important;
}


