@keyframes nhs-home-fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.nhsaves-ui-active .home-hero {
  --nhs-nav-h: 69px;
  min-height: calc(100vh - var(--nhs-nav-h));
  position: relative;
  background: linear-gradient(135deg, #007670 0%, #005a55 50%, #003d3a 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 72px 0 64px;
  display: flex;
  align-items: center;
}
body.nhsaves-ui-active .home-hero.has-bg-image {
  background-image: var(--nhs-hero-bg), linear-gradient(135deg, rgba(0, 118, 112, 0.88) 0%, rgba(0, 90, 85, 0.88) 50%, rgba(0, 61, 58, 0.92) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply, normal;
}
body.nhsaves-ui-active .home-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
body.nhsaves-ui-active .home-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}
body.nhsaves-ui-active .home-hero .home-hero__inner {
  max-width: var(--nhs-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
body.nhsaves-ui-active .home-hero .hero-content {
  animation: nhs-home-fade 0.5s ease both;
}
body.nhsaves-ui-active .home-hero .hero-content h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
  color: #ffffff;
}
body.nhsaves-ui-active .home-hero .hero-content h1 span {
  display: block;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0;
  margin-top: 8px;
  opacity: 0.8;
}
body.nhsaves-ui-active .home-hero .hero-content p {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.88;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 28px;
  color: #ffffff;
}
body.nhsaves-ui-active .home-hero .hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.nhsaves-ui-active .home-hero .hero-featured {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nhs-radius-xl, 16px);
  padding: 28px;
  backdrop-filter: blur(4px);
  animation: nhs-home-fade 0.5s ease both;
  animation-delay: 0.15s;
}
body.nhsaves-ui-active .home-hero .hero-featured .hero-featured-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.5;
  margin-bottom: 10px;
}
body.nhsaves-ui-active .home-hero .hero-featured h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
  color: #ffffff;
}
body.nhsaves-ui-active .home-hero .hero-featured p {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0 0 14px;
  color: #ffffff;
}
body.nhsaves-ui-active .home-hero .hero-featured a,
body.nhsaves-ui-active .home-hero .hero-featured a:link,
body.nhsaves-ui-active .home-hero .hero-featured a:visited {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
body.nhsaves-ui-active .home-hero .hero-featured a:hover,
body.nhsaves-ui-active .home-hero .hero-featured a:focus {
  border-bottom-color: #ffffff;
  text-decoration: none;
}
body.nhsaves-ui-active .home-hero .hero-featured svg {
  width: 14px;
  height: 14px;
}
body.nhsaves-ui-active .home-hero .hero-featured-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 0;
}

body.nhsaves-ui-active .home-hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 24px;
  min-height: 48px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--nhs-font-body);
  line-height: 1.2;
  border-radius: var(--nhs-radius-lg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}
