/*
 * Homepage template stylesheet.
 *
 * Shared UI primitives live in jcr-ui.css. This file owns homepage layout,
 * homepage section styling, and homepage-specific responsive behavior.
 */

/* Homepage variables and layout rail */

.jcr-template-homepage {
  --jcr-homepage-content-rail: 1440px;
  --jcr-homepage-gutter: clamp(1.6rem, 4vw, 4rem);
  --jcr-home-blue: #008ef5;
  --jcr-home-blue-deep: #006fbf;
  --jcr-home-navy: #00375f;
  --jcr-home-navy-dark: #002840;
  --jcr-home-ink: #111820;
  --jcr-home-muted: #52616b;
  --jcr-home-panel: #f4f8fb;
  --jcr-home-panel-strong: #e8f2f8;
  --jcr-home-border: #d5e1ea;
  --jcr-home-shadow: 0 1.1rem 2.6rem rgba(0, 55, 95, 0.08);
  --jcr-home-shadow-strong: 0 1.8rem 4rem rgba(0, 55, 95, 0.16);
  --jcr-home-section-pad: clamp(3.4rem, 4.2vw, 5.4rem);
  --jcr-home-image-card-bg: #00375f;
  --jcr-home-image-card-shadow: 0 1.8rem 4.2rem rgba(0, 48, 84, 0.16);
  --jcr-home-image-card-shadow-hover: 0 2.4rem 5.4rem rgba(0, 48, 84, 0.22);
  --jcr-home-focus: 0 0 0 0.35rem rgba(0, 142, 245, 0.22);
  --jcr-premium-blue: #008ef5;
  --jcr-premium-blue-soft: #dff1fc;
  --jcr-premium-navy: #002f50;
  --jcr-premium-navy-deep: #001f34;
  --jcr-premium-paper: #fbfcfd;
  --jcr-premium-wash: #eef7fc;
  --jcr-premium-border: rgba(0, 55, 95, 0.1);
  --jcr-premium-shadow: 0 2rem 4.6rem rgba(0, 48, 84, 0.1);
  --jcr-premium-soft-shadow: 0 .8rem 2rem rgba(0, 55, 95, 0.055);
  --jcr-premium-radius: 3px;
  background:
    linear-gradient(180deg, #fff 0%, #f4f9fc 34%, #fbfcfd 58%, #f1f7fb 100%);
  overflow-x: hidden;
}

.jcr-template-homepage .jcr-feature.padding-x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.jcr-template-homepage .jcr-feature > .container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: min(var(--jcr-homepage-content-rail), calc(100% - (var(--jcr-homepage-gutter) * 2)));
  min-width: 0;
  width: 100%;
}

/* Shared homepage primitives */

/* Section rhythm */

.jcr-template-homepage .jcr-feature {
  position: relative;
}

.jcr-template-homepage .jcr-feature .container {
  position: relative;
  z-index: 1;
}

.jcr-template-homepage .jcr-feature a:focus-visible,
.jcr-template-homepage .jcr-feature button:focus-visible {
  box-shadow: var(--jcr-home-focus);
  outline: 2px solid var(--jcr-home-blue);
  outline-offset: 2px;
}

/* Section header */

.jcr-template-homepage .jcr-home-section-header {
  align-items: flex-end;
  display: flex;
  gap: clamp(1.6rem, 4vw, 5rem);
  justify-content: space-between;
}

.jcr-template-homepage .jcr-home-section-header__copy {
  max-width: 72rem;
  min-width: 0;
}

.jcr-template-homepage .jcr-home-section-header__actions {
  flex: 0 0 auto;
}

/* Eyebrows */