body.nhsaves-ui-active .home-hero .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
body.nhsaves-ui-active .home-hero .btn.btn-white, body.nhsaves-ui-active .home-hero .btn.btn-white:link, body.nhsaves-ui-active .home-hero .btn.btn-white:visited {
  background: #ffffff;
  color: var(--nhs-green);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
body.nhsaves-ui-active .home-hero .btn.btn-white:hover, body.nhsaves-ui-active .home-hero .btn.btn-white:focus {
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--nhs-green);
}
body.nhsaves-ui-active .home-hero .btn.btn-ghost, body.nhsaves-ui-active .home-hero .btn.btn-ghost:link, body.nhsaves-ui-active .home-hero .btn.btn-ghost:visited {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
body.nhsaves-ui-active .home-hero .btn.btn-ghost:hover, body.nhsaves-ui-active .home-hero .btn.btn-ghost:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .home-hero {
    min-height: 0;
  }
  body.nhsaves-ui-active .home-hero .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.nhsaves-ui-active .home-hero .hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  body.nhsaves-ui-active .home-hero {
    padding: 48px 0 44px;
  }
  body.nhsaves-ui-active .home-hero .hero-content h1 {
    font-size: 30px;
  }
  body.nhsaves-ui-active .home-hero .hero-content h1 span {
    font-size: 18px;
  }
  body.nhsaves-ui-active .home-hero .hero-buttons {
    flex-direction: column;
  }
  body.nhsaves-ui-active .home-hero .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
body.nhsaves-ui-active .pathways {
  max-width: var(--nhs-max-width);
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

body.nhsaves-ui-active .pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

body.nhsaves-ui-active a.pathway-card,
body.nhsaves-ui-active a.pathway-card:link,
body.nhsaves-ui-active a.pathway-card:visited,
body.nhsaves-ui-active a.pathway-card:hover,
body.nhsaves-ui-active a.pathway-card:focus {
  text-decoration: none;
}

body.nhsaves-ui-active .pathway-card {
  background: var(--nhs-bg);
  border: 1.5px solid var(--nhs-border-light);
  border-radius: var(--nhs-radius-xl, 16px);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--nhs-shadow);
  animation: nhs-home-fade 0.4s ease both;
}
body.nhsaves-ui-active .pathway-card:nth-child(1) {
  animation-delay: 0.05s;
}
body.nhsaves-ui-active .pathway-card:nth-child(2) {
  animation-delay: 0.1s;
}
body.nhsaves-ui-active .pathway-card:nth-child(3) {
  animation-delay: 0.15s;
}
body.nhsaves-ui-active .pathway-card:hover, body.nhsaves-ui-active .pathway-card:focus {
  border-color: var(--nhs-green);
  box-shadow: var(--nhs-shadow-hover);
  transform: translateY(-3px);
  text-decoration: none;
}
body.nhsaves-ui-active .pathway-card:hover h3, body.nhsaves-ui-active .pathway-card:focus h3 {
  color: var(--nhs-green);
}
body.nhsaves-ui-active .pathway-card .pathway-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--nhs-green-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
body.nhsaves-ui-active .pathway-card .pathway-icon svg {
  width: 28px;
  height: 28px;
  color: var(--nhs-green);
}
body.nhsaves-ui-active .pathway-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--nhs-text);
  margin: 0 0 6px;
  transition: color 0.15s;
}
body.nhsaves-ui-active .pathway-card p {
  font-size: 16px;
  color: var(--nhs-text-light);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
}
body.nhsaves-ui-active .pathway-card .pathway-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--nhs-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
body.nhsaves-ui-active .pathway-card .pathway-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .pathways-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  body.nhsaves-ui-active .pathways {
    margin-top: -24px;
  }
  body.nhsaves-ui-active .pathways-grid {
    grid-template-columns: 1fr;
  }
}
body.nhsaves-ui-active .stats-band {
  background: var(--nhs-green-darker);
  color: #ffffff;
  margin-top: 56px;
}
body.nhsaves-ui-active .stats-band .stats-band__inner {
  max-width: var(--nhs-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
body.nhsaves-ui-active .stats-band .stat-item {
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
body.nhsaves-ui-active .stats-band .stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
body.nhsaves-ui-active .stats-band .stat-value {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}
body.nhsaves-ui-active .stats-band .stat-label {
  font-size: 13px;
  opacity: 0.65;
  margin-top: 2px;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .stats-band .stats-band__inner {
    grid-template-columns: 1fr 1fr;
  }
  body.nhsaves-ui-active .stats-band .stat-item:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 600px) {
  body.nhsaves-ui-active .stats-band .stats-band__inner {
    grid-template-columns: 1fr;
  }
  body.nhsaves-ui-active .stats-band .stat-item {
    padding: 14px 16px;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  body.nhsaves-ui-active .stats-band .stat-item + .stat-item::before {
    display: none;
  }
  body.nhsaves-ui-active .stats-band .stat-value {
    font-size: 24px;
  }
  body.nhsaves-ui-active .stats-band .stat-label {
    font-size: 13px;
  }
}
body.nhsaves-ui-active .hep-section {
  padding: 64px 0;
}
body.nhsaves-ui-active .hep-section .hep-section__inner {
  max-width: var(--nhs-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
body.nhsaves-ui-active .hep-section .hep-image {
  background: var(--nhs-bg-light);
  border-radius: var(--nhs-radius-xl, 16px);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.nhsaves-ui-active .hep-section .hep-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.nhsaves-ui-active .hep-section .hep-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--nhs-green-lighter), var(--nhs-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nhs-green);
  opacity: 0.3;
}
body.nhsaves-ui-active .hep-section .hep-image-placeholder svg {
  width: 80px;
  height: 80px;
}
body.nhsaves-ui-active .hep-section .section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nhs-green);
  margin-bottom: 8px;
  display: block;
}
body.nhsaves-ui-active .hep-section h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--nhs-text);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
body.nhsaves-ui-active .hep-section p {
  font-size: 16px;
  color: var(--nhs-text-light);
  line-height: 1.7;
  margin: 0 0 8px;
}
body.nhsaves-ui-active .hep-section .hep-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--nhs-green);
  letter-spacing: -1px;
  line-height: 1;
  margin: 16px 0 4px;
}
body.nhsaves-ui-active .hep-section .hep-amount-sub {
  font-size: 16px;
  color: var(--nhs-text-muted);
  margin: 0 0 24px;
}
body.nhsaves-ui-active .hep-section .hep-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.nhsaves-ui-active .hep-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 24px;
  min-height: 48px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--nhs-font-body);
  line-height: 1.2;
  border-radius: var(--nhs-radius-lg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}
body.nhsaves-ui-active .hep-section .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
body.nhsaves-ui-active .hep-section .btn.btn-primary, body.nhsaves-ui-active .hep-section .btn.btn-primary:link, body.nhsaves-ui-active .hep-section .btn.btn-primary:visited {
  background: var(--nhs-green);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 118, 112, 0.25);
}
body.nhsaves-ui-active .hep-section .btn.btn-primary:hover, body.nhsaves-ui-active .hep-section .btn.btn-primary:focus {
  background: var(--nhs-green-dark);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}
body.nhsaves-ui-active .hep-section .btn.btn-secondary, body.nhsaves-ui-active .hep-section .btn.btn-secondary:link, body.nhsaves-ui-active .hep-section .btn.btn-secondary:visited {
  background: var(--nhs-bg);
  color: var(--nhs-text);
  border: 1.5px solid var(--nhs-border);
}
body.nhsaves-ui-active .hep-section .btn.btn-secondary:hover, body.nhsaves-ui-active .hep-section .btn.btn-secondary:focus {
  border-color: var(--nhs-green);
  color: var(--nhs-green);
  text-decoration: none;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .hep-section .hep-section__inner {
    grid-template-columns: 1fr;
  }
  body.nhsaves-ui-active .hep-section .hep-image {
    order: -1;
  }
}
body.nhsaves-ui-active .notices-section {
  background: var(--nhs-bg-warm, #faf9f7);
  border-top: 1px solid #ede9df;
  border-bottom: 1px solid #ede9df;
  padding: 32px 0;
}
body.nhsaves-ui-active .notices-section .notices-section__inner {
  max-width: var(--nhs-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
body.nhsaves-ui-active .notices-section .notice-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--nhs-bg);
  border: 1px solid var(--nhs-border-light);
  border-radius: var(--nhs-radius-xl, 16px);
}
body.nhsaves-ui-active .notices-section .notice-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff3cd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.nhsaves-ui-active .notices-section .notice-icon svg {
  width: 20px;
  height: 20px;
  color: #856404;
}
body.nhsaves-ui-active .notices-section .notice-text {
  flex: 1;
  min-width: 0;
}
body.nhsaves-ui-active .notices-section .notice-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--nhs-text);
  margin: 0 0 4px;
  line-height: 1.3;
}
body.nhsaves-ui-active .notices-section .notice-text p {
  font-size: 14px;
  color: var(--nhs-text-light);
  line-height: 1.5;
  margin: 0;
}
body.nhsaves-ui-active .notices-section .notice-text a,
body.nhsaves-ui-active .notices-section .notice-text a:link,
body.nhsaves-ui-active .notices-section .notice-text a:visited {
  font-weight: 600;
  font-size: 14px;
  color: var(--nhs-green);
  text-decoration: none;
}
body.nhsaves-ui-active .notices-section .notice-text a:hover,
body.nhsaves-ui-active .notices-section .notice-text a:focus {
  text-decoration: underline;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .notices-section .notices-section__inner {
    grid-template-columns: 1fr;
  }
}
body.nhsaves-ui-active .events-promo {
  padding: 56px 0;
  background: var(--nhs-bg-light);
}
body.nhsaves-ui-active .events-promo .events-promo__inner {
  max-width: var(--nhs-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
body.nhsaves-ui-active .events-promo .section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nhs-green);
  margin-bottom: 8px;
  display: block;
}
body.nhsaves-ui-active .events-promo .events-promo-copy h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--nhs-text);
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
body.nhsaves-ui-active .events-promo .events-promo-copy p {
  font-size: 16px;
  color: var(--nhs-text-light);
  line-height: 1.7;
  margin: 0 0 20px;
}
body.nhsaves-ui-active .events-promo .events-promo-copy .highlight {
  font-size: 28px;
  font-weight: 900;
  color: var(--nhs-green);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 4px;
}
body.nhsaves-ui-active .events-promo .events-promo-copy .highlight-sub {
  font-size: 16px;
  color: var(--nhs-text-muted);
  margin-bottom: 20px;
  display: block;
}
body.nhsaves-ui-active .events-promo .upcoming-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.nhsaves-ui-active .events-promo .upcoming-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--nhs-bg);
  border: 1.5px solid var(--nhs-border-light);
  border-radius: var(--nhs-radius-xl, 16px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
body.nhsaves-ui-active .events-promo .upcoming-mini-card:hover, body.nhsaves-ui-active .events-promo .upcoming-mini-card:focus {
  border-color: var(--nhs-green);
  box-shadow: var(--nhs-shadow);
  text-decoration: none;
  transform: translateY(-1px);
}
body.nhsaves-ui-active .events-promo .mini-date {
  min-width: 48px;
  text-align: center;
  flex-shrink: 0;
}
body.nhsaves-ui-active .events-promo .mini-date .month {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--nhs-green);
  line-height: 1;
}
body.nhsaves-ui-active .events-promo .mini-date .day {
  font-size: 22px;
  font-weight: 900;
  color: var(--nhs-green-dark);
  line-height: 1.2;
}
body.nhsaves-ui-active .events-promo .mini-info {
  flex: 1;
  min-width: 0;
}
body.nhsaves-ui-active .events-promo .mini-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--nhs-text);
  line-height: 1.3;
  margin: 0;
}
body.nhsaves-ui-active .events-promo .mini-info span {
  font-size: 14px;
  color: var(--nhs-text-muted);
}
body.nhsaves-ui-active .events-promo .mini-badge {
  font-size: 14px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  flex-shrink: 0;
}
body.nhsaves-ui-active .events-promo .mini-badge.mini-badge-turnin {
  background: #fef9ee;
  color: #b8860b;
}
body.nhsaves-ui-active .events-promo .mini-badge.mini-badge-workshop {
  background: var(--nhs-green-light);
  color: var(--nhs-green);
}
body.nhsaves-ui-active .events-promo .mini-badge.mini-badge-training {
  background: #f3f0f8;
  color: #6b4fa0;
}
body.nhsaves-ui-active .events-promo .mini-badge.mini-badge-mainstreet {
  background: #eef5fc;
  color: #1a6fb5;
}
body.nhsaves-ui-active .events-promo .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 14px;
}
body.nhsaves-ui-active .events-promo .view-all-link svg {
  width: 16px;
  height: 16px;
}
body.nhsaves-ui-active .events-promo .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--nhs-font-body);
  border-radius: var(--nhs-radius-lg);
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
body.nhsaves-ui-active .events-promo .btn.btn-primary, body.nhsaves-ui-active .events-promo .btn.btn-primary:link, body.nhsaves-ui-active .events-promo .btn.btn-primary:visited {
  background: var(--nhs-green);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 118, 112, 0.25);
}
body.nhsaves-ui-active .events-promo .btn.btn-primary:hover, body.nhsaves-ui-active .events-promo .btn.btn-primary:focus {
  background: var(--nhs-green-dark);
  color: #ffffff;
  transform: translateY(-1px);
}
body.nhsaves-ui-active .events-promo .btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .events-promo .events-promo__inner {
    grid-template-columns: 1fr;
  }
}
body.nhsaves-ui-active .home-blog-section {
  padding: 56px 0;
}
body.nhsaves-ui-active .home-blog-section .home-blog-section__inner {
  max-width: var(--nhs-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
body.nhsaves-ui-active .home-blog-section .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
body.nhsaves-ui-active .home-blog-section .blog-header h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--nhs-text);
  letter-spacing: -0.3px;
  margin: 0;
}
body.nhsaves-ui-active .home-blog-section .blog-header a,
body.nhsaves-ui-active .home-blog-section .blog-header a:link,
body.nhsaves-ui-active .home-blog-section .blog-header a:visited {
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--nhs-green);
  text-decoration: none;
}
body.nhsaves-ui-active .home-blog-section .blog-header a svg,
body.nhsaves-ui-active .home-blog-section .blog-header a:link svg,
body.nhsaves-ui-active .home-blog-section .blog-header a:visited svg {
  width: 16px;
  height: 16px;
}
body.nhsaves-ui-active .home-blog-section .blog-header a:hover,
body.nhsaves-ui-active .home-blog-section .blog-header a:focus {
  text-decoration: underline;
}
body.nhsaves-ui-active .home-blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.nhsaves-ui-active a.home-blog-card,
body.nhsaves-ui-active a.home-blog-card:link,
body.nhsaves-ui-active a.home-blog-card:visited,
body.nhsaves-ui-active a.home-blog-card:hover,
body.nhsaves-ui-active a.home-blog-card:focus {
  text-decoration: none;
}