.jcr-template-homepage .jcr-home-eyebrow {
  color: var(--jcr-home-blue);
  font-size: clamp(1.4rem, .96vw, 1.7rem);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.22;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-home-eyebrow--blue {
  color: #0082e0;
}

.jcr-template-homepage .jcr-home-eyebrow--light {
  color: #5fc8ff;
}

/* Headings */

.jcr-template-homepage .jcr-home-heading {
  letter-spacing: 0;
}

.jcr-template-homepage .jcr-home-heading span {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

.jcr-template-homepage .jcr-home-heading--hero {
  font-size: clamp(3.85rem, 5.35vw, 7.25rem);
  max-width: 10ch;
}

.jcr-template-homepage .jcr-home-heading--section {
  color: var(--jcr-home-ink);
  font-size: clamp(2.72rem, 3.2vw, 4.35rem);
  line-height: 1.02;
  max-width: 16ch;
}

.jcr-template-homepage .jcr-home-heading--section::after {
  background: linear-gradient(90deg, var(--jcr-home-blue) 0%, var(--jcr-home-navy) 100%);
  content: "";
  display: block;
  height: .32rem;
  margin-top: 1.4rem;
  opacity: .85;
  width: clamp(5.6rem, 6vw, 9rem);
}

.jcr-template-homepage .jcr-home-heading--card {
  font-size: clamp(2.18rem, 1.9vw, 3.05rem);
  font-weight: 800;
  line-height: 1.05;
}

.jcr-template-homepage .jcr-home-heading--compact {
  font-size: clamp(1.6rem, 1.14vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.jcr-template-homepage .jcr-home-heading--light {
  color: #fff;
}

/* Intro and copy */

.jcr-template-homepage .jcr-home-intro {
  color: var(--jcr-home-muted);
  font-size: clamp(1.55rem, 1.1vw, 1.85rem);
  font-weight: 400;
  line-height: 1.55;
  max-width: 66ch;
}

.jcr-template-homepage .jcr-home-copy {
  color: var(--jcr-home-muted);
  line-height: 1.55;
}

.jcr-template-homepage .jcr-home-card-text {
  color: var(--jcr-home-muted);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
}

.jcr-template-homepage .jcr-home-meta {
  color: var(--jcr-home-muted);
  line-height: 1.45;
}

.jcr-template-homepage .jcr-home-copy--light {
  color: rgba(255, 255, 255, 1);
}

/* Surfaces and cards */

.jcr-template-homepage .jcr-home-surface {
  border-color: var(--jcr-ui-border-soft);
  border-radius: var(--jcr-ui-radius);
  box-shadow: 0 1.1rem 2.6rem rgba(0, 55, 95, .065);
}

.jcr-template-homepage .jcr-home-surface--white {
  background: #fff;
}

.jcr-template-homepage .jcr-home-surface--soft {
  background: var(--jcr-home-panel);
}

.jcr-template-homepage .jcr-home-surface--dark {
  background: rgba(0, 47, 80, .92);
  color: #fff;
}

.jcr-template-homepage .jcr-home-card {
  border-color: var(--jcr-ui-border-soft);
  border-radius: var(--jcr-ui-radius);
  box-shadow: 0 .9rem 2rem rgba(0, 55, 95, .055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.jcr-template-homepage .jcr-home-card:hover,
.jcr-template-homepage .jcr-home-card:focus-within {
  border-color: rgba(65, 153, 255, .3);
  box-shadow: 0 1.1rem 2.4rem rgba(0, 55, 95, .09);
}

.jcr-template-homepage .jcr-home-card__media img {
  display: block;
  max-width: 100%;
}

/* Image cards */

.jcr-template-homepage .jcr-home-image-card {
  background: var(--jcr-home-image-card-bg);
  border: 0;
  box-shadow: var(--jcr-home-image-card-shadow);
  display: flex;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.jcr-template-homepage .jcr-home-image-card::before {
  background: var(--jcr-home-blue);
  content: "";
  height: .42rem;
  inset: 0 0 auto;
  position: absolute;
  z-index: 2;
}

.jcr-template-homepage .jcr-home-image-card::after {
  background:
    linear-gradient(180deg, rgba(0, 18, 32, .1) 0%, rgba(0, 30, 52, .54) 48%, rgba(0, 24, 42, .9) 100%),
    linear-gradient(90deg, rgba(0, 55, 95, .32) 0%, rgba(0, 55, 95, .06) 62%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.jcr-template-homepage .jcr-home-image-card:hover,
.jcr-template-homepage .jcr-home-image-card:focus-within {
  box-shadow: var(--jcr-home-image-card-shadow-hover);
  transform: translateY(-.16rem);
}

.jcr-template-homepage .jcr-home-image-card__media {
  align-items: center;
  background: linear-gradient(135deg, #00375f 0%, #006bb8 58%, #008ef5 100%);
  display: flex;
  height: 100%;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.jcr-template-homepage .jcr-home-image-card__media img {
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
  width: 100%;
}

.jcr-template-homepage .jcr-home-image-card:hover .jcr-home-image-card__media img,
.jcr-template-homepage .jcr-home-image-card:focus-within .jcr-home-image-card__media img {
  transform: scale(1.045);
}

.jcr-template-homepage .jcr-home-image-card__body {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  min-width: 0;
  padding: clamp(2rem, 3vw, 3.4rem);
  position: relative;
  width: 100%;
  z-index: 2;
}

.jcr-template-homepage .jcr-home-image-card__title {
  color: #fff;
  margin: 0;
  max-width: 16ch;
  text-shadow: 0 .2rem .8rem rgba(0, 0, 0, .26);
}

.jcr-template-homepage .jcr-home-image-card__text {
  color: #fff;
  font-size: clamp(1.48rem, 1.1vw, 1.72rem);
  margin-top: 1.1rem;
  max-width: 56ch;
}

@media (max-width: 767px) {
  .jcr-template-homepage {
    --jcr-home-section-pad: 4.4rem;
  }

  .jcr-template-homepage .jcr-home-heading--section {
    font-size: clamp(2.5rem, 7.35vw, 3.26rem);
    line-height: 1.05;
    max-width: 100%;
  }

  .jcr-template-homepage .jcr-home-heading--section::after {
    height: .36rem;
    width: 5.8rem;
  }

  .jcr-template-homepage .jcr-home-intro {
    font-size: 1.55rem;
  }

  .jcr-template-homepage .jcr-home-heading--card {
    font-size: clamp(2.1rem, 6.4vw, 2.95rem);
  }

  .jcr-template-homepage .jcr-home-heading--compact {
    font-size: 1.5rem;
  }

  .jcr-template-homepage .jcr-promo__heading {
    font-size: clamp(2.5rem, 7.35vw, 3.26rem);
  }

  .jcr-template-homepage .jcr-feature .cta {
    width: 100%;
  }

  .jcr-template-homepage .jcr-home-section-header {
    box-sizing: border-box;
    display: block;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1023px) {
  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-grid,
  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-grid-list {
    gap: 1.2rem;
  }
}

/* Promotions */

.jcr-template-homepage .jcr-feature--promotion {
  background: #eef7fc;
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}

.jcr-template-homepage .jcr-feature--promotion-full > .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.jcr-template-homepage .jcr-promo {
  --jcr-promo-accent: var(--jcr-promo-custom-accent, var(--jcr-home-blue));
  --jcr-promo-bg: var(--jcr-promo-custom-bg, #fff);
  --jcr-promo-border: rgba(0, 55, 95, .12);
  --jcr-promo-ink: var(--jcr-home-ink);
  --jcr-promo-muted: var(--jcr-home-muted);
  background: var(--jcr-promo-bg);
  border: 1px solid var(--jcr-promo-border);
  color: var(--jcr-promo-ink);
  display: grid;
  gap: clamp(1.4rem, 2vw, 2.4rem);
  overflow: hidden;
  padding: clamp(1.8rem, 3vw, 3.2rem);
  position: relative;
}

.jcr-template-homepage .jcr-promo--full {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  box-shadow: none;
  padding-left: clamp(2rem, 6vw, 7rem);
  padding-right: clamp(2rem, 6vw, 7rem);
}

.jcr-template-homepage .jcr-promo--tone-soft-blue {
  --jcr-promo-bg: var(--jcr-promo-custom-bg, #eaf6fd);
}

.jcr-template-homepage .jcr-promo--tone-navy,
.jcr-template-homepage .jcr-promo--tone-brand-blue,
.jcr-template-homepage .jcr-promo--tone-dark,
.jcr-template-homepage .jcr-promo--image-background {
  --jcr-promo-border: rgba(255, 255, 255, .16);
  --jcr-promo-ink: #fff;
  --jcr-promo-muted: rgba(255, 255, 255, .84);
}

.jcr-template-homepage .jcr-promo--tone-navy {
  --jcr-promo-bg: var(--jcr-promo-custom-bg, var(--jcr-home-navy));
}

.jcr-template-homepage .jcr-promo--tone-brand-blue {
  --jcr-promo-bg: var(--jcr-promo-custom-bg, var(--jcr-home-blue-deep));
}

.jcr-template-homepage .jcr-promo--tone-dark {
  --jcr-promo-bg: var(--jcr-promo-custom-bg, var(--jcr-home-navy-dark));
}

.jcr-template-homepage .jcr-promo--tone-urgent {
  --jcr-promo-accent: var(--jcr-promo-custom-accent, #c03726);
  --jcr-promo-bg: var(--jcr-promo-custom-bg, #fff1ee);
  --jcr-promo-border: rgba(192, 55, 38, .28);
}

.jcr-template-homepage .jcr-promo__copy,
.jcr-template-homepage .jcr-promo__content,
.jcr-template-homepage .jcr-promo__custom {
  min-width: 0;
}

.jcr-template-homepage .jcr-promo__content {
  align-items: center;
  display: grid;
  gap: clamp(1.6rem, 3vw, 3.4rem);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--has-image .jcr-promo__content,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--has-image .jcr-promo__content {
  grid-template-columns: minmax(0, 1fr) minmax(22rem, .82fr);
}

.jcr-template-homepage .jcr-promo--image-left.jcr-promo--style-3 .jcr-promo__media {
  order: -1;
}

.jcr-template-homepage .jcr-promo--image-top.jcr-promo--style-3 .jcr-promo__content {
  grid-template-columns: minmax(0, 1fr);
}

.jcr-template-homepage .jcr-promo--image-background {
  min-height: clamp(34rem, 34vw, 48rem);
}

.jcr-template-homepage .jcr-promo--image-background .jcr-promo__content {
  grid-template-columns: minmax(0, min(72rem, 100%));
  min-height: inherit;
  position: relative;
  z-index: 1;
}

.jcr-template-homepage .jcr-promo--image-background .jcr-promo__media {
  inset: 0;
  min-height: 100%;
  position: absolute;
  z-index: 0;
}

.jcr-template-homepage .jcr-promo--image-background .jcr-promo__media::after {
  background:
    linear-gradient(90deg, rgba(0, 29, 49, .92) 0%, rgba(0, 40, 64, .78) 48%, rgba(0, 40, 64, .48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .34));
  content: "";
  inset: 0;
  position: absolute;
}

.jcr-template-homepage .jcr-promo__media {
  align-self: stretch;
  background: var(--jcr-home-panel);
  border-radius: var(--jcr-ui-radius);
  margin: 0;
  min-height: clamp(20rem, 22vw, 32rem);
  overflow: hidden;
  position: relative;
}

.jcr-template-homepage .jcr-promo__image {
  display: block;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.jcr-template-homepage .jcr-promo__label {
  color: var(--jcr-promo-accent);
  margin: 0 0 1rem;
}

.jcr-template-homepage .jcr-promo__badge {
  background: color-mix(in srgb, var(--jcr-promo-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--jcr-promo-accent) 42%, transparent);
  color: var(--jcr-promo-ink);
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.3rem;
  padding: .55rem .8rem;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-promo__heading {
  color: var(--jcr-promo-ink);
  margin: 0;
}

.jcr-template-homepage .jcr-promo__heading::after {
  background: var(--jcr-promo-accent);
}

.jcr-template-homepage .jcr-promo__body {
  color: var(--jcr-promo-muted);
  max-width: 72ch;
}

.jcr-template-homepage .jcr-promo__body > :first-child,
.jcr-template-homepage .jcr-promo__fine-print > :first-child,
.jcr-template-homepage .jcr-promo__supporting > :first-child,
.jcr-template-homepage .jcr-promo__custom > :first-child {
  margin-top: 0;
}

.jcr-template-homepage .jcr-promo__body > :last-child,
.jcr-template-homepage .jcr-promo__fine-print > :last-child,
.jcr-template-homepage .jcr-promo__supporting > :last-child,
.jcr-template-homepage .jcr-promo__custom > :last-child {
  margin-bottom: 0;
}

.jcr-template-homepage .jcr-promo__fine-print,
.jcr-template-homepage .jcr-promo__detail,
.jcr-template-homepage .jcr-promo__supporting {
  color: var(--jcr-promo-muted);
}

.jcr-template-homepage .jcr-promo__fine-print {
  font-size: 1.3rem;
  margin-top: 1rem;
}

.jcr-template-homepage .jcr-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.5rem;
}

.jcr-template-homepage .jcr-promo__countdown {
  align-items: baseline;
  background: color-mix(in srgb, var(--jcr-promo-accent) 12%, transparent);
  border-left: .32rem solid var(--jcr-promo-accent);
  color: var(--jcr-promo-ink);
  display: inline-flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  line-height: 1.3;
  margin-top: 1.4rem;
  padding: .85rem 1rem;
  width: fit-content;
}

.jcr-template-homepage .jcr-promo__countdown-label {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-promo__countdown-value {
  font-size: clamp(1.7rem, 1.5vw, 2.3rem);
  font-weight: 800;
}

.jcr-template-homepage .jcr-promo__highlights {
  display: grid;
  gap: .7rem;
  margin: 1.4rem 0 0;
  padding-left: 1.8rem;
}

.jcr-template-homepage .jcr-promo__highlights li::marker {
  color: var(--jcr-promo-accent);
}

.jcr-template-homepage .jcr-promo--style-2 {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: clamp(1.5rem, 2vw, 2.2rem);
  padding-top: clamp(1.5rem, 2vw, 2.2rem);
}

.jcr-template-homepage .jcr-promo__notice-copy,
.jcr-template-homepage .jcr-promo__notice-tools {
  min-width: 0;
}

.jcr-template-homepage .jcr-promo__notice-copy .jcr-promo__label {
  margin-bottom: .5rem;
}

.jcr-template-homepage .jcr-promo__notice-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.jcr-template-homepage .jcr-promo__notice-tools .jcr-promo__actions,
.jcr-template-homepage .jcr-promo__notice-tools .jcr-promo__countdown {
  margin-top: 0;
}

/* Style 2 - Notice Strip */

.jcr-template-homepage .jcr-feature.jcr-feature--promotion-full.jcr-feature--promotion-style-2,
.jcr-template-homepage .jcr-feature.jcr-feature--promotion-full.jcr-feature--promotion-style-3 {
  background: transparent;
  margin: 0;
  overflow: hidden;
  padding: 0 !important;
}

.jcr-template-homepage .jcr-feature--promotion-full.jcr-feature--promotion-style-2 > .container,
.jcr-template-homepage .jcr-feature--promotion-full.jcr-feature--promotion-style-3 > .container {
  padding-bottom: 0;
  padding-top: 0;
}

.jcr-template-homepage .jcr-promo--style-2 {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .22), transparent 48%),
    var(--jcr-promo-bg);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 55, 95, .12);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--full,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--full {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  width: 100%;
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--full {
  align-content: center;
  box-sizing: border-box;
  min-height: clamp(16rem, 12vw, 18rem);
  padding-bottom: clamp(3.2rem, 3.8vw, 4.8rem);
  padding-left: max(clamp(2rem, 4vw, 4rem), calc((100% - var(--jcr-homepage-content-rail)) / 2 + 2rem));
  padding-right: max(clamp(2rem, 4vw, 4rem), calc((100% - var(--jcr-homepage-content-rail)) / 2 + 2rem));
  padding-top: clamp(3.2rem, 3.8vw, 4.8rem);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-soft-blue {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 142, 245, .18), transparent 36%),
    linear-gradient(110deg, rgba(255, 255, 255, .34), transparent 48%),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-navy {
  background:
    radial-gradient(circle at 10% 0%, rgba(127, 215, 255, .22), transparent 34%),
    linear-gradient(110deg, rgba(0, 84, 142, .28), rgba(0, 19, 34, .16)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-brand-blue {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .24), transparent 34%),
    linear-gradient(110deg, rgba(0, 142, 245, .2), rgba(0, 35, 61, .18)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-dark {
  background:
    radial-gradient(circle at 10% 0%, rgba(79, 181, 236, .18), transparent 34%),
    linear-gradient(110deg, rgba(0, 78, 130, .2), rgba(0, 9, 18, .2)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-urgent {
  background:
    linear-gradient(90deg, rgba(192, 55, 38, .18), transparent 45%),
    var(--jcr-promo-bg);
}

/* Style 1 - Featured Campaign */

.jcr-template-homepage .jcr-promo--style-1 {
  --jcr-promo-campaign-image-max: clamp(38rem, 34vw, 50rem);
  padding: clamp(2.4rem, 4vw, 4.8rem);
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__content {
  align-items: center;
  gap: clamp(2rem, 3vw, 4rem);
  grid-template-areas: "copy";
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__copy {
  display: grid;
  gap: clamp(1.2rem, 1.65vw, 2rem);
  grid-area: copy;
  position: relative;
  z-index: 1;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__media {
  grid-area: media;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__label,
.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__badge,
.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__actions,
.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__countdown,
.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__fine-print {
  margin: 0;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__heading {
  max-width: 15ch;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__body {
  max-width: 58ch;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__fine-print p {
  color: inherit;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__fine-print {
  max-width: 64ch;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__badge {
  justify-self: start;
  max-width: 100%;
  width: fit-content;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--has-image.jcr-promo--image-right:not(.jcr-promo--image-background) .jcr-promo__content {
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 1fr) minmax(22rem, var(--jcr-promo-campaign-image-max));
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--has-image.jcr-promo--image-left:not(.jcr-promo--image-background) .jcr-promo__content {
  grid-template-areas: "media copy";
  grid-template-columns: minmax(22rem, var(--jcr-promo-campaign-image-max)) minmax(0, 1fr);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--has-image:not(.jcr-promo--image-background) .jcr-promo__content {
  align-items: stretch;
}

.jcr-template-homepage .jcr-promo--style-1:not(.jcr-promo--image-background) .jcr-promo__media {
  align-self: stretch;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, .32), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(218, 241, 253, .12));
  backdrop-filter: blur(1.2rem);
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .36),
    0 1.8rem 4rem rgba(0, 24, 43, .18);
  display: grid;
  height: auto;
  justify-self: center;
  max-width: var(--jcr-promo-campaign-image-max);
  min-height: 0;
  place-items: center;
  width: min(100%, var(--jcr-promo-campaign-image-max));
}

.jcr-template-homepage .jcr-promo--style-1:not(.jcr-promo--image-background) .jcr-promo__image {
  box-sizing: border-box;
  height: 100%;
  inset: 0;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
  padding: clamp(1rem, 1.7vw, 2rem);
  position: absolute;
  width: 100%;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background {
  min-height: clamp(38rem, 40vw, 56rem);
  padding: clamp(2.8rem, 4.6vw, 5.8rem);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__content {
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__media {
  border-radius: 0;
  pointer-events: none;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__image {
  object-fit: cover;
  padding: 0;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__media::after {
  background:
    linear-gradient(90deg, rgba(0, 28, 48, .64) 0%, rgba(0, 32, 54, .4) 52%, rgba(0, 32, 54, .16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .22));
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__copy {
  background: linear-gradient(110deg, rgba(0, 28, 48, .56), rgba(0, 28, 48, .22));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 22, 38, .18);
  box-sizing: border-box;
  justify-self: start;
  max-width: min(60rem, 100%);
  padding: clamp(1.8rem, 2.8vw, 3.4rem);
}

.jcr-template-homepage .jcr-feature.jcr-feature--promotion-full.jcr-feature--promotion-style-1 {
  background: transparent;
  overflow: hidden;
  margin: 0;
  padding: 0 !important;
}

.jcr-template-homepage .jcr-feature--promotion-full.jcr-feature--promotion-style-1 > .container {
  padding-bottom: 0;
  padding-top: 0;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full {
  border: 0;
  border-block: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: clamp(3rem, 4.8vw, 6rem) 0;
  width: 100%;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full .jcr-promo__content {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--jcr-homepage-content-rail);
  padding-left: clamp(2rem, 4vw, 4rem);
  padding-right: clamp(2rem, 4vw, 4rem);
  width: 100%;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--image-background .jcr-promo__content {
  position: static;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--image-background .jcr-promo__media {
  grid-area: auto;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--has-image:not(.jcr-promo--image-background) .jcr-promo__content {
  column-gap: clamp(2.4rem, 5vw, 7rem);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--has-image:not(.jcr-promo--image-background) {
  --jcr-promo-campaign-image-max: clamp(44rem, 38vw, 58rem);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--has-image.jcr-promo--image-right:not(.jcr-promo--image-background) .jcr-promo__content {
  grid-template-columns: minmax(0, 1fr) minmax(28rem, var(--jcr-promo-campaign-image-max));
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--has-image.jcr-promo--image-left:not(.jcr-promo--image-background) .jcr-promo__content {
  grid-template-columns: minmax(28rem, var(--jcr-promo-campaign-image-max)) minmax(0, 1fr);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--full:not(.jcr-promo--image-background) .jcr-promo__image {
  padding: clamp(.8rem, 1.2vw, 1.4rem);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-light {
  background:
    radial-gradient(circle at 14% 8%, rgba(127, 215, 255, .2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(238, 248, 253, .96)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-soft-blue {
  background:
    radial-gradient(circle at 13% 10%, rgba(0, 142, 245, .18), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(234, 246, 253, .06)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy {
  background:
    radial-gradient(circle at 14% 8%, rgba(127, 215, 255, .22), transparent 34%),
    linear-gradient(135deg, rgba(0, 84, 142, .28), rgba(0, 19, 34, .18)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, .22), transparent 33%),
    linear-gradient(135deg, rgba(0, 142, 245, .2), rgba(0, 35, 61, .22)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark {
  background:
    radial-gradient(circle at 14% 8%, rgba(79, 181, 236, .18), transparent 34%),
    linear-gradient(135deg, rgba(0, 78, 130, .22), rgba(0, 9, 18, .22)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background {
  --jcr-promo-accent: var(--jcr-promo-custom-accent, #7fd7ff);
  --jcr-promo-ink: #fff;
  --jcr-promo-muted: rgba(255, 255, 255, .9);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue {
  --jcr-promo-accent: var(--jcr-promo-custom-accent, #e7f7ff);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__fine-print,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__fine-print p,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__fine-print,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__fine-print p,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__fine-print,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__fine-print p,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__fine-print,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__fine-print p {
  color: var(--jcr-promo-muted) !important;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__heading {
  color: #fff !important;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__badge,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__badge,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__badge,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__badge {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__cta--secondary,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__cta--secondary,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__cta--secondary,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__cta--secondary {
  --jcr-button-border: rgba(255, 255, 255, .9);
  --jcr-button-fill: #fff;
  --jcr-button-hover-text: var(--jcr-home-navy-dark);
  --jcr-button-text: #fff;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-btn--blue-solid {
  --jcr-button-bg: #fff;
  --jcr-button-border: #fff;
  --jcr-button-fill: var(--jcr-promo-accent);
  --jcr-button-hover-border: #fff;
  --jcr-button-hover-text: var(--jcr-home-navy-dark);
  --jcr-button-text: var(--jcr-home-navy-dark);
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__countdown {
  align-items: flex-start;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--jcr-promo-accent) 21%, transparent), rgba(255, 255, 255, .08));
  border: 1px solid color-mix(in srgb, var(--jcr-promo-accent) 48%, transparent);
  border-left: .45rem solid var(--jcr-promo-accent);
  display: grid;
  gap: .35rem;
  max-width: 100%;
  min-width: min(24rem, 100%);
  padding: clamp(1rem, 1.4vw, 1.45rem) clamp(1.15rem, 1.7vw, 1.8rem);
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__countdown-label {
  color: var(--jcr-promo-ink);
  font-size: clamp(1.3rem, 1vw, 1.5rem);
  letter-spacing: .05em;
}

.jcr-template-homepage .jcr-promo--style-1 .jcr-promo__countdown-value {
  color: var(--jcr-promo-ink);
  font-size: clamp(2.25rem, 2.4vw, 3.6rem);
  line-height: 1.05;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-navy .jcr-promo__countdown,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-brand-blue .jcr-promo__countdown,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-dark .jcr-promo__countdown,
.jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__countdown {
  background: rgba(0, 25, 43, .52);
  border-color: rgba(255, 255, 255, .28);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-urgent {
  --jcr-promo-accent: var(--jcr-promo-custom-accent, #d43827);
  background:
    linear-gradient(90deg, rgba(212, 56, 39, .12), transparent 42%),
    var(--jcr-promo-bg);
  border-top: .5rem solid var(--jcr-promo-accent);
  box-shadow: 0 1.8rem 4rem rgba(122, 32, 23, .16);
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-urgent.jcr-promo--full {
  border-top: 0;
  box-shadow: none;
}

.jcr-template-homepage .jcr-promo--style-1.jcr-promo--tone-urgent .jcr-promo__countdown {
  background: rgba(212, 56, 39, .13);
  border-color: rgba(212, 56, 39, .36);
}

/* Style 3 - Equipment Feature */

.jcr-template-homepage .jcr-promo--style-3 {
  background:
    radial-gradient(circle at 12% 8%, rgba(127, 215, 255, .16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .2), transparent 48%),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__content {
  align-items: center;
  gap: clamp(1.6rem, 2.6vw, 3.2rem);
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__copy {
  display: grid;
  gap: clamp(.75rem, 1.1vw, 1.25rem);
  grid-area: copy;
  max-width: 66rem;
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__body {
  max-width: 62ch;
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__label,
.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__highlights,
.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__detail,
.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__actions,
.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__countdown {
  margin: 0;
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--has-image .jcr-promo__content {
  grid-template-areas: "media copy";
  grid-template-columns: minmax(22rem, .62fr) minmax(0, 1fr);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-right .jcr-promo__content {
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 1fr) minmax(22rem, .62fr);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__content {
  align-items: center;
  grid-template-areas:
    "media"
    "copy";
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__copy {
  grid-template-columns: minmax(0, 1fr);
  max-width: 74rem;
  row-gap: clamp(.85rem, 1.2vw, 1.4rem);
  width: 100%;
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__label,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__highlights,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__detail,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__countdown,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__actions {
  grid-column: 1;
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--full {
  padding-left: 0;
  padding-right: 0;
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--full .jcr-promo__content {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--jcr-homepage-content-rail);
  padding-left: clamp(2rem, 4vw, 4rem);
  padding-right: clamp(2rem, 4vw, 4rem);
  width: 100%;
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-soft-blue {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 142, 245, .18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(234, 246, 253, .04)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy {
  background:
    radial-gradient(circle at 12% 8%, rgba(127, 215, 255, .2), transparent 34%),
    linear-gradient(135deg, rgba(0, 84, 142, .28), rgba(0, 19, 34, .16)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(135deg, rgba(0, 142, 245, .2), rgba(0, 35, 61, .2)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark {
  background:
    radial-gradient(circle at 12% 8%, rgba(79, 181, 236, .18), transparent 34%),
    linear-gradient(135deg, rgba(0, 78, 130, .22), rgba(0, 9, 18, .22)),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-urgent {
  background:
    linear-gradient(90deg, rgba(192, 55, 38, .16), transparent 42%),
    var(--jcr-promo-bg);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--has-image .jcr-promo__media {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, .34), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, .38), rgba(218, 241, 253, .16));
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .34),
    0 1.8rem 4rem rgba(0, 24, 43, .14);
  display: grid;
  grid-area: media;
  justify-self: center;
  max-height: clamp(24rem, 27vw, 36rem);
  max-width: 46rem;
  min-height: clamp(20rem, 22vw, 28rem);
  place-items: center;
  width: min(100%, 46rem);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--has-image .jcr-promo__image {
  box-sizing: border-box;
  object-fit: contain;
  padding: clamp(1rem, 1.8vw, 2.2rem);
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__media {
  justify-self: center;
  max-height: clamp(24rem, 26vw, 34rem);
  max-width: 64rem;
  min-height: clamp(22rem, 22vw, 28rem);
  width: min(100%, 64rem);
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__highlights {
  display: grid;
  gap: .55rem;
  list-style: none;
  padding: 0;
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__highlights li {
  align-items: center;
  background: color-mix(in srgb, var(--jcr-promo-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--jcr-promo-accent) 18%, transparent);
  color: var(--jcr-promo-ink);
  display: flex;
  gap: .75rem;
  font-size: clamp(1.35rem, .95vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  padding: .65rem .8rem;
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__highlights li::before {
  background: var(--jcr-promo-accent);
  content: "";
  flex: 0 0 .72rem;
  height: .72rem;
  width: .72rem;
}

.jcr-template-homepage .jcr-promo--style-3 .jcr-promo__detail {
  font-size: clamp(1.35rem, 1vw, 1.55rem);
  line-height: 1.45;
  max-width: 58ch;
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-navy,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-brand-blue,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-dark,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark {
  --jcr-promo-accent: var(--jcr-promo-custom-accent, #7fd7ff);
  --jcr-promo-ink: #fff;
  --jcr-promo-muted: rgba(255, 255, 255, .88);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-brand-blue,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue {
  --jcr-promo-accent: var(--jcr-promo-custom-accent, #e7f7ff);
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-navy .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-brand-blue .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-dark .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue .jcr-promo__heading,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark .jcr-promo__heading {
  color: #fff;
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-navy .jcr-promo__supporting,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-navy .jcr-promo__supporting p,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-brand-blue .jcr-promo__supporting,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-brand-blue .jcr-promo__supporting p,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-dark .jcr-promo__supporting,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-dark .jcr-promo__supporting p,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark .jcr-promo__body,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark .jcr-promo__body p,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy .jcr-promo__detail,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue .jcr-promo__detail,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark .jcr-promo__detail {
  color: var(--jcr-promo-muted) !important;
}

.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy .jcr-promo__highlights,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy .jcr-promo__highlights li,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue .jcr-promo__highlights,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue .jcr-promo__highlights li,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark .jcr-promo__highlights,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark .jcr-promo__highlights li {
  color: #fff !important;
}

.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-navy .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-brand-blue .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-2.jcr-promo--tone-dark .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-navy .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-brand-blue .jcr-btn--blue-solid,
.jcr-template-homepage .jcr-promo--style-3.jcr-promo--tone-dark .jcr-btn--blue-solid {
  --jcr-button-bg: #fff;
  --jcr-button-border: #fff;
  --jcr-button-fill: var(--jcr-promo-accent);
  --jcr-button-hover-border: #fff;
  --jcr-button-hover-text: var(--jcr-home-navy-dark);
  --jcr-button-text: var(--jcr-home-navy-dark);
}

.jcr-template-homepage .jcr-promo--tone-navy .jcr-home-intro,
.jcr-template-homepage .jcr-promo--tone-navy .jcr-home-copy,
.jcr-template-homepage .jcr-promo--tone-navy .jcr-home-meta,
.jcr-template-homepage .jcr-promo--tone-brand-blue .jcr-home-intro,
.jcr-template-homepage .jcr-promo--tone-brand-blue .jcr-home-copy,
.jcr-template-homepage .jcr-promo--tone-brand-blue .jcr-home-meta,
.jcr-template-homepage .jcr-promo--tone-dark .jcr-home-intro,
.jcr-template-homepage .jcr-promo--tone-dark .jcr-home-copy,
.jcr-template-homepage .jcr-promo--tone-dark .jcr-home-meta,
.jcr-template-homepage .jcr-promo--image-background .jcr-home-intro,
.jcr-template-homepage .jcr-promo--image-background .jcr-home-copy,
.jcr-template-homepage .jcr-promo--image-background .jcr-home-meta {
  color: var(--jcr-promo-muted);
}

.jcr-template-homepage .jcr-promo--tone-navy .jcr-btn--blue,
.jcr-template-homepage .jcr-promo--tone-brand-blue .jcr-btn--blue,
.jcr-template-homepage .jcr-promo--tone-dark .jcr-btn--blue,
.jcr-template-homepage .jcr-promo--image-background .jcr-btn--blue {
  --jcr-button-border: rgba(255, 255, 255, .82);
  --jcr-button-fill: #fff;
  --jcr-button-hover-text: var(--jcr-home-navy-dark);
  --jcr-button-text: #fff;
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--has-image .jcr-promo__content,
  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--has-image .jcr-promo__content,
  .jcr-template-homepage .jcr-promo--style-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--has-image .jcr-promo__content {
    grid-template-areas:
      "media"
      "copy";
  }

  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--has-image .jcr-promo__media {
    max-height: 30rem;
    max-width: 100%;
    min-height: min(64vw, 24rem);
    width: 100%;
  }

  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__label,
  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__heading,
  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__body,
  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__highlights,
  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__detail,
  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__countdown,
  .jcr-template-homepage .jcr-promo--style-3.jcr-promo--image-top .jcr-promo__actions {
    grid-column: 1;
  }

  .jcr-template-homepage .jcr-promo__notice-tools {
    align-items: stretch;
    display: grid;
    justify-content: stretch;
    width: 100%;
  }

  .jcr-template-homepage .jcr-promo__actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-promo--style-1 .jcr-promo__actions,
  .jcr-template-homepage .jcr-promo--style-2 .jcr-promo__actions,
  .jcr-template-homepage .jcr-promo--style-3 .jcr-promo__actions {
    box-sizing: border-box;
    justify-self: stretch !important;
    justify-content: center;
    justify-items: stretch;
    margin-left: auto;
    margin-right: auto;
    max-width: none !important;
    width: 100% !important;
  }

  .jcr-template-homepage .jcr-promo--style-1 .jcr-promo__actions .jcr-btn,
  .jcr-template-homepage .jcr-promo--style-2 .jcr-promo__actions .jcr-btn,
  .jcr-template-homepage .jcr-promo--style-3 .jcr-promo__actions .jcr-btn {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 5.4rem;
    max-width: none !important;
    width: 100% !important;
  }

  .jcr-template-homepage .jcr-promo--style-1 {
    padding: 2rem;
  }

  .jcr-template-homepage .jcr-promo--style-1:not(.jcr-promo--image-background) .jcr-promo__media {
    --jcr-promo-campaign-image-max: 28rem;
    min-height: min(72vw, var(--jcr-promo-campaign-image-max));
  }

  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--has-image.jcr-promo--image-right:not(.jcr-promo--image-background) .jcr-promo__content {
    grid-template-areas:
      "copy"
      "media";
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--has-image.jcr-promo--image-left:not(.jcr-promo--image-background) .jcr-promo__content {
    grid-template-areas:
      "media"
      "copy";
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--has-image.jcr-promo--image-right:not(.jcr-promo--image-background) .jcr-promo__content,
  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--full.jcr-promo--has-image.jcr-promo--image-left:not(.jcr-promo--image-background) .jcr-promo__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background {
    min-height: 0;
    padding: clamp(2.4rem, 7vw, 3.6rem) 2rem;
  }

  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--full {
    padding-left: 0;
    padding-right: 0;
  }

  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--full .jcr-promo__content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .jcr-template-homepage .jcr-promo--style-1.jcr-promo--image-background .jcr-promo__copy {
    padding: clamp(1.5rem, 5vw, 2.2rem);
    width: 100%;
  }
}

/* Featured Google Reviews */

.jcr-template-homepage .jcr-feature--google-reviews {
  background: #eef7fc;
  padding: clamp(3rem, 3.6vw, 4.4rem) 0;
}

.jcr-template-homepage .jcr-google-reviews {
  display: grid;
  gap: clamp(2rem, 2.7vw, 3.1rem);
  padding: clamp(2rem, 3.2vw, 3.8rem);
}

.jcr-template-homepage .jcr-google-reviews__header {
  align-items: flex-start;
}

.jcr-template-homepage .jcr-google-reviews .jcr-home-heading--section {
  font-weight: 800;
  max-width: min(100%, 38ch);
}

.jcr-template-homepage .jcr-google-reviews .jcr-home-intro {
  padding-top: 5px;
}

.jcr-template-homepage .jcr-google-reviews__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.jcr-template-homepage .jcr-google-reviews__shortcode {
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.jcr-template-homepage .jcr-google-reviews__shortcode .wprev_outer_wb,
.jcr-template-homepage .jcr-google-reviews__shortcode .wprev-slider,
.jcr-template-homepage .jcr-google-reviews__shortcode .wprevpro_t1_outer_div,
.jcr-template-homepage .jcr-google-reviews__shortcode .w3_wprs-row-padding {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.jcr-template-homepage .jcr-google-reviews__shortcode > :first-child {
  margin-top: 0;
}

.jcr-template-homepage .jcr-google-reviews__shortcode > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature--google-reviews {
    padding: 4.4rem 0;
  }

  .jcr-template-homepage .jcr-google-reviews {
    padding: 2rem;
  }

  .jcr-template-homepage .jcr-google-reviews__actions {
    align-items: stretch;
    display: grid;
  }

  .jcr-template-homepage .jcr-google-reviews__actions .jcr-btn {
    width: 100%;
  }
}

/* Hero / Search */

.jcr-template-homepage .jcr-homepage-search-form {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 2;
}

.jcr-template-homepage .jcr-homepage-search-form .search-field {
  border: 0;
  min-width: 0;
  padding: 1.1rem 1rem;
}

.jcr-template-homepage .jcr-homepage-search-form .search-field:focus {
  outline: 2px solid #0797ff;
  outline-offset: 2px;
}

.jcr-template-homepage .jcr-homepage-search-preview {
  background: #fff;
  border: 1px solid #cfd8df;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.2);
  left: 0;
  margin-top: -1px;
  max-height: min(70vh, 58rem);
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 30;
}

.jcr-template-homepage .jcr-homepage-search-preview[hidden] {
  display: none;
}

.jcr-template-homepage .jcr-search-preview-group {
  border-bottom: 1px solid #e6e6e6;
  padding: 1.1rem 1rem;
}

.jcr-template-homepage .jcr-search-preview-heading {
  color: #4d5056;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-search-preview-group ul {
  display: grid;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jcr-template-homepage .jcr-search-preview-link {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-height: 7.2rem;
  padding: 0.75rem;
  text-decoration: none;
}

.jcr-template-homepage .jcr-search-preview-link:hover,
.jcr-template-homepage .jcr-search-preview-link:focus {
  background: #f2f6f9;
}

.jcr-template-homepage .jcr-search-preview-media {
  background: #0082e0;
  color: #fff;
  display: block;
  flex: 0 0 5.6rem;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
  height: 5.6rem;
  line-height: 5.6rem;
  overflow: hidden;
  text-align: center;
}

.jcr-template-homepage .jcr-search-preview-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.jcr-template-homepage .jcr-search-preview-media-fallback {
  background: linear-gradient(135deg, #0082e0 0%, #4d5056 100%);
}

.jcr-template-homepage .jcr-search-preview-text {
  display: grid;
  gap: 0.2rem;
}

.jcr-template-homepage .jcr-search-preview-title {
  color: #111;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9rem;
}

.jcr-template-homepage .jcr-search-preview-meta,
.jcr-template-homepage .jcr-search-preview-empty,
.jcr-template-homepage .jcr-search-preview-all {
  color: #4d5056;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  line-height: 1.6rem;
}

.jcr-template-homepage .jcr-search-preview-empty {
  padding: 1.4rem 1.6rem 0.8rem;
}

.jcr-template-homepage .jcr-search-preview-loading {
  align-items: center;
  color: #263746;
  display: flex;
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 700;
  gap: 0.9rem;
  line-height: 1.7rem;
  padding: 1.35rem 1.6rem 0.85rem;
}

.jcr-template-homepage .jcr-search-preview-loading::before {
  animation: jcr-search-preview-pulse 0.9s ease-in-out infinite;
  background: #0082e0;
  content: '';
  display: block;
  flex: 0 0 0.9rem;
  height: 0.9rem;
  width: 0.9rem;
}

.jcr-template-homepage .jcr-search-preview-all {
  display: block;
  font-weight: 700;
  padding: 1.3rem 1.6rem;
  text-decoration: none;
}

.jcr-template-homepage .jcr-search-preview-all:hover,
.jcr-template-homepage .jcr-search-preview-all:focus {
  background: #f2f6f9;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form .flex {
  gap: 1.2rem;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form .search-field {
  background: #f8fbfd;
  border: 1px solid #d8e4ec;
  color: #102231 !important;
  min-height: 4.9rem;
  padding: 1.15rem 1.25rem;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form .search-field::placeholder {
  color: #7a8791;
  opacity: 1;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form .cta {
  flex: 0 0 auto;
  min-height: 4.9rem;
}

.jcr-template-homepage .jcr-feature:not(.jcr-feature--hero-search) {
  padding-bottom: var(--jcr-home-section-pad) !important;
  padding-top: var(--jcr-home-section-pad) !important;
  border-top: 0 !important;
}

.jcr-template-homepage .jcr-feature:not(.jcr-feature--hero-search)::before {
  background: linear-gradient(90deg, rgba(0, 142, 245, 0), rgba(0, 142, 245, 0.24), rgba(0, 142, 245, 0));
  content: "";
  height: 1px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 0;
  opacity: 0;
}

.jcr-template-homepage .jcr-homepage-hero-image {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  filter: saturate(0.95) contrast(1.04);
}

.jcr-template-homepage .jcr-homepage-hero-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background:
  linear-gradient(90deg, rgba(0, 30, 48, 0.66) 0%, rgba(0, 55, 95, 0.42) 46%, rgba(0, 142, 245, 0.10) 100%),
  linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 31, 52, 0.18) 82%, rgba(0, 31, 52, 0.56) 100%);
}

.jcr-template-homepage .jcr-feature--hero-search .paragraph2.uppercase {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.jcr-template-homepage .jcr-feature--hero-search .title1 {
  text-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.28);
  font-size: clamp(3.5rem, 4.5vw, 6.2rem);
  letter-spacing: 0;
  line-height: 0.96;
  max-width: 55ch;
}

.jcr-template-homepage .jcr-feature--hero-search .paragraph1 {
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.65rem, 1.3vw, 1.95rem);
  max-width: 55ch;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas {
  display: grid;
  gap: clamp(.8rem, 1.4vw, 1.2rem);
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  margin-top: 1.3rem !important;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas .cta {
  --jcr-button-bg: rgba(0, 31, 52, .44);
  --jcr-button-border: rgba(255, 255, 255, .88);
  --jcr-button-fill: var(--jcr-brand-white);
  --jcr-button-hover-border: var(--jcr-brand-white);
  --jcr-button-hover-text: var(--jcr-ui-navy-deep);
  --jcr-button-text: #fff;
  align-items: center;
  background: var(--jcr-button-bg);
  border-color: var(--jcr-button-border);
  box-shadow: none;
  color: var(--jcr-button-text);
  display: inline-flex;
  font-size: clamp(1.35rem, 1.16rem + .42vw, 1.55rem);
  justify-content: center;
  letter-spacing: .055em;
  min-width: 0;
  min-height: 6.4rem;
  padding: 1.3rem 1.5rem;
  text-shadow: 0 .1rem .4rem rgba(0, 31, 52, .3);
  width: 100%;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas .cta:first-child {
  --jcr-button-bg: var(--jcr-premium-blue);
  --jcr-button-border: var(--jcr-premium-blue);
  --jcr-button-fill: var(--jcr-brand-white);
  --jcr-button-hover-border: var(--jcr-brand-white);
  --jcr-button-hover-text: var(--jcr-ui-blue);
  --jcr-button-text: #fff;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas .cta > span {
  color: inherit;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas .cta:hover,
.jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas .cta:focus {
  background: var(--jcr-button-bg);
  border-color: var(--jcr-button-hover-border, var(--jcr-button-border));
  color: var(--jcr-button-hover-text);
  text-shadow: none;
}

.jcr-template-homepage .jcr-feature--hero-search .container > ul {
  gap: 1.2rem;
  margin-top: clamp(3rem, 4vw, 5.2rem) !important;
}

.jcr-template-homepage .jcr-feature--hero-search .container > ul li {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 6.6rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, rgba(0, 31, 52, .44), rgba(0, 31, 52, .32));
  border: 1px solid rgba(255,255,255,.32);
  border-left: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  color: rgba(255,255,255,.98);
  font-weight: 700;
  text-align: center;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form input.search-field[type="search"],
.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form input.search-field.paragraph1[type="search"] {
  caret-color: #102231 !important;
  color: #102231 !important;
  -webkit-text-fill-color: #102231 !important;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form input.search-field[type="search"]::placeholder {
  color: #7a8791 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #7a8791 !important;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form input.search-field[type="search"]:-webkit-autofill {
  -webkit-text-fill-color: #102231 !important;
}

.jcr-template-homepage .jcr-feature--hero-search {
  background: #002f50 !important;
  min-height: clamp(64rem, 78vh, 84rem);
  overflow: visible !important;
  z-index: 30;
}

.jcr-template-homepage .jcr-feature--hero-search .container {
  padding-bottom: clamp(2rem, 5vw, 5.5rem);
  z-index: 40;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-form {
  padding: clamp(1.2rem, 2vw, 1.8rem) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-top: 0.45rem solid var(--jcr-premium-blue);
  box-shadow: 0 2.2rem 5rem rgba(0, 31, 52, 0.28);
  z-index: 80;
}

.jcr-template-homepage .jcr-feature--hero-search .jcr-homepage-search-preview {
  z-index: 1000;
}

@keyframes jcr-search-preview-pulse {
0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature:not(.jcr-feature--hero-search) {
    padding-bottom: 4rem !important;
    padding-top: 4rem !important;
  }

  .jcr-template-homepage .jcr-feature--hero-search .title1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 10vw, 4.6rem);
  }

  .jcr-template-homepage .jcr-feature--hero-search .container > ul {
    display: none !important;
  }

  .jcr-template-homepage .jcr-feature--hero-search .container > ul li {
    min-height: 0;
    padding: 1rem 1.1rem;
  }

  .jcr-template-homepage .jcr-feature--hero-search {
    min-height: 0;
  }

  .jcr-template-homepage .jcr-feature--hero-search > .container {
    max-width: calc(100% - 4rem);
    padding-left: 0;
    padding-right: 0;
  }

  .jcr-template-homepage .jcr-homepage-search-form .flex {
    align-items: stretch;
    flex-direction: column;
  }

  .jcr-template-homepage .jcr-homepage-search-form .cta {
    justify-content: center;
    width: 100%;
  }

  .jcr-template-homepage .jcr-homepage-search-preview {
    max-height: 62vh;
  }

  .jcr-template-homepage .jcr-search-preview-link {
    min-height: 7.8rem;
  }

  .jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas {
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas .cta {
    min-height: 5.8rem;
    padding: 1.15rem 1.2rem;
  }

  .jcr-template-homepage .jcr-feature:not(.jcr-feature--hero-search) > .container {
    box-sizing: border-box;
    max-width: min(var(--jcr-homepage-content-rail), calc(100% - (var(--jcr-homepage-gutter) * 2)));
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .jcr-template-homepage .jcr-feature.jcr-feature--promotion-full > .container {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vw !important;
  }

  .jcr-template-homepage .jcr-feature.jcr-feature--promotion-full .jcr-promo--full {
    max-width: none;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jcr-template-homepage .jcr-search-preview-loading::before {
    animation: none;
    opacity: 0.75;
  }
}

@media (max-width: 1023px) {
  .jcr-template-homepage .jcr-feature:not(.jcr-feature--hero-search)::before {
    left: 2.6rem;
    right: 2.6rem;
  }

  .jcr-template-homepage .jcr-feature--hero-search {
    min-height: 0;
  }
}

@media (min-width: 768px) {
  .jcr-template-homepage .jcr-feature--hero-search .jcr-hero-ctas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Featured Rental Paths */

.jcr-template-homepage .jcr-feature--featured-rental-paths {
  background: var(--jcr-ui-blue-soft);
}

.jcr-template-homepage .jcr-featured-paths-panel {
  padding: clamp(1.6rem, 3vw, 3.2rem);
  box-shadow: 0 2.4rem 5.6rem rgba(0, 48, 84, .12);
}

.jcr-template-homepage .jcr-feature--featured-rental-paths .jcr-home-section-header__copy {
  max-width: 92rem;
}

.jcr-template-homepage .jcr-feature--featured-rental-paths .jcr-home-heading--section {
  max-width: min(100%, 38ch);
}

.jcr-template-homepage .jcr-featured-paths-intro {
  color: #40515e;
  max-width: 82rem;
}

.jcr-template-homepage .jcr-feature--featured-rental-paths .jcr-home-image-card__title {
  max-width: min(100%, 24ch);
}

.jcr-template-homepage .jcr-featured-paths-grid {
  display: grid;
  gap: clamp(1.2rem, 1.8vw, 2rem);
  grid-auto-rows: clamp(34rem, 30vw, 42rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jcr-template-homepage .jcr-featured-path-link::after {
  content: ">";
  font-size: 1.35rem;
  line-height: 1;
}

.jcr-template-homepage .jcr-featured-path-media-fallback {
  background:
    linear-gradient(135deg, rgba(0, 31, 52, .95) 0%, rgba(0, 55, 95, .96) 46%, rgba(0, 142, 245, .9) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 1px, transparent 1px 1.4rem),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: auto, auto, 3.2rem 3.2rem, 3.2rem 3.2rem;
}

.jcr-template-homepage .jcr-featured-path-media-fallback::after {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.2) 0, rgba(255,255,255,.2) .2rem, transparent .25rem),
    linear-gradient(135deg, transparent 0 46%, rgba(255,255,255,.16) 46% 47%, transparent 47% 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.jcr-template-homepage .jcr-featured-path-media-fallback span {
  background: rgba(0, 31, 52, .58);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  left: clamp(1.6rem, 2vw, 2.2rem);
  letter-spacing: .12em;
  padding: .55rem .75rem;
  position: absolute;
  text-transform: uppercase;
  top: clamp(1.5rem, 2vw, 2rem);
  z-index: 2;
}

.jcr-template-homepage .jcr-featured-path-link {
  align-self: flex-start;
  gap: .8rem;
  margin-top: 1.8rem;
  min-height: 4.6rem;
  padding: 1.25rem 1.45rem;
}

.jcr-template-homepage .jcr-featured-path-link:hover,
.jcr-template-homepage .jcr-featured-path-link:focus {
  gap: 1rem;
}

@media (max-width: 1023px) {
  .jcr-template-homepage .jcr-featured-paths-grid {
    grid-auto-rows: clamp(32rem, 42vw, 38rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jcr-template-homepage .jcr-feature--featured-rental-paths .jcr-home-section-header {
    align-items: flex-start;
    display: grid;
  }
}

@media (max-width: 767px) {
  .jcr-template-homepage #featured-rental-paths > .jcr-featured-paths-panel {
    box-shadow: none;
    padding-bottom: clamp(2rem, 5.5vw, 2.6rem) !important;
    padding-left: clamp(2rem, 5.5vw, 2.6rem) !important;
    padding-right: clamp(2rem, 5.5vw, 2.6rem) !important;
    padding-top: clamp(2rem, 5.5vw, 2.6rem) !important;
  }

  .jcr-template-homepage .jcr-feature--featured-rental-paths > .container {
    padding-bottom: 2.2rem !important;
    padding-top: 2.2rem !important;
  }

  .jcr-template-homepage .jcr-feature--featured-rental-paths .jcr-home-section-header {
    display: block;
  }

  .jcr-template-homepage .jcr-featured-paths-grid {
    grid-auto-rows: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-featured-path-card {
    min-height: 34rem;
  }

  .jcr-template-homepage .jcr-home-image-card__body {
    padding: 2rem 1.6rem;
  }

  .jcr-template-homepage .jcr-featured-path-link {
    align-self: stretch;
    justify-content: space-between;
    min-height: 4.4rem;
    width: 100%;
  }

  .jcr-template-homepage .jcr-home-image-card__title {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .jcr-template-homepage .jcr-home-image-card__title {
    font-size: clamp(2rem, 2.5vw, 2.55rem);
  }
}

@media (min-width: 1024px) {
  .jcr-template-homepage .jcr-feature--featured-rental-paths {
    margin-top: -3.4rem;
    padding-top: 0 !important;
    z-index: 3;
  }

  .jcr-template-homepage .jcr-feature--promotion-after_hero + .jcr-feature--featured-rental-paths {
    margin-top: 0;
    padding-top: var(--jcr-home-section-pad) !important;
  }
}

/* Popular Rentals */

.jcr-template-homepage .jcr-feature + .jcr-feature:not(.jcr-feature--popular-rentals) {
  border-top: 1px solid #e3ebf1;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-intro {
  color: #222;
  max-width: 72rem;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  width: 100%;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-link:hover,
.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-link:focus {
  outline: 0;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media-fallback {
  background:
  radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 42%),
  linear-gradient(135deg, #005a9c 0%, #0082e0 58%, #4d5056 100%);
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media-fallback span {
  align-items: center;
  background: rgba(0, 55, 95, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  min-width: 10rem;
  padding: 0.9rem 1.3rem;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-title:only-child {
  display: block;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-type {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-cta {
  align-items: center;
  color: #fff;
  display: flex;
  font-weight: 800;
  gap: 0.6rem;
  line-height: 1.25;
  margin-top: 0.45rem;
  min-height: 3.2rem;
  padding-top: 0;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-cta::after {
  content: ">";
  font-weight: 800;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-link:hover .jcr-popular-card-cta,
.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-link:focus .jcr-popular-card-cta {
  color: #9bd9ff;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-link:focus-visible {
  box-shadow: inset 0 0 0 3px #9bd9ff;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
  filter: drop-shadow(0 1.2rem 1.2rem rgba(0, 40, 64, 0.22));
  padding: 1rem;
}

.jcr-template-homepage .jcr-feature--popular-rentals {
  overflow: hidden;
  padding-bottom: clamp(3.2rem, 4.2vw, 5rem) !important;
  position: relative;
  border-top: 0;
  background:
  linear-gradient(180deg, #002f50 0, #002f50 3.8rem, #e8f4fb 3.8rem, #f4f9fc 100%) !important;
  margin-top: -3.8rem;
  padding-top: clamp(4.2rem, 5vw, 6rem) !important;
  z-index: 3;
}

.jcr-template-homepage .jcr-feature--popular-rentals::before {
  display: none;
  height: 0.7rem;
  left: 0;
  right: 0;
  background: none;
}

.jcr-template-homepage .jcr-feature--popular-rentals .container {
  position: relative;
  z-index: 1;
  background:
  linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
  box-shadow: var(--jcr-premium-shadow);
  padding: clamp(2.2rem, 4vw, 4.6rem);
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-header {
  border-bottom: 0;
  padding-bottom: clamp(2rem, 3vw, 3.4rem);
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  border-top: 0.45rem solid var(--jcr-home-blue);
  background: transparent;
  border: 0;
  box-shadow: none;
  gap: clamp(1.4rem, 1.7vw, 2.2rem);
  margin-top: 0 !important;
  padding: 0;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card {
  min-height: 100%;
  display: flex;
  min-width: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  background: var(--jcr-home-navy);
  border-color: rgba(0, 55, 95, 0.52);
  border: 0;
  box-shadow: 0 1.4rem 3.4rem rgba(0, 48, 84, 0.18);
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card:hover,
.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card:focus-within {
  border-color: #0082e0;
  box-shadow: 0 2.2rem 4.8rem rgba(0, 48, 84, 0.28);
  transform: translateY(-0.35rem);
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media {
  align-items: center;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  min-height: 20rem;
  background:
  radial-gradient(circle at 50% 34%, rgba(255,255,255,.18), rgba(255,255,255,0) 42%),
  linear-gradient(145deg, #0071c3 0%, #008ef5 54%, #006fbf 100%);
  height: clamp(19rem, 18vw, 25rem);
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.35rem;
  background: linear-gradient(180deg, #003f6d 0%, var(--jcr-home-navy-dark) 100%);
  border-top: 0;
  min-height: 10.4rem;
  padding: 1.35rem 1.45rem 1.5rem;
}

.jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-title {
  font-size: 1.95rem;
  color: #fff;
  display: -webkit-box;
  line-clamp: 2;
  line-height: 1.15;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 4.3rem;
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-grid {
    gap: 1rem;
    margin-top: 1.6rem !important;
    padding: 1rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-link {
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr);
    min-height: 11.8rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media {
    height: 100%;
    min-height: 11.8rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .container {
    box-shadow: none;
    padding: 0;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals {
    padding-bottom: 4.2rem !important;
    padding-top: 4.2rem !important;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-header {
    padding-bottom: 1.4rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-header .title2::after {
    margin-top: 0.9rem;
    width: 5.8rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals::before {
    display: none;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media img {
    padding: 0.45rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-body {
    border-left: 0.3rem solid #0082e0;
    border-top: 0;
    justify-content: center;
    min-height: 11.8rem;
    padding: 1rem 1.1rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-title {
    font-size: 1.55rem;
    line-height: 1.1;
    min-height: 3.4rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-type {
    font-size: 1rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-cta {
    font-size: 1.05rem;
    margin-top: 0.25rem;
    min-height: 2.4rem;
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media-fallback span {
    font-size: 1rem;
    min-width: 0;
    padding: 0.65rem 0.8rem;
  }
}

@media (max-width: 1023px) {
  .jcr-template-homepage .jcr-feature--popular-rentals {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-rentals-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .jcr-template-homepage .jcr-feature--popular-rentals .jcr-popular-card-media {
    height: 21.5rem;
  }
}

/* Browse Categories */

.jcr-template-homepage .jcr-category-grid-intro {
  max-width: 82rem;
}

.jcr-template-homepage .jcr-feature--category-grid {
  border-top: 1px solid rgba(0, 55, 95, .07);
  background:
  linear-gradient(180deg, #f4f9fc 0%, #fbfcfd 100%) !important;
  padding-bottom: clamp(2.8rem, 3.6vw, 4.4rem) !important;
  padding-top: clamp(3rem, 3.8vw, 4.6rem) !important;
}

.jcr-template-homepage .jcr-feature--category-grid .container {
  background:
  linear-gradient(rgba(0,55,95,.018) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,55,95,.018) 1px, transparent 1px),
  linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.46));
  background-size: 4.4rem 4.4rem, 4.4rem 4.4rem, auto;
  padding: clamp(1rem, 2.5vw, 2.4rem) 0 0;
}

.jcr-template-homepage .jcr-category-grid-header {
  border-bottom: 0;
  padding-bottom: clamp(1.6rem, 2vw, 2.6rem);
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-home-section-header__copy {
  max-width: 92rem;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-home-heading--section {
  max-width: min(100%, 38ch);
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-grid-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.15rem;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile {
  align-items: stretch;
  color: #111;
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(0, 55, 95, .045);
  box-shadow: none;
  min-height: 10.8rem;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  transition: background 160ms ease;
  width: 0.35rem;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:hover,
.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:focus-within {
  border-color: rgba(0, 142, 245, .22);
  background: #fff;
  box-shadow: 0 .45rem 1.2rem rgba(0, 55, 95, .04);
  transform: translateY(-0.1rem);
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:hover::before,
.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:focus-within::before {
  background: var(--jcr-home-blue);
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media {
  align-items: center;
  background: rgba(238, 247, 252, .34);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
  border-right: 1px solid rgba(0, 55, 95, .028);
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media img {
  display: block;
  width: auto;
  height: 8.8rem;
  object-fit: contain;
  max-height: 7.8rem;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media-fallback {
  align-items: center;
  background: linear-gradient(135deg, #005a9c 0%, #0082e0 58%);
  display: inline-flex;
  height: 7.2rem;
  justify-content: center;
  width: 7.2rem;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media-fallback span {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.35rem 1.55rem;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-title {
  display: -webkit-box;
  line-clamp: 3;
  line-height: 1.08;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-weight: 800;
  color: var(--jcr-home-ink);
  font-size: clamp(1.9rem, 1.5vw, 2.25rem);
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-meta {
  color: rgba(69, 88, 104, .82);
  font-size: clamp(1.22rem, .92vw, 1.38rem);
  font-weight: 700;
  line-height: 1.25;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-cta {
  align-self: flex-start;
  border-bottom: 1px solid rgba(0, 111, 191, .18);
  display: inline-flex;
  font-weight: 700;
  font-size: clamp(1.22rem, .88vw, 1.34rem);
  text-transform: uppercase;
  margin-top: 0.35rem;
  color: var(--jcr-home-blue-deep);
  letter-spacing: 0;
  line-height: 1.2;
  padding-bottom: .08rem;
  width: fit-content;
}

.jcr-template-homepage .jcr-feature--category-grid {
  background-color: var(--jcr-ui-blue-soft);
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile {
    grid-template-columns: 10rem minmax(0, 1fr);
    min-height: 10rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-body {
    padding: 1rem 1.1rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media {
    padding: 0.8rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .container {
    padding-top: 0;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-grid-list {
    gap: 0.85rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media-fallback {
    width: 9.6rem;
    height: 9.6rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media img {
    height: 7.6rem;
    max-height: 7.6rem;
  }

  .jcr-template-homepage .jcr-category-tile {
    grid-template-columns: 8rem minmax(0, 1fr);
    min-height: 8.5rem;
  }

  .jcr-template-homepage .jcr-category-tile-media-fallback {
    width: 6.4rem;
    height: 6.4rem;
  }

  .jcr-template-homepage .jcr-category-tile-media img {
    height: 5.6rem;
    max-height: 5.6rem;
  }
}

@media (min-width: 768px) {
  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile {
    grid-template-columns: 12rem minmax(0, 1fr);
    min-height: 11.6rem;
  }

  .jcr-template-homepage .jcr-category-grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-grid-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile {
    grid-template-columns: minmax(0, 1fr);
    min-height: 19.4rem;
  }

  .jcr-template-homepage .jcr-category-grid-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media {
    border-bottom: 1px solid rgba(0,55,95,.035);
    border-right: 0;
    min-height: 13.4rem;
    padding: 1.45rem 1.65rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media img {
    max-height: 11.8rem;
    max-width: 88%;
  }
}

@media (min-width: 1024px) {
  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile {
    min-height: 17.6rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media {
    min-height: 11.8rem;
    padding: 1.35rem;
  }

  .jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile-media img {
    height: auto;
    max-height: 10.4rem;
    max-width: 86%;
    width: auto;
  }
}

/* Category grid: make fallback media fill the card width without affecting real images */
.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:has(.jcr-category-tile-media-fallback) {
  grid-template-columns: minmax(0, 1fr);
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:has(.jcr-category-tile-media-fallback) .jcr-category-tile-media {
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 55, 95, 0.035);
  border-right: 0;
  display: flex;
  justify-content: stretch;
  min-height: 12rem;
  padding: 0;
  width: 100%;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:has(.jcr-category-tile-media-fallback) .jcr-category-tile-media-fallback {
  align-items: center;
  background: linear-gradient(135deg, #005a9c 0%, #0082e0 58%);
  display: flex;
  height: auto;
  justify-content: center;
  min-height: 12rem;
  width: 100%;
}

.jcr-template-homepage .jcr-feature--category-grid .jcr-category-tile:has(.jcr-category-tile-media-fallback) .jcr-category-tile-media-fallback span {
  display: block;
  max-width: 100%;
  padding: 0 1.2rem;
  text-align: center;
}

/* Help / Quote */

.jcr-template-homepage .jcr-feature--help-quote .jcr-hq-panel.hidden {
  display: none;
}

.jcr-template-homepage .jcr-feature--help-quote .jcr-hq-panel {
  margin-top: 1rem;
  max-height: none;
  overflow: visible;
}

.jcr-template-homepage .jcr-feature--help-quote .md\:w-1\/2 {
  min-width: 0;
}

.jcr-template-homepage .jcr-feature--help-quote [role="tablist"] {
  flex-wrap: wrap;
}

.jcr-template-homepage .jcr-feature--help-quote {
  background:
  linear-gradient(180deg, #fbfcfd 0, #fbfcfd 2.8rem, #001f34 2.8rem, #002f50 100%);
  color: #fff;
  margin-top: -1px;
  overflow: hidden;
  padding-bottom: clamp(3.8rem, 4.8vw, 5.8rem);
  padding-top: clamp(3.6rem, 4.6vw, 5.6rem);
}

.jcr-template-homepage .jcr-feature--help-quote .cta.cta-blue {
  --jcr-button-border: var(--jcr-brand-white);
  --jcr-button-fill: var(--jcr-brand-white);
  --jcr-button-fill-hover-width: 100%;
  --jcr-button-fill-width: 0%;
  --jcr-button-hover-text: var(--jcr-ui-blue);
  --jcr-button-text: var(--jcr-brand-white);
  color: var(--jcr-button-text);
}

.jcr-template-homepage .jcr-feature--help-quote .cta.cta-blue:hover,
.jcr-template-homepage .jcr-feature--help-quote .cta.cta-blue:focus {
  color: var(--jcr-ui-blue);
}

.jcr-template-homepage .jcr-feature--help-quote .cta.cta-blue:hover::before,
.jcr-template-homepage .jcr-feature--help-quote .cta.cta-blue:focus::before {
  background: var(--jcr-brand-white);
  width: 100%;
}

.jcr-template-homepage .jcr-feature--help-quote::before {
  background: linear-gradient(90deg, rgba(155, 217, 255, .1), rgba(155, 217, 255, .5), rgba(155, 217, 255, .1));
}

.jcr-template-homepage .jcr-feature--help-quote::after {
  background:
  linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .07)),
  repeating-linear-gradient(135deg, rgba(255, 255, 255, .055) 0, rgba(255, 255, 255, .055) 1px, transparent 1px, transparent 14px);
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.jcr-template-homepage .jcr-feature--help-quote .container {
  position: relative;
  z-index: 1;
}

.jcr-template-homepage .jcr-feature--help-quote .md\:flex {
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  box-shadow: 0 2.2rem 5.2rem rgba(0, 0, 0, .22);
  gap: clamp(2rem, 4vw, 5rem);
  padding: clamp(1.6rem, 3vw, 3rem);
}

.jcr-template-homepage .jcr-feature--help-quote .md\:w-1\/2:first-child {
  align-self: flex-start;
  padding: clamp(.4rem, 2vw, 1.6rem);
}

.jcr-template-homepage .jcr-feature--help-quote .title2,
.jcr-template-homepage .jcr-feature--help-quote .paragraph1,
.jcr-template-homepage .jcr-feature--help-quote .paragraph2,
.jcr-template-homepage .jcr-feature--help-quote .title4 {
  color: #fff;
}

.jcr-template-homepage .jcr-feature--help-quote .title4.text-blue {
  color: #9bd9ff;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-feature--help-quote .title2 {
  max-width: 13ch;
}

.jcr-template-homepage .jcr-feature--help-quote .title2::after {
  background: #9bd9ff;
}

.jcr-template-homepage .jcr-feature--help-quote .paragraph1 {
  max-width: 48ch;
}

.jcr-template-homepage .jcr-feature--help-quote .paragraph1,
.jcr-template-homepage .jcr-feature--help-quote .paragraph2 {
  color: rgba(255, 255, 255, .82);
}

.jcr-template-homepage .jcr-feature--help-quote .jcr-form-card {
  border: 0;
  border-top: .45rem solid #008ef5;
  box-shadow: 0 2.4rem 5.2rem rgba(0, 0, 0, .32);
}

.jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card {
  align-self: flex-start;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 55, 95, 0.12);
  padding: 1.6rem;
}

.jcr-template-homepage .jcr-feature--help-quote .jcr-form-tabs {
  margin-bottom: 1.4rem;
}

.jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-response-output {
  color: #111820;
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature--help-quote > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .jcr-template-homepage .jcr-feature--help-quote.padding-x {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .jcr-template-homepage .jcr-feature--help-quote .md\:flex {
    box-sizing: border-box;
    box-shadow: none;
    padding: .6rem;
  }

  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card {
    box-sizing: border-box;
    max-width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
  }

  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7,
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form,
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form p,
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form-control-wrap {
    box-sizing: border-box;
    display: block;
    max-width: 100%;
    min-width: 0;
  }

  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form input[type="text"],
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form input[type="email"],
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form input[type="tel"],
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form input[type="number"],
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form input[type="date"],
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form select,
  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form textarea {
    box-sizing: border-box !important;
    display: block;
    font-size: 1.6rem;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form input[type="date"] {
    line-height: 1.25;
    min-height: 4.8rem;
    overflow: hidden;
    padding-right: 0.95rem;
  }

  .jcr-template-homepage .jcr-feature--help-quote .jcr-help-quote-card .wpcf7-form input[type="date"]::-webkit-date-and-time-value {
    min-height: 1.25em;
    text-align: left;
  }

  .jcr-template-homepage .jcr-feature--help-quote {
    background: #002f50;
    padding-bottom: 4.8rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 4.8rem;
  }

  .jcr-template-homepage .jcr-feature--help-quote::after {
    display: none;
  }

  .jcr-template-homepage .jcr-feature--help-quote .container {
    padding-left: 0;
    padding-right: 0;
  }

  .jcr-template-homepage .jcr-feature--help-quote .md\:w-1\/2:first-child {
    padding: 0;
  }

  .jcr-template-homepage .jcr-feature--help-quote .title2 {
    max-width: 100%;
  }

  .jcr-template-homepage .jcr-feature--help-quote .btn-tab {
    flex: 1 1 0;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .jcr-template-homepage .jcr-feature--help-quote .md\:w-1\/2:first-child {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .jcr-template-homepage .jcr-feature--help-quote .md\:w-1\/2:nth-child(2) {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

/* How Renting Works */

.jcr-template-homepage .jcr-feature--how-renting-works {
  background: linear-gradient(180deg, #f7fbfd 0%, #fbfcfd 100%);
  overflow: hidden;
  padding: var(--jcr-home-section-pad) 0;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-header {
  align-items: flex-end;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-home-heading--section {
  font-weight: 800;
  max-width: 72rem;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-timeline {
  display: grid;
  gap: clamp(1.4rem, 2vw, 2.2rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: clamp(2.4rem, 3.2vw, 3.8rem) 0 0;
  padding: 0;
  position: relative;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-timeline::before {
  background: linear-gradient(90deg, rgba(0, 142, 245, .12), rgba(0, 142, 245, .38), rgba(0, 142, 245, .12));
  content: "";
  height: .2rem;
  left: calc(12.5% + 2.4rem);
  position: absolute;
  right: calc(12.5% + 2.4rem);
  top: 2.4rem;
  z-index: 0;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-step {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  position: relative;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-step:not(:last-child)::after {
  border-bottom: .5rem solid transparent;
  border-left: .7rem solid rgba(0, 142, 245, .38);
  border-top: .5rem solid transparent;
  content: "";
  position: absolute;
  right: -.95rem;
  top: 1.95rem;
  z-index: 1;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-marker {
  align-items: center;
  background: var(--jcr-home-blue);
  border: .45rem solid #fff;
  border-radius: 999px;
  box-shadow: 0 .55rem 1.5rem rgba(0, 55, 95, .13);
  color: #fff;
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 900;
  height: 4.8rem;
  justify-content: center;
  justify-self: center;
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 1.6rem;
  position: relative;
  width: 4.8rem;
  z-index: 2;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-card {
  background: #fff;
  border: 1px solid rgba(0, 55, 95, .075);
  box-shadow: 0 .8rem 2rem rgba(0, 55, 95, .055);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 24rem;
  padding: clamp(1.7rem, 2vw, 2.3rem);
  position: relative;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-card::before {
  background: var(--jcr-home-blue);
  content: "";
  height: .36rem;
  inset: 0 0 auto;
  opacity: .68;
  position: absolute;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-icon {
  align-items: center;
  background: linear-gradient(135deg, #e5f6ff 0%, #f3fbff 100%);
  border: 1px solid rgba(0, 142, 245, .11);
  border-radius: 999px;
  color: var(--jcr-home-blue);
  display: flex;
  flex: 0 0 auto;
  height: 7.2rem;
  justify-content: center;
  margin: 0 auto 1.6rem;
  width: 7.2rem;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-step__icon-symbol {
  display: block;
  flex: 0 0 auto;
  font-size: 4.3rem;
  line-height: 1;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-card__title {
  color: var(--jcr-home-ink);
  margin: 0;
}

.jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-card__text {
  font-size: clamp(1.56rem, 1.12vw, 1.82rem);
  line-height: 1.55;
  margin: .9rem 0 0;
}

@media (max-width: 1023px) {
  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.4rem;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-timeline::before,
  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-step::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-home-section-header {
    display: block;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-home-heading--section {
    max-width: 100%;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-actions {
    display: grid;
    justify-content: stretch;
    margin-top: 1.6rem;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-actions .jcr-btn {
    width: 100%;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-timeline {
    gap: 1.6rem;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 3rem;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-timeline::before {
    background: linear-gradient(180deg, rgba(0, 142, 245, .12), rgba(0, 142, 245, .38), rgba(0, 142, 245, .12));
    bottom: 2.2rem;
    display: block;
    height: auto;
    left: 2.1rem;
    right: auto;
    top: 2.2rem;
    width: .2rem;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-step {
    align-items: start;
    display: grid;
    gap: .9rem;
    grid-template-columns: 4.4rem minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-marker {
    grid-column: 1;
    height: 4.4rem;
    justify-self: start;
    margin: .3rem 0 0;
    width: 4.4rem;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-card {
    min-height: 0;
    padding: 1.7rem;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-icon {
    height: 6.2rem;
    margin: 0 auto 1.3rem;
    width: 6.2rem;
  }

  .jcr-template-homepage .jcr-feature--how-renting-works .jcr-hrw-step__icon-symbol {
    font-size: 3.7rem;
  }
}

/* Local Service Area */

.jcr-template-homepage .jcr-feature--local-service-area {
  background: linear-gradient(180deg, #fbfcfd 0%, #eef7fc 52%, #e8f3f9 100%);
  overflow-x: hidden;
  padding-bottom: clamp(3.8rem, 4.8vw, 5.8rem);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-panel,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-overview,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-copy,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-column,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-fallback,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-locations,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-locations__grid,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support__summaries,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-areas {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-panel {
  box-shadow: 0 1rem 2.8rem rgba(0, 55, 95, .055);
  padding: clamp(1.7rem, 3vw, 3.2rem);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-overview {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 3.4vw, 4.2rem);
  grid-template-columns: minmax(0, 1fr) minmax(32rem, .95fr);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-copy {
  display: grid;
  align-content: start;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-home-heading--section {
  max-width: min(100%, 60ch);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-locations {
  margin-top: clamp(1.8rem, 2.6vw, 2.6rem);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-locations__intro {
  font-size: clamp(1.48rem, 1.08vw, 1.72rem);
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 58ch;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-locations__grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card {
  background: rgba(255, 255, 255, .34);
  border: 0;
  border-left: .24rem solid rgba(0, 115, 170, .18);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  min-height: 100%;
  padding: .35rem 0 .35rem clamp(1rem, 1.4vw, 1.35rem);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__header {
  display: grid;
  gap: .45rem;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__note {
  align-self: start;
  background: transparent;
  color: #4a6476;
  display: inline-flex;
  font-size: clamp(1.02rem, .98rem + .18vw, 1.16rem);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  width: fit-content;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__intro {
  font-size: clamp(1.48rem, 1.08vw, 1.72rem);
  line-height: 1.55;
  margin: 0;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__address {
  color: #233243;
  display: grid;
  font-size: clamp(1.34rem, 1.2rem + .34vw, 1.52rem);
  font-style: normal;
  font-weight: 800;
  gap: .18rem;
  line-height: 1.38;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours {
  background: rgba(238, 247, 252, .38);
  border: 0;
  border-left: 1px solid rgba(0, 55, 95, .08);
  margin-top: .55rem;
  padding: .75rem 0 .75rem 1rem;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours h4 {
  color: #00375f;
  font-size: clamp(1.12rem, .98rem + .22vw, 1.28rem);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  margin: 0 0 .75rem;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours dl {
  display: grid;
  gap: .48rem;
  margin: 0;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours dl > div {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(8.2rem, .72fr) minmax(0, 1fr);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours dt,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours dd {
  color: #455868;
  font-size: clamp(1.18rem, 1.02rem + .24vw, 1.34rem);
  line-height: 1.32;
  margin: 0;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours dt {
  font-weight: 800;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours--custom p {
  color: #455868;
  font-size: clamp(1.18rem, 1.02rem + .24vw, 1.34rem);
  line-height: 1.42;
  margin: 0;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__directions {
  --jcr-button-border: transparent;
  --jcr-button-fill: transparent;
  --jcr-button-fill-hover-width: 0%;
  --jcr-button-fill-width: 0%;
  --jcr-button-hover-border: transparent;
  --jcr-button-hover-text: var(--jcr-home-blue-deep);
  --jcr-button-text: var(--jcr-home-blue-deep);
  border: 0;
  box-shadow: none;
  justify-self: start;
  margin-top: auto;
  min-height: 0;
  padding: .2rem 0;
  text-decoration: underline;
  text-decoration-color: rgba(0, 111, 191, .3);
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
  transform: none;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__directions:hover,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__directions:focus {
  text-decoration-color: currentColor;
  transform: none;
}

@media (min-width: 768px) {
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__directions {
    width: auto;
  }
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.4rem;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-ctas .cta,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-ctas .cta + .cta {
  margin: 0;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-column {
  display: flex;
  overflow: hidden;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map,
.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-fallback {
  aspect-ratio: 1.2 / 1;
  background: #eef5fa;
  border: 1px solid rgba(0, 55, 95, .065);
  display: block;
  min-height: 30rem;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map iframe {
  border: 0;
  display: block;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-fallback {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 2vw, 2rem);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-fallback img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support {
  border-top: 1px solid rgba(0, 55, 95, .06);
  display: grid;
  gap: clamp(2rem, 3vw, 3.4rem);
  grid-template-columns: minmax(0, 1fr);
  margin-top: clamp(2.4rem, 3.4vw, 3.8rem);
  padding-top: clamp(1.8rem, 2.8vw, 3rem);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support__summaries {
  display: grid;
  gap: clamp(1.5rem, 2.6vw, 2.6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support-item {
  min-width: 0;
  padding-block: .1rem;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support-item + .jcr-local-support-item {
  border-left: 1px solid rgba(0, 55, 95, .045);
  padding-left: clamp(1.4rem, 2.2vw, 2.4rem);
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support-item .jcr-home-copy {
  font-size: clamp(1.48rem, 1.08vw, 1.72rem);
  line-height: 1.55;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-areas {
  background: linear-gradient(180deg, rgba(238, 247, 252, .42) 0%, rgba(255, 255, 255, .32) 100%);
  border-left: .24rem solid rgba(0, 115, 170, .18);
  padding: clamp(1.4rem, 2vw, 2rem) 0 clamp(1.2rem, 1.8vw, 1.8rem) clamp(1.2rem, 1.8vw, 1.6rem);
  width: 100%;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-areas-list {
  columns: 3;
  column-gap: clamp(1.6rem, 3vw, 3rem);
  list-style: none;
  margin-left: 0;
}

.jcr-template-homepage .jcr-feature--local-service-area .jcr-local-areas-list li {
  break-inside: avoid;
  margin-bottom: .34rem;
}

@media (max-width: 1023px) {
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-overview,
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support {
    grid-template-columns: minmax(0, 1fr);
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map,
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-fallback {
    aspect-ratio: 16 / 10;
    min-height: 28rem;
  }
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-panel,
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map,
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-fallback {
    width: 100%;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-panel {
    padding: clamp(1.5rem, 5vw, 2rem);
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map,
  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-map-fallback {
    aspect-ratio: 1 / 1;
    min-height: 22rem;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support__summaries {
    grid-template-columns: 1fr;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-support-item + .jcr-local-support-item {
    border-left: 0;
    border-top: 1px solid rgba(0, 55, 95, .05);
    padding-left: 0;
    padding-top: 1.2rem;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-ctas {
    display: grid;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-hours dl > div {
    grid-template-columns: minmax(0, 1fr);
    gap: .12rem;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-location-card__directions {
    justify-content: flex-start;
    width: auto;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-ctas .cta {
    width: 100%;
  }

  .jcr-template-homepage .jcr-feature--local-service-area .jcr-local-areas-list {
    columns: 1;
  }
}

/* Trust / Why J. Connelly Rental */

.jcr-template-homepage .jcr-feature--trust {
  background:
  radial-gradient(circle at 78% 12%, rgba(65, 153, 255, 0.22), transparent 34rem),
  linear-gradient(135deg, #061d31 0%, #00375f 52%, #002840 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(3.8rem, 4.8vw, 5.8rem) 0;
  position: relative;
}

@media (min-width: 768px) {
  .jcr-template-homepage .jcr-feature--trust > .container {
    margin-left: auto;
    margin-right: auto;
    max-width: min(var(--jcr-homepage-content-rail), calc(100% - (var(--jcr-homepage-gutter) * 2)));
    width: 100%;
  }
}

.jcr-template-homepage .jcr-feature--trust::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  content: "";
  height: 1px;
  left: 0;
  opacity: .8;
  position: absolute;
  right: 0;
  top: 0;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__inner {
  display: grid;
  gap: clamp(1.4rem, 2.2vw, 2.4rem);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__proof {
  background: rgba(0, 27, 48, .58);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, .12);
  display: grid;
  gap: clamp(2.2rem, 3.4vw, 3.8rem);
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(2.2rem, 4vw, 4.6rem);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__proof--single {
  grid-template-columns: minmax(0, 1fr);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__proof-copy {
  max-width: 78rem;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__eyebrow {
  font-weight: 900;
  letter-spacing: .11em;
  margin: 0 0 1rem;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__heading {
  font-weight: 900;
  margin: 0;
  max-width: 78rem;
  overflow-wrap: anywhere;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__intro {
  margin-top: clamp(1.2rem, 2vw, 1.8rem);
  max-width: 74rem;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__intro,
.jcr-template-homepage .jcr-feature--trust .jcr-trust__intro p {
  color: rgba(255, 255, 255, .88);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__intro p,
.jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-text p,
.jcr-template-homepage .jcr-feature--trust .jcr-trust-card__text p {
  margin: 0;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__intro p + p,
.jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-text p + p,
.jcr-template-homepage .jcr-feature--trust .jcr-trust-card__text p + p {
  margin-top: .8rem;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__proof-copy .cta {
  margin-top: clamp(1.6rem, 2vw, 2.2rem);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__stats {
  align-self: stretch;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: clamp(.75rem, 1.2vw, 1.1rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 11.4rem;
  min-width: 0;
  padding: clamp(1.45rem, 2vw, 2.35rem);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, .09);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__stat-value {
  color: #fff;
  display: block;
  font-size: clamp(2.45rem, 2.45vw, 3.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__stat-label {
  color: rgba(255, 255, 255, .7);
  display: block;
  font-size: clamp(1.42rem, 1.02vw, 1.65rem);
  font-weight: 550;
  line-height: 1.32;
  margin-top: .65rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__cards {
  display: grid;
  gap: clamp(1rem, 1.55vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust-card {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: none;
  color: #0d1722;
  min-height: 19rem;
  padding: clamp(1.6rem, 2.1vw, 2.4rem);
  position: relative;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust-card::before {
  background: rgba(65, 153, 255, .78);
  content: "";
  height: .22rem;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust-card__title {
  color: #00375f;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  overflow-wrap: anywhere;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust-card__text {
  font-weight: 500;
  margin-top: .95rem;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__audience {
  align-items: center;
  background: rgba(0, 27, 48, .38);
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  gap: clamp(1.2rem, 2vw, 2.2rem);
  grid-template-columns: minmax(18rem, .3fr) minmax(0, 1fr);
  padding: clamp(1.4rem, 2vw, 2rem);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__audience-heading {
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__audience-list li {
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.58rem, 1.15vw, 1.82rem);
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
  padding: .65rem .85rem;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__cta {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border-top: .22rem solid rgba(65, 153, 255, .7);
  box-shadow: none;
  display: grid;
  gap: clamp(1.6rem, 2.4vw, 2.6rem);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.75rem, 2.6vw, 2.9rem);
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-heading {
  color: #00375f;
  font-weight: 900;
  line-height: 1.08;
  margin: 0;
  overflow-wrap: anywhere;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-text {
  margin-top: .8rem;
  max-width: 76rem;
}

.jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stat:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, .09);
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__cards {
    grid-template-columns: 1fr;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust-card {
    min-height: 0;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__cta {
    grid-template-columns: 1fr;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-feature--trust {
    padding: 4.2rem 0;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__proof {
    padding: 1.6rem;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stats {
    grid-template-columns: 1fr;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stat,
  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stat:nth-child(2n),
  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stat:nth-child(-n+2),
  .jcr-template-homepage .jcr-feature--trust .jcr-trust__stat:nth-last-child(-n+2) {
    border: 1px solid rgba(255, 255, 255, .09);
    min-height: 0;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__audience {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-actions,
  .jcr-template-homepage .jcr-feature--trust .jcr-trust__cta-actions .cta {
    width: 100%;
  }
}

/* Homepage Social Links */

.jcr-template-homepage .jcr-feature--social-links {
  background: linear-gradient(180deg, #fff 0%, #f4f9fc 100%);
  border-top: 1px solid rgba(0, 55, 95, .08);
  padding: clamp(3.2rem, 4vw, 5.4rem) 0;
}

.jcr-template-homepage .jcr-social-links__inner {
  align-items: center;
  display: grid;
  gap: clamp(2.4rem, 3.4vw, 4rem);
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.jcr-template-homepage .jcr-social-links__header {
  max-width: 70rem;
}

.jcr-template-homepage .jcr-social-links__heading {
  color: #101820;
  font-size: clamp(2.72rem, 2.22vw, 3.82rem);
  line-height: 1.04;
  margin: 0;
}

.jcr-template-homepage .jcr-social-links__heading::after {
  background: #008ef5;
  content: "";
  display: block;
  height: .3rem;
  margin: 1.2rem auto 0;
  width: 6.4rem;
}

.jcr-template-homepage .jcr-social-links__intro {
  color: #31495c;
  font-size: clamp(1.65rem, 1.16vw, 1.95rem);
  line-height: 1.58;
  margin: 1.5rem auto 0;
  max-width: 70rem;
}

.jcr-template-homepage .jcr-social-links__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.8rem, 3.2vw, 4rem);
  justify-content: center;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
  width: 100%;
}

.jcr-template-homepage .jcr-social-links__link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #00375f;
  display: inline-flex;
  flex-direction: column;
  font-size: clamp(1.12rem, .82vw, 1.28rem);
  font-weight: 800;
  gap: .75rem;
  line-height: 1.2;
  min-height: 0;
  padding: .35rem;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
  width: auto;
}

.jcr-template-homepage .jcr-social-links__link:hover,
.jcr-template-homepage .jcr-social-links__link:focus-visible {
  background: transparent;
  color: #008ef5;
  transform: translateY(-2px);
}

.jcr-template-homepage .jcr-social-links__icon,
.jcr-template-homepage .jcr-social-links__link img {
  background: #fff;
  border: 1px solid rgba(0, 55, 95, .16);
  border-radius: 50%;
  box-shadow: 0 .55rem 1.4rem rgba(0, 55, 95, .1);
  display: block;
  flex: 0 0 auto;
  height: clamp(5.4rem, 3.7vw, 6.4rem);
  object-fit: contain;
  padding: clamp(.85rem, .72vw, 1.05rem);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  width: clamp(5.4rem, 3.7vw, 6.4rem);
}

.jcr-template-homepage .jcr-social-links__name {
  overflow-wrap: anywhere;
}

.jcr-template-homepage .jcr-social-links__link:hover .jcr-social-links__icon,
.jcr-template-homepage .jcr-social-links__link:focus-visible .jcr-social-links__icon,
.jcr-template-homepage .jcr-social-links__link:hover img,
.jcr-template-homepage .jcr-social-links__link:focus-visible img {
  border-color: rgba(0, 142, 245, .32);
  box-shadow: 0 .55rem 1.2rem rgba(0, 55, 95, .12);
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .jcr-template-homepage .jcr-social-links__inner {
    grid-template-columns: 1fr;
  }

  .jcr-template-homepage .jcr-social-links__heading {
    font-size: clamp(2.58rem, 7.2vw, 3.36rem);
  }

  .jcr-template-homepage .jcr-social-links__list {
    gap: 1.6rem 2.2rem;
  }

  .jcr-template-homepage .jcr-social-links__link {
    min-height: 5.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jcr-template-homepage .jcr-social-links__link,
  .jcr-template-homepage .jcr-social-links__icon,
  .jcr-template-homepage .jcr-social-links__link img {
    transition: none;
  }

  .jcr-template-homepage .jcr-social-links__link:hover,
  .jcr-template-homepage .jcr-social-links__link:focus-visible,
  .jcr-template-homepage .jcr-social-links__link:hover .jcr-social-links__icon,
  .jcr-template-homepage .jcr-social-links__link:focus-visible .jcr-social-links__icon,
  .jcr-template-homepage .jcr-social-links__link:hover img,
  .jcr-template-homepage .jcr-social-links__link:focus-visible img {
    transform: none;
  }
}

/* Anchor/focus/search utility fixes */

.jcr-template-homepage .jcr-feature,
.jcr-template-homepage .jcr-section-anchor {
  scroll-margin-top: 9rem;
}

.jcr-template-homepage .jcr-section-anchor {
  display: block;
  height: 0;
  overflow: hidden;
}