body.nhsaves-ui-active .home-blog-card {
  background: var(--nhs-bg);
  border: 1.5px solid var(--nhs-border-light);
  border-radius: var(--nhs-radius-xl, 16px);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
body.nhsaves-ui-active .home-blog-card:hover, body.nhsaves-ui-active .home-blog-card:focus {
  border-color: var(--nhs-green);
  box-shadow: var(--nhs-shadow-hover);
  text-decoration: none;
  transform: translateY(-2px);
}
body.nhsaves-ui-active .home-blog-card:hover h3, body.nhsaves-ui-active .home-blog-card:focus h3 {
  color: var(--nhs-green);
}
body.nhsaves-ui-active .home-blog-card .home-blog-card-image {
  height: 200px;
  background: var(--nhs-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.nhsaves-ui-active .home-blog-card .home-blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.nhsaves-ui-active .home-blog-card .home-blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--nhs-green-lighter), var(--nhs-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nhs-green);
  opacity: 0.25;
}
body.nhsaves-ui-active .home-blog-card .home-blog-card-image-placeholder svg {
  width: 40px;
  height: 40px;
}
body.nhsaves-ui-active .home-blog-card .home-blog-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.nhsaves-ui-active .home-blog-card .home-blog-card-tag {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--nhs-green);
  margin-bottom: 6px;
}
body.nhsaves-ui-active .home-blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--nhs-text);
  line-height: 1.3;
  margin: 0 0 8px;
  transition: color 0.15s;
}
body.nhsaves-ui-active .home-blog-card p {
  font-size: 14px;
  color: var(--nhs-text-muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .home-blog-section .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  body.nhsaves-ui-active .home-blog-section .blog-grid {
    grid-template-columns: 1fr;
  }
}
body.nhsaves-ui-active .bottom-band {
  background: var(--nhs-green);
  padding: 56px 0;
  color: #ffffff;
}
body.nhsaves-ui-active .bottom-band .bottom-band__inner {
  max-width: var(--nhs-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
body.nhsaves-ui-active .bottom-band .newsletter-side h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
  color: #ffffff;
}
body.nhsaves-ui-active .bottom-band .newsletter-side p {
  font-size: 18px;
  opacity: 0.8;
  margin: 0 0 20px;
  line-height: 1.5;
  color: #ffffff;
}
body.nhsaves-ui-active .bottom-band .newsletter-form {
  display: flex;
  gap: 8px;
}
body.nhsaves-ui-active .bottom-band .newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--nhs-radius-lg);
  font-size: 18px;
  font-family: var(--nhs-font-body);
  color: var(--nhs-text);
}
body.nhsaves-ui-active .bottom-band .newsletter-input::-moz-placeholder {
  color: var(--nhs-text-muted);
}
body.nhsaves-ui-active .bottom-band .newsletter-input::placeholder {
  color: var(--nhs-text-muted);
}
body.nhsaves-ui-active .bottom-band .newsletter-btn {
  padding: 12px 24px;
  background: #ffffff;
  color: var(--nhs-green);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--nhs-font-body);
  border: none;
  border-radius: var(--nhs-radius-lg);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
body.nhsaves-ui-active .bottom-band .newsletter-btn:hover, body.nhsaves-ui-active .bottom-band .newsletter-btn:focus {
  background: var(--nhs-green-light);
  transform: translateY(-1px);
}
body.nhsaves-ui-active .bottom-band .newsletter-fine {
  font-size: 14px;
  opacity: 0.55;
  margin-top: 10px;
}
body.nhsaves-ui-active .bottom-band .highlights-side {
  text-align: center;
}
body.nhsaves-ui-active .bottom-band .highlights-side h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}
body.nhsaves-ui-active .bottom-band .highlights-side p {
  font-size: 16px;
  opacity: 0.75;
  margin: 0 0 20px;
  color: #ffffff;
}

body.nhsaves-ui-active .bottom-band a.btn-white,
body.nhsaves-ui-active .bottom-band a.btn-white:link,
body.nhsaves-ui-active .bottom-band a.btn-white:visited,
body.nhsaves-ui-active .bottom-band a.btn-white:hover,
body.nhsaves-ui-active .bottom-band a.btn-white:focus {
  color: var(--nhs-green);
  text-decoration: none;
}

body.nhsaves-ui-active .bottom-band .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: #ffffff;
  color: var(--nhs-green);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--nhs-font-body);
  border: none;
  border-radius: var(--nhs-radius-lg);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  margin-top: 4px;
}
body.nhsaves-ui-active .bottom-band .btn-white:hover, body.nhsaves-ui-active .bottom-band .btn-white:focus {
  transform: translateY(-1px);
  color: var(--nhs-green);
  text-decoration: none;
}

@media (max-width: 960px) {
  body.nhsaves-ui-active .bottom-band .bottom-band__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  body.nhsaves-ui-active .bottom-band .newsletter-form {
    flex-direction: column;
  }
}
body.nhsaves-ui-active .newsletter-gform .gform_wrapper,
body.nhsaves-ui-active .newsletter-gform .gform_wrapper * {
  font-family: var(--nhs-font-body);
  color: #ffffff;
}
body.nhsaves-ui-active .newsletter-gform .gform_heading,
body.nhsaves-ui-active .newsletter-gform .gform_validation_errors {
  display: none;
}
body.nhsaves-ui-active .newsletter-gform .gform_wrapper {
  background: transparent;
  padding: 0;
  margin: 0;
}
body.nhsaves-ui-active .newsletter-gform .gform_body,
body.nhsaves-ui-active .newsletter-gform .gform_fields {
  display: block;
  gap: 0;
  grid-template-columns: none !important;
}
body.nhsaves-ui-active .newsletter-gform .gfield {
  display: block;
  width: 100% !important;
  grid-column: auto !important;
  margin: 0 0 10px;
  padding: 0;
}
body.nhsaves-ui-active .newsletter-gform .gfield.gfield-nhs-hidden-step {
  display: none !important;
}
body.nhsaves-ui-active .newsletter-gform .gfield_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
body.nhsaves-ui-active .newsletter-gform .ginput_container {
  margin: 0;
}
body.nhsaves-ui-active .newsletter-gform input[type=text],
body.nhsaves-ui-active .newsletter-gform input[type=email],
body.nhsaves-ui-active .newsletter-gform input[type=tel],
body.nhsaves-ui-active .newsletter-gform input[type=url],
body.nhsaves-ui-active .newsletter-gform input[type=number],
body.nhsaves-ui-active .newsletter-gform select,
body.nhsaves-ui-active .newsletter-gform textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: none;
  border-radius: var(--nhs-radius-lg);
  font-size: 18px;
  font-family: var(--nhs-font-body);
  color: var(--nhs-text);
  box-shadow: none;
  min-height: 48px;
}
body.nhsaves-ui-active .newsletter-gform input[type=text]::-moz-placeholder, body.nhsaves-ui-active .newsletter-gform input[type=email]::-moz-placeholder, body.nhsaves-ui-active .newsletter-gform input[type=tel]::-moz-placeholder, body.nhsaves-ui-active .newsletter-gform input[type=url]::-moz-placeholder, body.nhsaves-ui-active .newsletter-gform input[type=number]::-moz-placeholder, body.nhsaves-ui-active .newsletter-gform select::-moz-placeholder, body.nhsaves-ui-active .newsletter-gform textarea::-moz-placeholder {
  color: var(--nhs-text-muted);
}
body.nhsaves-ui-active .newsletter-gform input[type=text]::placeholder,
body.nhsaves-ui-active .newsletter-gform input[type=email]::placeholder,
body.nhsaves-ui-active .newsletter-gform input[type=tel]::placeholder,
body.nhsaves-ui-active .newsletter-gform input[type=url]::placeholder,
body.nhsaves-ui-active .newsletter-gform input[type=number]::placeholder,
body.nhsaves-ui-active .newsletter-gform select::placeholder,
body.nhsaves-ui-active .newsletter-gform textarea::placeholder {
  color: var(--nhs-text-muted);
}
body.nhsaves-ui-active .newsletter-gform input[type=text]:focus,
body.nhsaves-ui-active .newsletter-gform input[type=email]:focus,
body.nhsaves-ui-active .newsletter-gform input[type=tel]:focus,
body.nhsaves-ui-active .newsletter-gform input[type=url]:focus,
body.nhsaves-ui-active .newsletter-gform input[type=number]:focus,
body.nhsaves-ui-active .newsletter-gform select:focus,
body.nhsaves-ui-active .newsletter-gform textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
body.nhsaves-ui-active .newsletter-gform select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
body.nhsaves-ui-active .newsletter-gform .gfield.gfield_error input,
body.nhsaves-ui-active .newsletter-gform .gfield.gfield_error select,
body.nhsaves-ui-active .newsletter-gform .gfield.gfield_error textarea {
  outline: 2px solid #ffd2d2;
  outline-offset: 2px;
}
body.nhsaves-ui-active .newsletter-gform .gfield_description,
body.nhsaves-ui-active .newsletter-gform .validation_message,
body.nhsaves-ui-active .newsletter-gform .gfield_validation_message {
  font-size: 13px;
  color: #ffd2d2;
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
}
body.nhsaves-ui-active .newsletter-gform .gfield_required {
  color: rgba(255, 255, 255, 0.6);
}
body.nhsaves-ui-active .newsletter-gform .gform_footer {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 14px 0 0;
}
body.nhsaves-ui-active .newsletter-gform .gform_footer.nhs-submit-hidden {
  display: none;
}
body.nhsaves-ui-active .newsletter-gform input[type=submit],
body.nhsaves-ui-active .newsletter-gform button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 26px;
  background: #ffffff;
  color: var(--nhs-green);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--nhs-font-body);
  border: none;
  border-radius: var(--nhs-radius-lg);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  min-height: 48px;
}
body.nhsaves-ui-active .newsletter-gform input[type=submit]:hover, body.nhsaves-ui-active .newsletter-gform input[type=submit]:focus,
body.nhsaves-ui-active .newsletter-gform button[type=submit]:hover,
body.nhsaves-ui-active .newsletter-gform button[type=submit]:focus {
  background: var(--nhs-green-light);
  transform: translateY(-1px);
}
body.nhsaves-ui-active .newsletter-gform [id^=gform_confirmation_message_] {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--nhs-radius-lg);
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.5;
}
body.nhsaves-ui-active .newsletter-gform .gform_ajax_spinner {
  margin-left: 8px;
}

body.nhsaves-ui-active .nhs-newsletter-steps {
  display: flex;
  gap: 8px;
  padding-top: 14px;
  flex-wrap: wrap;
}

body.nhsaves-ui-active .nhs-newsletter-steps__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 26px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--nhs-font-body);
  border-radius: var(--nhs-radius-lg);
  cursor: pointer;
  border: none;
  min-height: 48px;
  transition: background 0.15s, transform 0.15s, border-color 0.15s, color 0.15s;
}
body.nhsaves-ui-active .nhs-newsletter-steps__btn[data-step-next] {
  background: #ffffff;
  color: var(--nhs-green);
}
body.nhsaves-ui-active .nhs-newsletter-steps__btn[data-step-next]:hover, body.nhsaves-ui-active .nhs-newsletter-steps__btn[data-step-next]:focus {
  background: var(--nhs-green-light);
  transform: translateY(-1px);
}
body.nhsaves-ui-active .nhs-newsletter-steps__btn[data-step-back] {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
body.nhsaves-ui-active .nhs-newsletter-steps__btn[data-step-back]:hover, body.nhsaves-ui-active .nhs-newsletter-steps__btn[data-step-back]:focus {
  border-color: #ffffff;
}
body.nhsaves-ui-active .nhs-newsletter-steps__btn[hidden] {
  display: none;
}

body.nhsaves-ui-active .nhs-newsletter-progress {
  display: flex;
  gap: 6px;
  margin: 0 0 12px;
}

body.nhsaves-ui-active .nhs-newsletter-progress__dot {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease;
}
body.nhsaves-ui-active .nhs-newsletter-progress__dot.is-active, body.nhsaves-ui-active .nhs-newsletter-progress__dot.is-complete {
  background: #ffffff;
}

body.nhsaves-ui-active .home-hero,
body.nhsaves-ui-active .pathways,
body.nhsaves-ui-active .pathway-card,
body.nhsaves-ui-active .stats-band,
body.nhsaves-ui-active .hep-section,
body.nhsaves-ui-active .notices-section,
body.nhsaves-ui-active .events-promo,
body.nhsaves-ui-active .home-blog-section,
body.nhsaves-ui-active .home-blog-card,
body.nhsaves-ui-active .bottom-band {
  font-family: var(--nhs-font-body);
}
body.nhsaves-ui-active .home-hero h1, body.nhsaves-ui-active .home-hero h2, body.nhsaves-ui-active .home-hero h3, body.nhsaves-ui-active .home-hero h4, body.nhsaves-ui-active .home-hero h5, body.nhsaves-ui-active .home-hero h6,
body.nhsaves-ui-active .home-hero p, body.nhsaves-ui-active .home-hero span, body.nhsaves-ui-active .home-hero a, body.nhsaves-ui-active .home-hero button, body.nhsaves-ui-active .home-hero input, body.nhsaves-ui-active .home-hero select, body.nhsaves-ui-active .home-hero textarea, body.nhsaves-ui-active .home-hero label, body.nhsaves-ui-active .home-hero div,
body.nhsaves-ui-active .pathways h1,
body.nhsaves-ui-active .pathways h2,
body.nhsaves-ui-active .pathways h3,
body.nhsaves-ui-active .pathways h4,
body.nhsaves-ui-active .pathways h5,
body.nhsaves-ui-active .pathways h6,
body.nhsaves-ui-active .pathways p,
body.nhsaves-ui-active .pathways span,
body.nhsaves-ui-active .pathways a,
body.nhsaves-ui-active .pathways button,
body.nhsaves-ui-active .pathways input,
body.nhsaves-ui-active .pathways select,
body.nhsaves-ui-active .pathways textarea,
body.nhsaves-ui-active .pathways label,
body.nhsaves-ui-active .pathways div,
body.nhsaves-ui-active .pathway-card h1,
body.nhsaves-ui-active .pathway-card h2,
body.nhsaves-ui-active .pathway-card h3,
body.nhsaves-ui-active .pathway-card h4,
body.nhsaves-ui-active .pathway-card h5,
body.nhsaves-ui-active .pathway-card h6,
body.nhsaves-ui-active .pathway-card p,
body.nhsaves-ui-active .pathway-card span,
body.nhsaves-ui-active .pathway-card a,
body.nhsaves-ui-active .pathway-card button,
body.nhsaves-ui-active .pathway-card input,
body.nhsaves-ui-active .pathway-card select,
body.nhsaves-ui-active .pathway-card textarea,
body.nhsaves-ui-active .pathway-card label,
body.nhsaves-ui-active .pathway-card div,
body.nhsaves-ui-active .stats-band h1,
body.nhsaves-ui-active .stats-band h2,
body.nhsaves-ui-active .stats-band h3,
body.nhsaves-ui-active .stats-band h4,
body.nhsaves-ui-active .stats-band h5,
body.nhsaves-ui-active .stats-band h6,
body.nhsaves-ui-active .stats-band p,
body.nhsaves-ui-active .stats-band span,
body.nhsaves-ui-active .stats-band a,
body.nhsaves-ui-active .stats-band button,
body.nhsaves-ui-active .stats-band input,
body.nhsaves-ui-active .stats-band select,
body.nhsaves-ui-active .stats-band textarea,
body.nhsaves-ui-active .stats-band label,
body.nhsaves-ui-active .stats-band div,
body.nhsaves-ui-active .hep-section h1,
body.nhsaves-ui-active .hep-section h2,
body.nhsaves-ui-active .hep-section h3,
body.nhsaves-ui-active .hep-section h4,
body.nhsaves-ui-active .hep-section h5,
body.nhsaves-ui-active .hep-section h6,
body.nhsaves-ui-active .hep-section p,
body.nhsaves-ui-active .hep-section span,
body.nhsaves-ui-active .hep-section a,
body.nhsaves-ui-active .hep-section button,
body.nhsaves-ui-active .hep-section input,
body.nhsaves-ui-active .hep-section select,
body.nhsaves-ui-active .hep-section textarea,
body.nhsaves-ui-active .hep-section label,
body.nhsaves-ui-active .hep-section div,
body.nhsaves-ui-active .notices-section h1,
body.nhsaves-ui-active .notices-section h2,
body.nhsaves-ui-active .notices-section h3,
body.nhsaves-ui-active .notices-section h4,
body.nhsaves-ui-active .notices-section h5,
body.nhsaves-ui-active .notices-section h6,
body.nhsaves-ui-active .notices-section p,
body.nhsaves-ui-active .notices-section span,
body.nhsaves-ui-active .notices-section a,
body.nhsaves-ui-active .notices-section button,
body.nhsaves-ui-active .notices-section input,
body.nhsaves-ui-active .notices-section select,
body.nhsaves-ui-active .notices-section textarea,
body.nhsaves-ui-active .notices-section label,
body.nhsaves-ui-active .notices-section div,
body.nhsaves-ui-active .events-promo h1,
body.nhsaves-ui-active .events-promo h2,
body.nhsaves-ui-active .events-promo h3,
body.nhsaves-ui-active .events-promo h4,
body.nhsaves-ui-active .events-promo h5,
body.nhsaves-ui-active .events-promo h6,
body.nhsaves-ui-active .events-promo p,
body.nhsaves-ui-active .events-promo span,
body.nhsaves-ui-active .events-promo a,
body.nhsaves-ui-active .events-promo button,
body.nhsaves-ui-active .events-promo input,
body.nhsaves-ui-active .events-promo select,
body.nhsaves-ui-active .events-promo textarea,
body.nhsaves-ui-active .events-promo label,
body.nhsaves-ui-active .events-promo div,
body.nhsaves-ui-active .home-blog-section h1,
body.nhsaves-ui-active .home-blog-section h2,
body.nhsaves-ui-active .home-blog-section h3,
body.nhsaves-ui-active .home-blog-section h4,
body.nhsaves-ui-active .home-blog-section h5,
body.nhsaves-ui-active .home-blog-section h6,
body.nhsaves-ui-active .home-blog-section p,
body.nhsaves-ui-active .home-blog-section span,
body.nhsaves-ui-active .home-blog-section a,
body.nhsaves-ui-active .home-blog-section button,
body.nhsaves-ui-active .home-blog-section input,
body.nhsaves-ui-active .home-blog-section select,
body.nhsaves-ui-active .home-blog-section textarea,
body.nhsaves-ui-active .home-blog-section label,
body.nhsaves-ui-active .home-blog-section div,
body.nhsaves-ui-active .home-blog-card h1,
body.nhsaves-ui-active .home-blog-card h2,
body.nhsaves-ui-active .home-blog-card h3,
body.nhsaves-ui-active .home-blog-card h4,
body.nhsaves-ui-active .home-blog-card h5,
body.nhsaves-ui-active .home-blog-card h6,
body.nhsaves-ui-active .home-blog-card p,
body.nhsaves-ui-active .home-blog-card span,
body.nhsaves-ui-active .home-blog-card a,
body.nhsaves-ui-active .home-blog-card button,
body.nhsaves-ui-active .home-blog-card input,
body.nhsaves-ui-active .home-blog-card select,
body.nhsaves-ui-active .home-blog-card textarea,
body.nhsaves-ui-active .home-blog-card label,
body.nhsaves-ui-active .home-blog-card div,
body.nhsaves-ui-active .bottom-band h1,
body.nhsaves-ui-active .bottom-band h2,
body.nhsaves-ui-active .bottom-band h3,
body.nhsaves-ui-active .bottom-band h4,
body.nhsaves-ui-active .bottom-band h5,
body.nhsaves-ui-active .bottom-band h6,
body.nhsaves-ui-active .bottom-band p,
body.nhsaves-ui-active .bottom-band span,
body.nhsaves-ui-active .bottom-band a,
body.nhsaves-ui-active .bottom-band button,
body.nhsaves-ui-active .bottom-band input,
body.nhsaves-ui-active .bottom-band select,
body.nhsaves-ui-active .bottom-band textarea,
body.nhsaves-ui-active .bottom-band label,
body.nhsaves-ui-active .bottom-band div {
  font-family: var(--nhs-font-body);
}
