
:root {
  --color-pink: #f52153;
  --color-cyan: #27d6ff;
  --color-green: #65d072;
  --color-dark: #585858;
  --color-white: #ffffff;
  --color-grey: #d0d0d0;
  --color-sand: #f8f3f0;
  --post-sand-veil: 0.72;
  --color-light-blue: rgba(
    39,
    214,
    255,
    0.08
  );

  --color-blue: var(--color-cyan);

  --hero-min-h: 672px;

  --folder-inset: 48px;

  --folder-inset-right: 72px;

  --spacing-xxl: 80px;
  --spacing-xl: 40px;
  --spacing-lg: 30px;
  --spacing-md: 20px;
  --spacing-sm: 10px;

  --page-inset: 20px;

  --font-body:
    "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-accent: "Rubik", sans-serif;
  --font-script:
  "Caveat", "Segoe Script", cursive;

  --font-size-xxl: 50px;
  --font-size-xl: 42px;
  --font-size-lg: 28px;
  --font-size-md: 22px;
  --font-size-sm: 18px;
  --font-size-xs: 16px;
  --font-size-xxs: 14px;

  --radius-sm: 9px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 50px;
  --radius-round: 50%;

  --site-width: 1280px;

  --transition: 0.3s ease-in-out;
  --shadow-card: 0px 3px 13px rgba(0, 0, 0, 0.1);

  --badge-height: 43px;
}

.hcb {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--color-dark);
}

.hcb .h1,
.hcb .h2,
.hcb .h3,
.hcb h1,
.hcb h2,
.hcb h3,
.hcb h4,
.hcb h5,
.hcb h6 {
  margin: 0 0 var(--spacing-lg) 0;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
}

.hcb h1,
.hcb .h1 {
  font-size: var(--font-size-xxl);
}
.hcb h2,
.hcb .h2 {
  font-size: var(--font-size-xl);
}
.hcb h3,
.hcb .h3,
.hcb h4,
.hcb h5,
.hcb h6 {
  font-size: var(--font-size-lg);
}

.hcb .highlight {
  color: var(--color-pink);
}
.hcb .white {
  color: var(--color-white);
}

.hcb .maxwidth {
  max-width: 840px;
}

.hcb .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-self: center;
  gap: var(--spacing-sm);
}

.hcb .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.hcb .emphasis {
  font-size: 28px;
  color: var(--color-cyan);
  font-weight: 700;
}

.hcb ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  position: relative;
  padding-right: var(--spacing-lg);
  padding-top: var(--spacing-sm);
}
.hcb ol {
  margin-left: 0;
  padding-left: 1.4em;
  padding-top: var(--spacing-sm);
}

.hcb ul li {
  color: var(--color-pink);
  font-size: var(--font-size-xs);
  font-weight: 600;
  position: relative;
  padding-left: var(--spacing-xl);
  padding-bottom: var(--spacing-sm);
}

.hcb ul:not(.top-bar-menu) li::before {
  position: absolute;
  background: url(https://www.holidayclaimsbureau.co.uk/wp-content/uploads/2025/12/tick-folder.svg)
    no-repeat center/contain;
  content: "";
  width: 24px;
  height: 19px;
  top: 3px;
  left: 0;
}

.hcb .pink-bg ul li {
  color: var(--color-white);
}
.hcb .pink-bg ul:not(.top-bar-menu) li::before {
  filter: brightness(0) invert(1);
}

.hcb ul.cols-2 {
  display: block;
  width: 100%;
  column-count: 2;
  column-gap: var(--spacing-md);
}
.hcb ul.cols-2 li {
  break-inside: avoid;
}

.hcb section {
  padding: var(--spacing-xxl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.hcb > .hcb-same-bg {
  padding-top: 0;
}

.hcb .dm-btn {
  width: fit-content;
  background-color: var(--color-cyan);
  border: 2px solid var(--color-cyan);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  font-weight: 700;
  position: relative;
  padding: 7px 12px;
  display: flex !important;
  align-items: center;
  flex-direction: row;
  transition: var(--transition) !important;
  cursor: pointer;
  white-space: nowrap;
}

.hcb .dm-btn:hover {
  background-color: var(--color-white);
  color: var(--color-cyan);
  border-color: var(--color-cyan);
}

.hcb .dm-btn span {
  padding: 0 var(--spacing-md);
  white-space: nowrap;
}
.hcb .dm-btn.claim-cta:before {
  display: block;
  flex: 0 0 auto;
  background: url(/wp-content/themes/holiday-claims-bureau/images/plus.svg)
    no-repeat center/contain;
  content: "";
  width: 32px;
  height: 32px;
}

.hcb .dm-btn.pink {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
}
.hcb .dm-btn.pink:hover {
  background-color: var(--color-white);
  color: var(--color-pink);
  border-color: var(--color-pink);
}
.hcb .dm-btn.arrow:before {
  background: url(https://www.holidayclaimsbureau.co.uk/wp-content/uploads/2025/12/arrow-right.svg)
    no-repeat center/contain;
  order: 2;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.hcb #page-banner {
  height: auto;
  align-content: center;
  display: flex;
  padding: var(--spacing-xxl) 0px 0px 0px;
}
.hcb #page-banner.hero-banner {
  background-size:
    100% calc(100% + 4px),
    cover !important;
  background-position:
    center center,
    center !important;
  min-height: var(--hero-min-h);
}

.hcb #page-banner.hero-banner--plain {
  padding-bottom: var(--spacing-xxl);
  align-items: center;
}

.hcb #page-banner.hero-banner--masked {
  background: none !important;
  background-color: var(--color-pink) !important;
  min-height: 0;
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
  align-items: center;
}
.hcb .hero-inner.has-masked-photo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}
.hcb .hero-inner.has-masked-photo .hero-copy {
  flex: 1 1 55%;
  min-width: 0;
}
.hcb .hero-inner.has-masked-photo .hero-photo-col {
  flex: 0 0 42%;
  max-width: 42%;
}
.hcb .hero-photo-masked {
  display: block;
  width: 100%;
  aspect-ratio: 200.9 / 180.9;
  object-fit: cover;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.hcb .banner-rule {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 1px;
  margin: var(--spacing-md) 0;
  background: rgba(255, 255, 255, 0.55);
}

.banner-title.large {
  font-size: var(--font-size-xxl);
  line-height: 1.1;
}
.hcb .banner-title {
  min-height: var(--rotate-min-h, 0);
}

.hcb .hcb-rotate-line {
  display: none;
}
.hcb .hcb-rotate-line.is-on {
  display: inline;
}
.hcb .hcb-rotate-word {
  display: inline-block;
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.5s cubic-bezier(0.2, 0.9, 0.25, 1),
    transform 0.5s cubic-bezier(0.2, 0.9, 0.25, 1),
    filter 0.5s ease-out;
  transition-delay: calc(var(--w, 0) * 65ms);
}
.hcb .hcb-rotate-line.is-in .hcb-rotate-word {
  opacity: 0;
  transform: translateY(0.28em);
  filter: blur(0.09em);
}
.hcb .hcb-rotate-line.is-out .hcb-rotate-word {
  opacity: 0;
  transform: translateY(-0.28em);
  filter: blur(0.09em);
  transition:
    opacity 0.28s ease-in,
    transform 0.28s ease-in,
    filter 0.28s ease-in;
  transition-delay: calc(var(--w, 0) * 32ms);
}

.hcb .banner-subtitle {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  font-weight: 300;
}

.hcb .banner-eyebrow {
  display: block;
  font-family: var(--font-script);
  font-weight: 200;
  font-size: 38px;
  line-height: 1;
  color: var(--color-white);
}

.hcb .dm-btn {
  font-family: var(--font-accent);
}
.hcb .dm-btn.pink,
.hcb .dm-btn.arrow,
.hcb .feature-link,
.hcb .meet-team .dm-btn {
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 300;
}
.hcb-start-btn,
.hcb .wpcf7-submit {
  font-family: var(--font-accent);
}

.hcb .hero-inner.has-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 180px;
  align-items: center;
}
.hcb .hero-inner.has-form .hero-copy {
  color: var(--color-white);
  align-self: end;
  padding-bottom: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.hcb .hero-form-badge {
  display: none;
  position: absolute;
  top: -30px;
  right: -8px;
  width: 128px;
  height: auto;
  aspect-ratio: 139.99 / 164.59;
  pointer-events: none;
}
.page-contact .hcb .hero-form-title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.05;
  text-wrap: balance;
}

.hcb .hero-banner--flip {
  position: relative;
  background-image: none;
  overflow: hidden;
}
.hcb .hero-banner--flip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--hero-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}
.hcb .hero-banner--flip > .container {
  position: relative;
  z-index: 1;
}

.hcb .hero-form-wrap {
  display: contents;
}
.hcb .container,
.hcb.container {
  padding-left: var(--page-inset);
  padding-right: var(--page-inset);
}

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

.hcb .hero-form {
  scroll-margin-top: 140px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0px 0px;
  padding: var(--spacing-xl) var(--spacing-xl) 0px var(--spacing-xl);
  box-shadow: var(--shadow-card);
  color: var(--color-dark);
  border-top: 3px solid var(--color-cyan);
  border-right: 3px solid var(--color-cyan);
  border-left: 3px solid var(--color-cyan);
}
.hcb .hero-form-title {
  color: var(--color-pink);
  font-size: var(--font-size-lg);
  margin: 0 0 var(--spacing-sm);
}
.hcb .hero-form-text {
  font-size: var(--font-size-xs);
  margin: 0 0 var(--spacing-md);
}

.hcb .hero-form .wpcf7 {
  margin: 0;
}
.hcb .hero-form form > p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.hcb .hero-form .wpcf7 br {
  display: none;
}
.hcb .hero-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: var(--spacing-sm);
}
.hcb .hero-form input:not([type="submit"]),
.hcb .hero-form select,
.hcb .hero-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 20px;
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  color: var(--color-dark);
  background-color: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
}
.hcb .hero-form textarea {
  border-radius: var(--radius-md);
  height: 100px;
  resize: vertical;
}
.hcb .hero-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23585858' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 44px;
}
.hcb .hero-form input:focus,
.hcb .hero-form select:focus,
.hcb .hero-form textarea:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(39, 214, 255, 0.25);
}
.hcb .hero-form .wpcf7-submit {
  align-self: center;
  padding: 15px 62px 15px 40px;
  font-size: var(--font-size-xs);
  border: 2px solid var(--color-cyan);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.hcb .hero-form .wpcf7-submit:hover {
  background-color: var(--color-white);
  color: var(--color-cyan);
  border-color: var(--color-cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2327D6FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}

.hcb .blue-bg,
.hcb .blue-bg2 {
  background-color: var(--color-light-blue);
}

.hcb .pink-bg {
  background: var(--color-pink);
  color: var(--color-white);
  position: relative;
  display: grid;
}

.hcb .pink-bg > .container > span,
.hcb .pink-bg > .container > h2,
.hcb .pink-bg > .container > a {
  text-align: left;
  max-width: 800px;
  margin-right: auto;
}

.hcb .plane {
  position: absolute;
  bottom: -90%;
  right: 0;
  width: 500px;
  pointer-events: none;
}
.hcb .text-section.plane {
  bottom: -40%;
}

.hcb .google-review-container {
  position: relative;
  padding: var(--spacing-md) 0;
  display: flex;
}

.hcb .google-review-container::before {
  position: absolute;
  content: "Google Reviews";
  font-weight: 600;
  background-color: var(--color-cyan);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: 0 var(--spacing-xxl);
  line-height: var(--badge-height);
  top: calc(var(--badge-height) * -1);
  height: var(--badge-height);
  color: var(--color-white);
  font-size: var(--font-size-sm);
}

.hcb .google-review-container img {
  width: 116px;
  height: auto;
  margin-right: var(--spacing-xl);
  object-fit: contain;
}

.hcb .google-review-container .ti-widget.ti-goog {
  overflow: hidden !important;
}
.hcb .google-review-container .ti-widget.ti-goog .ti-widget-container {
  margin: 0 !important;
  padding: 0;
  border-radius: 0;
  position: relative;
  border: none !important;
  background-color: transparent !important;
  backdrop-filter: blur(0);
}
.hcb .google-review-container .ti-widget.ti-goog .ti-review-content,
.hcb .google-review-container .ti-widget.ti-goog .ti-read-more span,
.hcb .google-review-container .ti-widget.ti-goog .ti-date,
.hcb .google-review-container .ti-widget.ti-goog .ti-footer span,
.hcb .google-review-container .ti-widget.ti-goog .ti-footer strong {
  color: var(--color-dark) !important;
}
.hcb .google-review-container .ti-widget.ti-goog .ti-review-content {
  padding: 0;
  margin-top: 0;
  font-weight: 600;
  font-size: var(--font-size-md);
  height: 26px !important;
  line-height: 1.2;
}
.hcb .google-review-container .ti-widget.ti-goog .ti-profile-details .ti-name {
  font-size: var(--font-size-md);
}
.hcb .google-review-container .ti-widget.ti-goog .ti-name {
  color: var(--color-pink) !important;
}
.hcb .google-review-container .ti-widget.ti-goog .ti-controls .ti-next,
.hcb .google-review-container .ti-widget.ti-goog .ti-controls .ti-prev {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border: none;
  line-height: 30px;
  background-color: var(--color-pink);
  transition: all 0.3s ease-in-out;
}
.hcb .google-review-container .ti-widget.ti-goog .ti-controls {
  bottom: 0;
  gap: var(--spacing-md);
  right: 0;
}
.hcb .google-review-container .ti-header.ti-header-grid.source-Google,
.hcb .google-review-container .ti-profile-img,
.hcb .google-review-container .ti-date {
  display: none;
}

.hcb .wpcf7-not-valid-tip {
  position: static;
  display: block;
  width: auto;
  margin-top: 6px;
  padding: 0;
  background: none;
  color: #d63054;
  font-size: var(--font-size-xxs);
  font-weight: 600;
  line-height: 1.3;
}
.hcb .hero-form input.wpcf7-not-valid,
.hcb .hero-form textarea.wpcf7-not-valid,
.hcb .hero-form select.wpcf7-not-valid {
  border-color: #d63054;
}

.hcb .image {
  max-width: 100%;
  height: auto;
}

.hcb .masked {
  mask-image: url(/wp-content/themes/holiday-claims-bureau/images/plus-mask.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/wp-content/themes/holiday-claims-bureau/images/plus-mask.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.hcb .masked-folder {
  mask-image: url(/wp-content/themes/holiday-claims-bureau/images/folder-mask.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/wp-content/themes/holiday-claims-bureau/images/folder-mask.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.hcb .text-image {
  overflow-x: clip;
}

.hcb .text-image .image.masked,
.hcb .text-image .image.masked-folder {
  width: 100%;
  aspect-ratio: 200.9 / 180.9;
  object-fit: cover;
  mask-size: contain;
  -webkit-mask-size: contain;
}
@media (min-width: 992px) {
  .hcb .text-image .row {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .hcb .text-image .col-md-8 {
    flex: 0 0 55%;
    max-width: 55%;
  }
  .hcb .text-image .col-md-4 {
    flex: 0 0 45%;
    max-width: 45%;
    overflow: visible;
    position: sticky;
    top: var(--spacing-xl);
    align-self: flex-start;
  }
  .hcb .text-image.has-infographic .row {
    flex-direction: column;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
  }
  .hcb .text-image.has-infographic .col-md-8,
  .hcb .text-image.has-infographic .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .hcb .text-image.has-infographic .col-md-8 {
    order: 1;
  }
  .hcb .text-image.has-infographic .col-md-4 {
    order: 2;
    position: static;
  }
  .hcb .text-image.has-infographic .image {
    display: block;
    width: auto;
    max-width: 100%;
    margin: var(--spacing-lg) auto 0;
  }

  .hcb .text-image .image.masked,
  .hcb .text-image .image.masked-folder {
    width: 135%;
    max-width: none;
  }
  .hcb .text-image.image-left .image.masked,
  .hcb .text-image.image-left .image.masked-folder {
    margin-left: -35%;
  }
}

.hcb .sticky-col {
  position: sticky;
  top: var(--spacing-xl);
  align-self: flex-start;
}

.hcb .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.hcb .grid2 .center {
  padding: var(--spacing-sm);
  width: 100%;
}
.hcb .grid2 .center:first-child {
  border-right: 1px solid lightgrey;
}
.hcb .grid2 .center:nth-child(2) {
  gap: var(--spacing-md);
}

.hcb .pink-grid {
  margin-bottom: var(--spacing-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.hcb .pink-block-item {
  padding: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  transition: var(--transition);
}

.hcb a .pink-block-item p {
  color: var(--color-white);
}

.hcb .pink-grid > a {
  display: flex;
}
.hcb .pink-grid > a > .pink-block-item {
  flex: 1;
}

.hcb .pink-block-item p {
  width: 100%;
  font-weight: 700;
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

.hcb .pink-block-item img {
  width: 42px;
  height: 42px;
  padding: var(--spacing-sm);
  background-color: var(--color-pink);
  border-radius: var(--radius-round);
}

.hcb a .pink-block-item:hover {
  transform: translateY(-5px);
}

.hcb .pink-bg.split .container {
  text-align: center;
}
.hcb .pink-bg.split .pill-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  text-align: left;
  margin-bottom: var(--spacing-xl);
}
.hcb .pink-bg.split .pill-head h2 {
  margin: 0;
}
.hcb .pink-bg.split .dm-btn {
  margin: var(--spacing-lg) auto 0;
}

.hcb .claim-costs .icon-card-grid {
  gap: 0;
  margin: var(--spacing-lg) 0 var(--spacing-xl);
}
.hcb .claim-costs .icon-card-grid {
  align-items: start;
  gap: var(--spacing-xl) var(--spacing-lg);
}
.hcb .claim-costs .icon-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: var(--spacing-sm);
  row-gap: var(--spacing-sm);
  text-align: left;
  padding: 0;
}
.hcb .claim-costs .icon-card ul.icon-card-points {
  grid-column: 2 / -1;
}
.hcb .claim-costs .icon-card .icon-card-disc {
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}
.hcb .claim-costs .icon-card .icon-card-disc--font i,
.hcb .claim-costs .icon-card .icon-card-disc--font svg {
  font-size: 20px;
  width: 20px;
  color: var(--color-white);
}
.hcb .claim-costs .icon-card .icon-card-title {
  text-align: left;
  font-size: var(--font-size-md);
  font-weight: 700;
}
.hcb .pink-bg.claim-costs .icon-card ul.icon-card-points {
  display: block;
  text-align: left;
}
.hcb .pink-bg.claim-costs .icon-card ul.icon-card-points li,
.hcb .pink-bg.claim-costs .icon-card ul.icon-card-points li:only-child {
  display: block;
  position: relative;
  background-color: transparent;
  border-radius: 0;
  padding: 0 0 var(--spacing-sm);
  text-align: left;
}
.hcb .pink-bg.claim-costs .icon-card ul.icon-card-points li::before,
.hcb .pink-bg.claim-costs .icon-card ul.icon-card-points li:only-child::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.5;
  filter: none;
}

.hcb .pink-bg .pink-grid-group-title {
  margin: var(--spacing-xl) 0 var(--spacing-md);
  text-align: center;
  color: var(--color-white);
}

.hcb .pink-grid-note {
  max-width: 760px;
  margin: var(--spacing-lg) auto 0;
  text-align: center;
  font-size: var(--font-size-xsm);
}
.hcb .pink-grid-note p {
  margin: 0;
}
.hcb .pink-grid-note p + p {
  margin-top: var(--spacing-sm);
}
.hcb .pink-grid-note a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 600;
}

.hcb .pink-bg > .container.center > h2,
.hcb .pink-bg > .container.center > span {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hcb .container.center .pink-grid {
  width: 100%;
  max-width: 940px;
  margin-top: var(--spacing-lg);
}
.hcb .container.center .pink-grid-checklist {
  width: 100%;
  max-width: 940px;
  margin: var(--spacing-lg) auto 0;
  text-align: left;
}
.hcb .container.center .dm-btn {
  margin-top: var(--spacing-sm);
  margin-left: auto;
  margin-right: auto;
}

.hcb .claim-types .container.center .pink-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  max-width: none;
}
.hcb .claim-types .pink-grid > * {
  flex: 0 0 calc(25% - var(--spacing-md) * 0.75);
  margin: 0;
}
.hcb .claim-types .pink-block-item {
  position: relative;
  justify-content: center;
  background-color: rgba(
    0,
    0,
    0,
    0.16
  );
  padding: 14px var(--spacing-md) 14px 50px;
}
.hcb .pink-block-item .pill-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  color: var(--color-cyan);
  font-size: 21px;
  line-height: 24px;
  text-align: center;
}
.hcb .pink-block-item svg.pill-icon {
  width: 24px;
  height: 24px;
}
.hcb .pink-block-item:has(.pill-icon) {
  position: relative;
  padding-left: 50px;
}
.hcb .claim-types .pink-block-item p {
  width: auto;
  text-align: center;
}

.hcb .claim-types .pink-block-item {
  min-height: calc(var(--font-size-sm) * 1.5 * 2 + 28px);
}

.hcb .claim-types > .container.center > h2 {
  max-width: 1000px;
}

.hcb .claim-extra,
.hcb .claim-text,
.hcb .claim-pink {
  padding: var(--spacing-xxl) 0;
}
.hcb .claim-extra-inner {
  max-width: 840px;
  margin: 0 auto;
}
.hcb .claim-extra-inner > h2:first-child,
.hcb .claim-extra-inner > h3:first-child {
  margin-top: 0;
}

.hcb .text-block--2col .claim-extra-inner > .dm-btn {
  margin-left: auto;
  margin-top: var(--spacing-lg);
}
.hcb .text-block--2col .claim-extra-inner {
  max-width: none;
  text-align: left;
}
.hcb .text-block-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--spacing-xxl);
}
.hcb .text-block-cols > .text-block-col {
  min-width: 0;
}
.hcb .text-block-col > *:first-child {
  margin-top: 0;
}
.hcb .text-block-col > *:last-child {
  margin-bottom: 0;
}
.hcb .claim-extra-inner h2,
.hcb .claim-extra-inner h3,
.hcb .claim-extra-inner h4,
.hcb .claim-extra-inner h5,
.hcb .claim-extra-inner h6 {
  margin-top: var(--spacing-lg);
}

.hcb .banner-subtitle a,
.hcb .banner-subtitle a span,
.hcb .banner-subtitle strong,
.hcb .banner-subtitle strong span {
  color: var(--color-white) !important;
}
.hcb .banner-subtitle a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hcb .banner-subtitle .hero-contact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px var(--spacing-md);
  align-items: baseline;
  margin-top: var(--spacing-sm);
}
.hcb .banner-subtitle .hero-contact-label {
  font-weight: 700;
  white-space: nowrap;
}
.hcb .banner-subtitle .hero-contact-value {
  min-width: 0;
}
.hcb .banner-subtitle .hero-contact-value br + br {
  display: none;
}
@media only screen and (max-width: 560px) {
  .hcb .banner-subtitle .hero-contact {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .hcb .banner-subtitle .hero-contact-label {
    margin-top: var(--spacing-sm);
  }
}

.hcb .text-image .col-md-8 > span h3,
.hcb .text-image .col-md-8 > span h4,
.hcb .text-image .col-md-8 > span h5,
.hcb .text-image .col-md-8 > span h6 {
  margin-top: var(--spacing-xl);
}

.hcb .text-image .col-md-8 > span h2,
.hcb .claim-extra-inner h2,
.hcb .claim-text--alt .split-right h2 {
  margin-top: 0;
  padding-top: var(--spacing-lg);
}
.hcb .text-image .col-md-8 > span > h2:first-child,
.hcb .claim-extra-inner > h2:first-child,
.hcb .claim-text--alt .split-right > h2:first-child {
  padding-top: 0;
}
.hcb .text-image .col-md-8 > span > *:first-child {
  margin-top: 0;
}

.hcb .info-strapline .claim-extra-inner {
  max-width: 1000px;
}
.hcb .info-strapline .claim-extra-inner p {
  font-family: var(--font-script);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
  margin: 0;
}
.hcb
  .claim-text:not(.claim-text--alt):not(.claim-note)
  .claim-extra-inner
  > *:last-child {
  margin-bottom: 0;
}
.hcb
  .claim-text:not(.claim-text--alt):not(.claim-note)
  .claim-extra-inner
  > p:first-of-type {
  font-size: var(--font-size-md);
  line-height: 1.5;
}
.hcb .claim-text--alt {
  background-color: var(--color-light-blue);
}
.hcb .claim-text--alt .split-left h2 {
  margin-top: 0;
}
.hcb .claim-text--alt .split-right > *:first-child {
  margin-top: 0;
}

.hcb .claim-note .claim-extra-inner {
  text-align: center;
}
.hcb .claim-pink {
  color: var(--color-white);
  text-align: center;
}
.hcb .claim-pink ul,
.hcb .claim-pink ol {
  text-align: left;
  display: inline-block;
}
.hcb .claim-pink a {
  color: var(--color-white);
  text-decoration: underline;
}
.hcb .claim-pink h2 {
  font-size: var(--font-size-xl);
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
}
.hcb .claim-pink .dm-btn {
  margin-top: var(--spacing-lg);
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}
.hcb .claim-pink > .container > .claim-extra-inner > *:last-child {
  margin-bottom: 0;
}

.hcb .icon-cards {
  padding: var(--spacing-xxl) 0;
}
.hcb .icon-card-grid {
  display: grid;
  grid-template-columns: repeat(var(--icon-card-cols, 3), 1fr);
  gap: var(--spacing-xl) var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}
.hcb .icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
  color: inherit;
}
.hcb .icon-card-disc--font {
  padding: 0;
}
.hcb .icon-card-disc--font i,
.hcb .icon-card-disc--font svg {
  font-size: 34px;
  width: 34px;
  line-height: 1;
  color: var(--color-cyan);
}

.hcb .icon-card-points {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hcb .icon-card ul.icon-card-points li {
  color: var(--color-dark);
  font-weight: 400;
  font-size: var(--font-size-xsm);
  line-height: 1.45;
  position: relative;
  padding: 0 0 0 16px;
}
.hcb .icon-card ul.icon-card-points li::before {
  background: currentColor;
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.5;
}
.hcb .pink-bg .icon-card,
.hcb .pink-bg .icon-card ul.icon-card-points li,
.hcb .pink-bg .icon-card-title {
  color: var(--color-white);
}
.hcb .pink-bg .icon-card ul.icon-card-points {
  gap: var(--spacing-sm);
  text-align: center;
}
.hcb .pink-bg .icon-card ul.icon-card-points li {
  padding: var(--spacing-sm);
  background-color: rgba(0, 0, 0, 0.16);
  border-radius: var(--radius-md);
  text-align: center;
}
.hcb .pink-bg .icon-card ul.icon-card-points li::before {
  content: none;
}
.hcb .pink-bg .icon-card ul.icon-card-points li:only-child {
  padding: var(--spacing-sm);
}

.hcb .icon-card ul.icon-card-points li:only-child {
  padding-left: 0;
  text-align: center;
}
.hcb .icon-card ul.icon-card-points li:only-child::before {
  content: none;
}

.hcb a.icon-card {
  text-decoration: none;
  transition: transform 0.2s ease;
}
.hcb a.icon-card:hover,
.hcb a.icon-card:focus-visible {
  transform: translateY(-4px);
  color: inherit;
}
.hcb .icon-card-disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
  padding: 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-cyan);
}
.hcb .icon-card-disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hcb .icon-card-title {
  font-size: var(--font-size-md);
  margin: 0;
}
.hcb .icon-card p {
  margin: 0;
  font-size: var(--font-size-xsm);
}
.hcb .pink-bg .icon-card-disc {
  border-color: var(--color-white);
}

.hcb .scenario-marquee {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.hcb .marquee-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.hcb .marquee-track {
  display: flex;
  gap: var(--spacing-md);
  width: max-content;
  animation: hcb-marquee 45s linear infinite;
}
.hcb .marquee-track.reverse {
  animation-direction: reverse;
}
.hcb .marquee-row:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes hcb-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hcb .scenario-pill {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: var(--radius-xl);
  color: var(--color-white);
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}
.hcb .scenario-pill:hover {
  background: var(--color-white);
  color: var(--color-pink);
}

.hcb .gradient-bg {
  padding: 0;
  background: linear-gradient(
    to bottom,
    var(--color-pink) 0%,
    var(--color-pink) 45%,
    var(--color-light-blue) 45%,
    var(--color-light-blue) 100%
  );
  background-repeat: no-repeat;
  background-size: 100% calc(100% + 4px);
  background-position: center center;
}

.hcb .gradient-bg .container {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  justify-self: center;
  box-shadow: var(--shadow-card);
  color: var(--color-dark);
  padding: var(--spacing-xl);
}

.hcb .cta-icon {
  width: 148px;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}
.hcb .ambulance {
  width: 148px;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}
.hcb .cta-subtitle {
  font-weight: 800;
  font-size: var(--font-size-md);
  color: var(--color-dark);
  margin: 0;
}

.hcb .gradient-bg.floating-cta {
  padding: 0;
  margin-top: -150px;
  position: absolute;
  justify-self: center;
  background: transparent;
}
.hcb .gradient-bg.floating-cta .container {
  background-color: var(--color-pink);
  color: var(--color-white);
}
.hcb .gradient-bg.floating-cta .container .highlight,
.hcb .gradient-bg.floating-cta .container a {
  color: var(--color-white);
}
.hcb .gradient-bg.floating-cta .container a:hover {
  color: var(--color-cyan);
}

a:hover,
a:focus,
a:active {
  color: var(--color-white);
}

.hcb .text-image .col-md-8 a:not(.dm-btn):hover,
.hcb .text-image .col-md-8 a:not(.dm-btn):focus,
.hcb .claim-text .claim-extra-inner a:not(.dm-btn):hover,
.hcb .claim-text .claim-extra-inner a:not(.dm-btn):focus,
.hcb .claim-text--alt .split-right a:not(.dm-btn):hover,
.hcb .claim-text--alt .split-right a:not(.dm-btn):focus,
.hcb .claim-extra .claim-extra-inner a:not(.dm-btn):hover,
.hcb .claim-extra .claim-extra-inner a:not(.dm-btn):focus,
.hcb .cta-card-phone-num:hover,
.hcb .cta-card-phone-num:focus,
.hcb .success-card:not(.featured) .cat-link:hover,
.hcb .success-card:not(.featured) .cat-link:focus,
.hcb .closing-cta-body a:hover,
.hcb .closing-cta-body a:focus {
  color: var(--color-pink);
}

.mediahawkNumber9163 a,
.mediahawkNumber9163 a:hover,
.mediahawkNumber9163 a:focus,
.mediahawkNumber9163 a:active {
  color: inherit;
}

.hcb .how-it-works {
  background-color: var(--color-pink);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  color: var(--color-white);
}
.hcb .how-it-works .dm-btn {
  margin-top: var(--spacing-lg);
}

.hcb .new-row {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxl);
}

.hcb .column {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  color: var(--color-pink);
  padding: var(--spacing-xl);
  gap: var(--spacing-lg);
  font-weight: 600;
}

.hcb .number-grid {
  display: grid;
  grid-template-columns: 1fr 8fr;
  gap: var(--spacing-sm);
}

.hcb .number-circle {
  border-radius: var(--radius-round);
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-pink);
}

.hcb section.information {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
  --bg-h: calc(100vw * 795 / 1920);
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 55%,
      var(--color-white) 100%
    ),
    url(/wp-content/themes/holiday-claims-bureau/images/bg-water-texture-flipped.webp);
  background-size:
    100% var(--bg-h),
    100% auto;
  background-position:
    center 344px,
    center 344px;
  background-repeat: no-repeat, no-repeat;
}
.hcb section.information--with-news {
  padding-bottom: 0;
}

.hcb section.information--with-news > .news-on-palm {
  background: none;
}

.hcb .info-block {
  background: none;
  padding: 0;
}
.hcb.hcb-info-page > .info-block,
.hcb.hcb-content-page > .info-block {
  padding: var(--spacing-xxl) 0;
}

.hcb .latest-news {
  background-image: url(https://www.holidayclaimsbureau.co.uk/wp-content/uploads/2025/12/news-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hcb .news-col {
  height: 100%;
}

.hcb .news-col .post-box {
  border-radius: var(--radius-lg);
  background-color: var(--color-white);
  overflow: hidden;
  transition: var(--transition);
}

.hcb .news-col:nth-child(4) .post-box {
  background-color: var(--color-pink);
  color: var(--color-white);
}

.hcb .post-box img {
  max-width: 280px;
}

.hcb .post-box .inner img {
  mask-image: url(/wp-content/themes/holiday-claims-bureau/images/plus-mask.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/wp-content/themes/holiday-claims-bureau/images/plus-mask.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.hcb .post-box .title {
  font-size: var(--font-size-md);
  height: 175px;
  padding: var(--spacing-md) var(--spacing-lg);
  margin-top: 0;
  font-weight: 400;
  color: var(--color-pink);
}

.hcb .post-box .read-more-container {
  font-size: var(--font-size-xxs);
  color: var(--color-cyan);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-white);
  transition: var(--transition);
}

.hcb .url-btn {
  transition: var(--transition);
}
.hcb .url-btn:hover .post-box {
  transform: translateY(-5px);
}
.hcb .url-btn:hover .read-more-container {
  background-color: var(--color-cyan);
  color: var(--color-white);
}
.hcb .url-btn:hover .read-more-container img {
  filter: brightness(0) invert(1);
}

.hcb .news-col:nth-child(4) .post-box .title {
  color: var(--color-white);
}
.hcb .news-col:nth-child(4) .post-box .title strong {
  color: var(--color-cyan);
}

.hcb .featured-in {
  margin-top: var(--spacing-lg);
  background-color: var(--color-white);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--color-pink);
  font-size: 32px;
  font-weight: 700;
  border-radius: var(--radius-lg);
}
.hcb .featured-in img {
  max-height: 54px;
}
.hcb .featured-in {
  box-shadow: var(--shadow-card);
  font-size: 26px;
}

.hcb .cta-card-section {
  position: relative;
  z-index: 1;
  padding-top: var(--spacing-lg);
  padding-bottom: 0px;
}
.hcb.hcb-info-page > .cta-card-section,
.hcb.hcb-content-page > .cta-card-section {
  background: var(--color-light-blue);
  padding-top: 170px;
  padding-bottom: var(--spacing-xxl);
}
.hcb .cta-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-top: 70px;
  padding: var(--spacing-xxl) var(--spacing-xxl) var(--spacing-xl);
  text-align: center;
}
.hcb .cta-card-ring {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -70px;
  width: 140px;
  height: 140px;
}
.hcb .cta-card-ring img {
  width: 100%;
  height: auto;
  display: block;
}
.hcb .on-palm-bg .cta-card-ring,
.hcb .cta-card--balloon .cta-card-ring {
  width: 380px;
  height: auto;
  margin-left: -190px;
  top: -150px;
}
.hcb .on-palm-bg .cta-card-ring img,
.hcb .cta-card--balloon .cta-card-ring img {
  aspect-ratio: 200 / 159.99;
}
.hcb .hcb-nwnf-glow {
  position: absolute;
  top: 70%;
  left: 50%;
  width: var(--glow-size, 460px);
  height: var(--glow-size, 460px);
  margin-top: calc(var(--glow-size, 460px) / -2);
  margin-left: calc(var(--glow-size, 460px) / -2);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(39, 214, 255, 0.32),
    rgba(39, 214, 255, 0) 62%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
}
.hcb .cta-card-section .container {
  position: relative;
}
.hcb .cta-card-title {
  color: var(--color-pink);
  margin: 0 0 var(--spacing-lg);
}
.hcb .cta-card--3col .cta-card-title {
  font-size: var(--font-size-xl);
}
.hcb .cta-card--2col .cta-card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}
.hcb .cta-card-subtitle {
  color: var(--color-dark);
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin: 0 0 var(--spacing-xl);
}
.hcb .cta-card-cols {
  display: grid;
  gap: var(--spacing-xl);
  align-items: center;
  text-align: left;
}
/* ⚠️ margin, not align-self: .hero-copy is display:block, so an alignment
   property does nothing there. The button computes to display:flex, which makes
   it block-level with a set width, and auto side margins are what centre that. */
.hcb .hero-copy .dm-btn.hero-btn--center {
  margin-left: auto;
  margin-right: auto;
}

.hcb .cta-card--1col .cta-card-cols {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.hcb .cta-card--3col .cta-card-cols {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}
.hcb .cta-card--2col .cta-card-cols {
  grid-template-columns: 1fr auto 1fr;
}
.hcb .cta-divider {
  align-self: stretch;
  width: 1px;
  background: var(--color-grey);
}
.hcb .cta-card-text {
  margin: 0;
}
.hcb .cta-card-call,
.hcb .cta-card-phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.hcb .cta-card-call-label,
.hcb .cta-card-phone-label {
  color: var(--color-dark);
}
.hcb .cta-card-phone-num {
  color: var(--color-cyan);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.hcb .cta-card-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hcb .modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.hcb .modal-grid::before,
.hcb .modal-grid::after {
  display: none;
}

.hcb .modal-block-item {
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-pink);
  border-radius: var(--radius-md);
  display: flex;
  text-align: left;
  justify-content: space-between;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  gap: var(--spacing-md);
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}
.hcb .modal-block-item:hover {
  transform: translateY(-2px);
}

.hcb .faq-grid {
  columns: 2;
  column-gap: var(--spacing-lg);
}

.hcb .faq-block-item {
  break-inside: avoid;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: 700;
  color: var(--color-pink);
  font-size: var(--font-size-sm);
  gap: var(--spacing-md);
  cursor: pointer;
  transition: var(--transition);
}

.hcb .faq-block-item .question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hcb .question span {
  display: inline-block;
  width: fit-content;
}

.hcb .modal-block-item:after,
.hcb .faq-block-item .question:after {
  display: block;
  background: url(/wp-content/themes/holiday-claims-bureau/images/plus.svg)
    no-repeat center/contain;
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.hcb .faq-block-item.active .question:after {
  background: url(https://www.holidayclaimsbureau.co.uk/wp-content/uploads/2025/12/minus-sign.svg)
    no-repeat center/contain;
}

.hcb #faqs .faq .answer {
  display: none;
  font-weight: 400;
}
.hcb #faqs .faq {
  cursor: pointer;
}

.hcb .fade-in-item {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.hcb .fade-in-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.hcb .reviews-section,
.hcb .success-stories,
.hcb .meet-team {
  background: var(--color-light-blue);
}
.hcb .meet-team .feature-list-inner {
  align-items: center;
}
.hcb .meet-team .feature-list-head {
  position: static;
  top: auto;
  align-self: center;
}

.hcb .success-news {
  --straddle-ground: var(--color-white);
  background-color: var(--straddle-ground);
  background-image:
    linear-gradient(to top, var(--straddle-ground) 220px, transparent 220px),
    url(/wp-content/uploads/2025/12/news-bg.webp);
  background-size:
    100% calc(100% + 2px),
    cover;
  background-position:
    center top,
    center;
  background-repeat: no-repeat, no-repeat;
}
.hcb .success-news:has(+ .pink-bg) {
  --straddle-ground: var(--color-pink);
}
.hcb .success-news > section {
  background: transparent;
}
.hcb .success-news > section:first-child {
  padding-bottom: 0;
}
.hcb .success-news > .container {
  padding-top: var(--spacing-xl);
}

.hcb .post-sand {
  background-color: var(--color-sand);
  background-image:
    linear-gradient(
      to top,
      var(--color-white) 150px,
      rgba(255, 255, 255, 0) 150px
    ),
    linear-gradient(
      rgba(248, 243, 240, var(--post-sand-veil)),
      rgba(248, 243, 240, var(--post-sand-veil))
    ),
    url(/wp-content/uploads/2025/12/news-bg.webp);
  background-size:
    100% calc(100% + 2px),
    100% 100%,
    cover;
  background-position:
    center top,
    center top,
    center bottom;
  background-repeat: no-repeat, no-repeat, no-repeat;
  padding-bottom: 0;
}
.hcb-post .success-stories {
  background: var(--color-white);
  padding-bottom: 0;
}

.hcb section.post-body .claim-extra-inner {
  max-width: none;
}

.hcb section.post-body .claim-extra-inner h2,
.hcb section.post-body .claim-extra-inner h3 {
  font-size: var(--font-size-lg);
  color: var(--color-pink);
}

.hcb .numbered-checklist {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-bottom: var(--spacing-xxl);
  margin-bottom: calc(60px + var(--spacing-xl));
}
.hcb .numbered-checklist-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xl);
}
.hcb .numbered-checklist-copy {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
}
.hcb .numbered-checklist-copy h2 {
  color: var(--color-white);
}
.hcb .numbered-checklist-intro {
  color: var(--color-white);
  font-size: var(--font-size-sm);
}
.hcb .numbered-checklist-intro p:last-child {
  margin-bottom: 0;
}
.hcb .numbered-checklist-photo-wrap {
  position: relative;
  margin-top: var(--spacing-lg);
  margin-left: -5%;
  width: 110%;
  display: block;
  margin-bottom: -140px;
}
.hcb .numbered-checklist-photo {
  display: block;
  width: 100%;
  aspect-ratio: 200.9 / 180.9;
  object-fit: cover;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.hcb .numbered-checklist-side {
  flex: 1 1 58%;
  min-width: 0;
}
.hcb .numbered-checklist-side .numbered-checklist-intro {
  margin-bottom: var(--spacing-lg);
}
.hcb .numbered-checklist-items {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: hcb-step;
}
.hcb .numbered-checklist-items li {
  counter-increment: hcb-step;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 15px 18px;
  color: var(--color-pink);
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 1.35;
}
.hcb .numbered-checklist-items li + li {
  margin-top: 14px;
}
.hcb .numbered-checklist-items li::before {
  content: counter(hcb-step);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-cyan);
  border-radius: 50%;
  color: var(--color-cyan);
  font-size: 15px;
  font-weight: 700;
}
.hcb .pink-bg ul.numbered-checklist-items li {
  color: var(--color-pink);
}
.hcb .pink-bg ul.numbered-checklist-items--plain li::before {
  position: static;
  background-image: none;
  filter: none;
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  background-color: var(--color-cyan);
  margin: 10px;
}

.hcb .image-map-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
    ellipse 55% 45% at 50% 50%,
    rgba(39, 214, 255, 0.28) 0%,
    rgba(39, 214, 255, 0.1) 45%,
    rgba(39, 214, 255, 0) 70%
  );
}
.hcb .text-image .image.image-map {
  width: auto;
  max-width: 100%;
  max-height: 420px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0;
}

.hcb .closing-cta {
  text-align: center;
}
.hcb .closing-cta-body {
  max-width: 1200px;
  margin: 0 auto;
}

.hcb .claim-pink > .container > .claim-extra-inner,
.hcb .info-strapline > .container > .claim-extra-inner,
.hcb .claim-note > .container > .claim-extra-inner {
  max-width: 1200px;
}
.hcb .closing-cta-body p:last-child {
  margin-bottom: 0;
}
.hcb .closing-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.hcb .usp-bar {
  background: var(--color-pink);
  color: var(--color-white);
  padding: var(--spacing-lg) 0;
}
.hcb .usp-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}
.hcb .usp-bar .container:after,
.hcb .usp-bar .container:before {
  display: none;
}

.hcb .usp-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--font-script);
  font-weight: 300;
  font-size: 24px;
}
.hcb .usp-check {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hcb .usp-check img {
  width: 28px;
  height: 28px;
}

.hcb .reviews {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--spacing-xl);
  align-items: center;
}
.hcb .reviews.slim {
  display: flex;
  justify-content: center;
}

.hcb .reviews.slim .rs-rating {
  margin-bottom: 0;
}

.hcb .reviews.slim .rs-rating {
  gap: 10px;
  font-size: var(--font-size-md);
}
.hcb .reviews.slim .rs-logo img {
  height: 29px;
}
.hcb .reviews.slim .rs-stars {
  height: 24px;
}

.hcb .reviews.slim.has-author {
  align-items: center;
  gap: var(--spacing-lg);
}
.hcb .reviews-section.reviews-bar--white {
  background: var(--color-white);
  padding: var(--spacing-lg) 0;
  gap: 0;
}

.hcb .reviews.slim.has-author::before {
  content: "";
  order: 1;
  align-self: stretch;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
}
.hcb .rs-author {
  order: 2;
}
.hcb-post .reviews.slim.has-author {
  justify-content: flex-start;
}
.hcb-post .reviews.slim.has-author::before {
  margin-left: auto;
  margin-right: auto;
}

.hcb section.intro-block {
  background: var(--color-light-blue);
  --folder-panel-bg: #eefcff;
}
.hcb .rs-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: inherit;
  text-decoration: none;
}
.hcb .rs-author-name {
  font-size: var(--font-size-md);
  line-height: 1.3;
}
.hcb .banner-rule + .banner-title.large {
  margin-top: 0;
}
.hcb .rs-author-name strong {
  font-weight: 700;
}
.hcb .rs-author-name span {
  font-weight: 400;
}
.hcb .rs-author-photo {
  display: block;
  flex: 0 0 auto;
}
.hcb .rs-author-photo img {
  display: block;
  width: 78px;
  height: auto;
  aspect-ratio: 200.9 / 180.9;
  object-fit: cover;
  object-position: center top;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.hcb .reviews-head h2 {
  margin-bottom: var(--spacing-md);
}
.hcb .reviews-head h2 span {
  color: var(--color-pink);
}
.hcb .rs-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-sm);
}
.hcb .rs-logo {
  display: inline-flex;
  align-items: center;
}
.hcb .rs-logo img {
  height: 22px;
  width: auto;
  display: block;
}
.hcb .rs-stars {
  height: 18px;
  width: auto;
  display: block;
}
.hcb .stars {
  color: #00b67a;
  letter-spacing: 1px;
}
.hcb .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}
.hcb .review-card {
  background: var(--color-white);
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hcb .review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
}
.hcb .review-card-head .rs-stars,
.hcb .review-card-head .stars {
  margin-left: auto;
  flex: 0 0 auto;
}
.hcb .review-title {
  font-weight: 700;
  color: var(--color-dark);
}
.hcb .review-card .author {
  font-weight: 700;
  font-size: var(--font-size-xxs);
  color: var(--color-pink);
  margin-top: auto;
}
.hcb .review-card p {
  font-size: var(--font-size-xxs);
  margin: 0;
}

.hcb .feature-list-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-xxl);
  align-items: start;
}
.hcb .feature-list-inner > * {
  min-width: 0;
}
.hcb .feature-list-head {
  position: sticky;
  top: var(--spacing-xl);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.hcb .feature-list-head .buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
}
.hcb .feature-rows {
  display: flex;
  flex-direction: column;
}
.hcb .feature-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.hcb .feature-row:first-child,
.hcb .hcb-acc--plain .hcb-acc-item:first-child .hcb-acc-head {
  padding-top: 0px;
}
.hcb .feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.hcb .feature-row.no-image {
  grid-template-columns: 1fr;
}
.hcb .feature-row img {
  width: 100%;
  height: auto;
}
.hcb .feature-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.hcb .feature-img .masked {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.hcb .feature-row h3 {
  color: var(--color-pink);
  margin: 0 0 var(--spacing-md);
}
.hcb .feature-row p {
  margin: 0;
}
.hcb .feature-link {
  margin-top: var(--spacing-md);
}

.hcb .success-head {
  margin-bottom: var(--spacing-xl);
}
.hcb .success-head.has-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: var(--spacing-lg);
}
.hcb .success-head h2 {
  margin: 0;
}
.hcb .success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}
.hcb .success-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: var(--spacing-md);
  cursor: pointer;
}
.hcb .success-card .success-img {
  display: block;
  flex: 0 0 auto;
  width: 110%;
  margin: -5% 0 0 -5%;
  padding: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hcb .success-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hcb .success-card .success-img .masked {
  mask-size: 77.4% 111.6%;
  mask-position: 0% 69%;
  -webkit-mask-size: 77.4% 111.6%;
  -webkit-mask-position: 0% 69%;
}
.hcb .success-card .amount {
  color: var(--color-pink);
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin-top: 0;
  padding: 0 var(--spacing-md) 0 0;
}
.hcb .success-card .excerpt {
  padding: var(--spacing-sm) var(--spacing-md) 0 0;
  color: var(--color-pink);
  margin-bottom: 0;
  font-size: var(--font-size-md);
}
.hcb .success-card .cat-link {
  display: block;
  margin-top: 0;
  padding: var(--spacing-md) var(--spacing-lg) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-cyan);
  font-weight: 700;
}
.hcb .success-card.featured {
  background: var(--color-pink);
  color: var(--color-white);
}
.hcb .success-card.featured .amount,
.hcb .success-card.featured .excerpt {
  color: var(--color-white);
}
.hcb .success-card.featured .cat-link {
  color: var(--color-white);
  border-top-color: rgba(255, 255, 255, 0.35);
}
.hcb .success-card-top {
  flex: 1 1 auto;
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hcb .success-card-text {
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}
.hcb .success-card:hover .success-card-top {
  background: var(--color-pink);
}
.hcb .success-card:hover .amount,
.hcb .success-card:hover .excerpt {
  color: var(--color-white);
}
.hcb .success-card .read-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  margin-top: 0;
  padding: var(--spacing-md) var(--spacing-lg);
  border-top: 1px solid var(--color-grey);
  background: var(--color-white);
  color: var(--color-cyan);
  font-family: var(--font-script);
  font-size: var(--font-size-md);
}
.hcb .success-card:has(.read-more) {
  padding-bottom: 0;
}
.hcb .success-card .read-more::after {
  content: "";
  flex: 0 0 auto;
  width: 32px;
  height: 24px;
  background: var(--color-cyan);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h13.2l-4.6-4.6L14 5l7 7-7 7-1.4-1.4 4.6-4.6H4z'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h13.2l-4.6-4.6L14 5l7 7-7 7-1.4-1.4 4.6-4.6H4z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.hcb .success-carousel {
  margin: 0 calc(var(--spacing-lg) / -2);
}
.hcb .success-carousel .slick-list {
  margin-top: calc(var(--spacing-md) * -1);
  margin-bottom: calc(var(--spacing-md) * -1);
}
.hcb .success-carousel .slick-track {
  display: flex;
}
.hcb .success-carousel .slick-slide {
  height: auto;
  padding: var(--spacing-md) calc(var(--spacing-lg) / 2);
}
.hcb .success-slide {
  height: 100%;
}
.hcb .success-carousel .success-card {
  height: 100%;
  transition: var(--transition);
}
.hcb .slick-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: var(--spacing-md) 0 0;
  margin: 0;
}
.hcb .slick-dots li {
  line-height: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font-weight: 400;
}
.hcb .slick-dots li::before {
  display: none;
  content: none;
}
.hcb .slick-dots li button {
  font-size: 0;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-round);
  background: var(--color-white);
  cursor: pointer;
}
.hcb .slick-dots li button::before {
  display: none;
  content: none;
}
.hcb .slick-dots li.slick-active button {
  background: var(--color-cyan);
}

.hcb .hcb-page-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: var(--spacing-xl) 0 0;
  margin: 0;
}
.hcb .hcb-page-dots li {
  line-height: 0;
  padding: 0;
  margin: 0;
}
.hcb .hcb-page-dots li::before {
  display: none;
  content: none;
}
.hcb .hcb-page-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.hcb .hcb-page-dot::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-cyan);
  border-radius: var(--radius-round);
  background: var(--color-white);
  transition: var(--transition);
}
.hcb .hcb-page-dot:hover::before,
.hcb .hcb-page-dot:focus-visible::before,
.hcb .hcb-page-dot.is-current::before {
  background: var(--color-cyan);
}

.hcb .team-carousel {
  position: relative;
  margin: 0 -10px;
  padding-bottom: 68px;
}
.hcb .team-carousel .slick-slide {
  height: auto;
  padding: 0 10px;
}
.hcb .team-slide {
  height: 100%;
}
.hcb .team-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #dfe6ea;
}
.hcb .team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.hcb .team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #eef3f6, #d3dfe4);
  background-repeat: no-repeat;
  background-size: 100% calc(100% + 4px);
  background-position: center center;
}
.hcb .team-meta {
  position: absolute;
  left: var(--spacing-sm);
  right: var(--spacing-sm);
  bottom: var(--spacing-sm);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-card);
}
.hcb .team-meta .name {
  display: block;
  color: var(--color-pink);
  font-weight: 700;
  line-height: 1.2;
}
.hcb .team-meta .role {
  display: block;
  font-size: var(--font-size-xxs);
  color: var(--color-dark);
}
.hcb .team-contact {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}

.hcb .team-accordion {
  display: flex;
  gap: 10px;
  height: 460px;
}
.hcb .team-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: #dfe6ea;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition:
    flex-grow 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.hcb .team-panel.active {
  flex-grow: 4;
}

.hcb .team-accordion.visible:not(.slick-initialized) .team-panel {
  animation: hcb-deal 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
@keyframes hcb-deal {
  from {
    opacity: 0;
    transform: translateX(-70px) rotate(-3deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hcb .team-accordion.visible:not(.slick-initialized) .team-panel:nth-child(2) {
  animation-delay: 90ms;
}
.hcb .team-accordion.visible:not(.slick-initialized) .team-panel:nth-child(3) {
  animation-delay: 180ms;
}
.hcb .team-accordion.visible:not(.slick-initialized) .team-panel:nth-child(4) {
  animation-delay: 270ms;
}
.hcb .team-accordion.visible:not(.slick-initialized) .team-panel:nth-child(5) {
  animation-delay: 360ms;
}
.hcb .team-accordion.visible:not(.slick-initialized) .team-panel:nth-child(6) {
  animation-delay: 450ms;
}

.hcb .team-panel:focus-visible {
  box-shadow: inset 0 0 0 3px var(--color-cyan);
}
.hcb .team-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0) 45%
  );
  background-repeat: no-repeat;
  background-size: 100% calc(100% + 4px);
  background-position: center center;
}
.hcb .team-panel-tab {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-top: var(--spacing-md);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--font-size-xs);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.25s;
}
.hcb .team-panel.active .team-panel-tab {
  opacity: 0;
}
.hcb .team-panel .team-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s 0.12s,
    transform 0.3s 0.12s;
}
.hcb .team-panel.active .team-meta {
  opacity: 1;
  transform: none;
}

.hcb .team-contact a {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-round);
  background: var(--color-cyan);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xxs);
  text-decoration: none;
  transition: var(--transition);
}
.hcb .team-contact a:hover {
  background: var(--color-pink);
}

.hcb .team-carousel .slick-arrow {
  position: absolute;
  top: auto;
  bottom: 0;
  transform: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #cfd8dc;
  border-radius: var(--radius-round);
  background: var(--color-white);
  cursor: pointer;
  z-index: 2;
  font-size: 0;
  transition: var(--transition);
}
.hcb .team-carousel .slick-arrow:hover {
  border-color: var(--color-cyan);
}
.hcb .team-carousel .slick-prev {
  left: 10px;
  right: auto;
}
.hcb .team-carousel .slick-next {
  left: 66px;
  right: auto;
}
.hcb .team-carousel .slick-arrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.hcb .team-carousel .slick-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2327D6FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}
.hcb .team-carousel .slick-next::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2327D6FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

.hcb .team-grid {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  padding-bottom: var(--spacing-sm);
}
.hcb .team-empty {
  color: var(--color-dark);
}

.hcb-header {
  font-family: var(--font-body);
  position: relative;
  z-index: 100;
  background: var(--color-white);
}
.hcb-header-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: 12px 30px;
}
.hcb-logo {
  flex: 0 0 auto;
}
.hcb-logo img {
  width: 181px;
  height: 58px;
  display: block;
}

.hcb-primary-nav {
  margin-left: auto;
}
.hcb-nav {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hcb-nav-item {
  position: static;
}
.hcb-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: var(--color-dark);
  font-weight: 600;
  font-size: var(--font-size-xs);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.hcb-nav-item:hover > .hcb-nav-link,
.hcb-nav-link:hover {
  color: var(--color-cyan);
}
.hcb-chev {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}

.hcb-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cyan);
  border: 2px solid var(--color-cyan);
  color: var(--color-white);
  font-weight: 700;
  border-radius: var(--radius-xl);
  padding: 5px 22px 5px 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.hcb-start-btn:hover {
  background: var(--color-white);
  color: var(--color-cyan);
  border-color: var(--color-cyan);
}
.hcb-start-plus {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: url(/wp-content/themes/holiday-claims-bureau/images/plus.svg)
    no-repeat center/contain;
  font-size: 0;
}

.hcb-action-bar {
  display: flex;
}
.hcb-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px;
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  text-decoration: none;
  transition: filter 0.2s;
}
.hcb-action:hover {
  filter: brightness(1.06);
  color: var(--color-white);
}
.hcb-action span,
.hcb-action a,
.hcb-action .mediahawkNumber9163 {
  color: var(--color-white) !important;
}
.hcb-action--green {
  background: var(--color-green);
}
.hcb-action--cyan {
  background: var(--color-cyan);
}
.hcb-action--pink {
  background: var(--color-pink);
}

.link-card-toggle,
.link-cards-badge-top,
.hcb-contact-bar,
.hcb-contact-foot,
.hcb-action-plus,
.hcb-footer-toggle,
.hcb-footer-col-home,
.hcb-panel-home,
.hcb-panel-bar {
  display: none;
}
.hcb-sub {
  display: contents;
}
.hcb-header-top {
  display: contents;
}

.hcb-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  z-index: 90;
}
.hcb-nav-item.has-panel:hover > .hcb-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hcb-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px 1fr 320px;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 30px;
  align-items: start;
}
.hcb-panel-inner:has(.hcb-details--flat) {
  grid-template-columns: 1fr 320px;
}

.hcb-groups {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hcb-group-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-align: left;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.hcb-group-tab:hover,
.hcb-group-tab.active {
  background: rgba(255, 255, 255, 0.14);
}
.hcb-group-tab .arrow {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-white);
  border-top: 2px solid var(--color-white);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.hcb-group-tab.active .arrow {
  opacity: 1;
}

.hcb-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}
.hcb-items.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.hcb-details--flat .hcb-items.active {
  grid-template-columns: 1fr 1fr;
  column-gap: var(--spacing-xl);
}
.hcb-items li a {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  padding: 9px 0;
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: opacity 0.2s;
}
.hcb-items li a:hover {
  opacity: 0.7;
}

.hcb-mega-cta h3 {
  color: var(--color-white);
  font-size: 26px;
  margin: 0 0 10px;
}
.hcb-mega-cta p {
  color: var(--color-white);
  font-size: var(--font-size-xxs);
  margin: 0 0 18px;
}
.hcb-mega-cta .mega-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  color: var(--color-white);
  transition: filter 0.2s;
}
.hcb-mega-cta .mega-btn:hover {
  filter: brightness(1.08);
  color: var(--color-white);
}
.hcb-mega-cta .mega-btn--cyan {
  background: var(--color-cyan);
}
.hcb-mega-cta .mega-btn--green {
  background: var(--color-green);
}
.hcb-mega-cta .mega-btn--pink {
  background: #c9143f;
}

.hcb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
}
.hcb-burger span {
  display: block;
  height: 3px;
  width: 26px;
  background: var(--color-pink);
  border-radius: 2px;
  transition: var(--transition);
}

.hcb-footer {
  background: var(--color-white);
  font-family: var(--font-body);
  color: var(--color-dark);
  padding: 0px;
}

.hcb-footer-logo {
  text-align: center;
  padding: var(--spacing-xl);
}
.hcb-footer-logo img {
  width: 300px;
  height: auto;
}
.hcb-footer-cta {
  max-width: var(--site-width);
  margin: 0 auto;
  background: var(--color-pink);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  font-size: var(--font-size-md);
}
.hcb-footer-cta-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
}
.hcb-footer-cta-title {
  text-align: center;
  color: var(--color-white);
  margin: 0 0 var(--spacing-sm);
  font-size: var(--font-size-xl);
}
.hcb-footer-cta .hcb-start-btn {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
}
.hcb-footer-cta .hcb-start-btn:hover {
  background: var(--color-white);
  color: var(--color-cyan);
}
.hcb-footer-speak p {
  margin: 0 0 6px;
}
.hcb-footer-phone {
  display: block;
  color: var(--color-white);
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
}
.hcb-footer-phone:hover {
  color: var(--color-cyan);
}
.hcb-footer-email {
  display: inline-block;
  color: var(--color-white);
  text-decoration: underline;
}
.hcb-footer-email:hover {
  color: var(--color-cyan);
}
.hcb-footer-cta-address {
  font-style: normal;
  font-size: var(--font-size-sm);
  line-height: 1.6;
  padding: var(--spacing-xl);
  margin: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hcb-footer-cols {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--page-inset);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-lg);
}
.hcb-footer-col-title {
  display: block;
  color: var(--color-cyan);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-decoration: none;
}
a.hcb-footer-col-title:hover {
  color: var(--color-pink);
}
.hcb-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hcb-footer-col li a {
  display: block;
  color: var(--color-dark);
  text-decoration: none;
  padding: 5px 0;
  font-size: var(--font-size-xxs);
}
.hcb-footer-col li a:hover {
  color: var(--color-pink);
}

.hcb-footer-bottom {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 var(--page-inset) var(--spacing-xl);
}
.hcb-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px var(--spacing-md);
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  margin-bottom: var(--spacing-lg);
}
.hcb-footer-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px var(--spacing-md);
}
.hcb-footer-group a + a::before {
  content: "|";
  margin-right: var(--spacing-sm);
  color: var(--color-grey);
}
.hcb-footer-heading {
  color: var(--color-pink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--font-size-xxs);
  padding-right: var(--spacing-md);
}
.hcb-footer-bar a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: var(--font-size-xxs);
}
.hcb-footer-bar a:hover {
  color: var(--color-pink);
}
.hcb-footer-legal {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}
.hcb-footer-sra {
  flex: 0 0 170px;
  max-width: 170px;
}
.hcb-footer-legal-text {
  font-size: var(--font-size-xxs);
  color: #8a8a8a;
  margin: 0;
  line-height: 1.6;
}

.hcb .split-2col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--spacing-xxl);
  align-items: start;
}
.hcb .split-2col > * {
  min-width: 0;
}

.hcb .claim-category .split-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: 60px var(--folder-inset);
}

.hcb .split-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.hcb .split-left h2 {
  margin: 0;
}
.hcb .split-left .dm-btn {
  margin-top: var(--spacing-sm);
}
.hcb .split-left .masked,
.hcb .split-left .masked-folder {
  margin-bottom: var(--spacing-sm);
}

.hcb .hcb-acc {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.hcb .hcb-acc-item {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.hcb .hcb-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background: none;
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}
.hcb .hcb-acc--static .hcb-acc-head {
  cursor: default;
}
.hcb .hcb-acc-head .acc-title {
  flex: 1;
  color: var(--color-pink);
  font-weight: 700;
  font-size: var(--font-size-md);
}
.hcb .how-it-works-section .hcb-acc-head .acc-title {
  font-size: var(--font-size-lg);
}

.hcb .hcb-acc-head .acc-num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-cyan);
  color: var(--color-pink);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hcb .hcb-acc-head .acc-chev {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--color-cyan);
  border-bottom: 2px solid var(--color-cyan);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.hcb .hcb-acc-item.open .acc-chev {
  transform: rotate(-135deg);
}
.hcb .hcb-acc-head .acc-plus {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url(/wp-content/themes/holiday-claims-bureau/images/plus-blue.svg)
    no-repeat center/contain;
}
.hcb .hcb-acc-item.open .acc-plus {
  background-image: url(/wp-content/themes/holiday-claims-bureau/images/minus-blue.svg);
}
.hcb .hcb-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hcb .hcb-acc-body-inner {
  overflow: hidden;
  min-height: 0;
  color: var(--color-dark);
  line-height: 1.6;
  padding: 0 var(--spacing-lg);
}
.hcb .hcb-acc-item.open .hcb-acc-body {
  grid-template-rows: 1fr;
}
.hcb .hcb-acc-item.open .hcb-acc-body-inner {
  padding-bottom: var(--spacing-md);
}

.hcb .hcb-acc--plain {
  gap: 0;
}
.hcb .hcb-acc--plain .hcb-acc-item {
  background: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--color-grey);
}
.hcb .hcb-acc--plain .hcb-acc-head {
  padding: var(--spacing-md) 0;
}
.hcb .hcb-acc--plain .hcb-acc-body-inner {
  padding-left: 0;
  padding-right: 0;
}

.hcb .info-accordion {
  padding: var(--spacing-xxl) 0;
}
.hcb .info-accordion .section-head {
  margin-bottom: var(--spacing-xl);
  text-align: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.hcb .hcb-acc--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--spacing-xl);
  align-items: start;
}
.hcb .hcb-acc--cols .hcb-acc-item:nth-child(-n + 2) .hcb-acc-head {
  padding-top: 0;
}

.hcb .claim-category .masked,
.hcb .claim-category .masked-folder {
  width: 100%;
  max-width: 420px;
}

.hcb .claim-cat-head {
  position: relative;
  container-type: inline-size;
  z-index: 0;
  margin-bottom: var(--spacing-xl);
}
.hcb .claim-cat-img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hcb .claim-cat-title {
  position: relative;
  z-index: 2;
  margin: -107px 0 0;
  max-width: 53%;
  padding: 20px var(--folder-inset-right) 20px var(--folder-inset);
  font-size: clamp(26px, 3.4cqw, 42px);
  color: var(--color-dark);
}
@container (max-width: 1050px) {
  .hcb .claim-cat-title {
    max-width: 70%;
  }
}
@container (max-width: 570px) {
  .hcb .claim-cat-title {
    max-width: 85%;
  }
}
.hcb .claim-cat-title span {
  position: relative;
  z-index: 1;
  display: block;
}
.hcb .claim-cat-head::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -4%;
  top: 73px;
  width: 56%;
  height: 697px;
  background: var(--folder-panel-bg, var(--color-white));
  -webkit-mask: url(/wp-content/themes/holiday-claims-bureau/images/folder-mask.svg)
    no-repeat top center / 100% 100%;
  mask: url(/wp-content/themes/holiday-claims-bureau/images/folder-mask.svg)
    no-repeat top center / 100% 100%;
}
.hcb .claim-cat-head--untitled::after {
  content: none;
}

.hcb .claim-cat-body {
  position: relative;
  z-index: 1;
}
.hcb .claim-cat-body .split-left {
  padding-top: 0;
}

.hcb .claim-cat-prose {
  max-width: 840px;
  padding: 0 var(--folder-inset);
}
.hcb .claim-cat-prose > *:first-child {
  margin-top: 0;
}
.hcb .claim-cat-prose > *:last-child {
  margin-bottom: 0;
}
.hcb .claim-cat-prose .claim-cat-lead {
  font-size: var(--font-size-md);
  line-height: 1.5;
}

.hcb .claim-cat-prose--2col {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--spacing-xxl);
}
.hcb .claim-cat-prose--2col > .claim-cat-col {
  min-width: 0;
}
.hcb .claim-cat-prose--2col > .claim-cat-lead {
  grid-column: 1 / -1;
}
.hcb .claim-cat-prose--2col > .dm-btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: var(--spacing-lg);
}
.hcb .claim-cat-prose--wide {
  max-width: none;
}
.hcb .claim-cat-prose--wide ul,
.hcb .claim-cat-prose--wide ol {
  column-count: 2;
  column-gap: var(--spacing-xxl);
}
.hcb .claim-cat-prose--wide li {
  break-inside: avoid;
}

.hcb .claim-cat-col > *:first-child {
  margin-top: 0;
}
.hcb .claim-cat-col > *:last-child {
  margin-bottom: 0;
}
.hcb .claim-cat-head--untitled {
  margin-bottom: 0;
}
.hcb .claim-cat-prose a:not(.dm-btn):hover,
.hcb .claim-cat-prose a:not(.dm-btn):focus,
.hcb .claim-cat-prose a:not(.dm-btn):active {
  color: var(--color-pink);
}

.hcb .claim-intro {
  text-align: center;
  padding-bottom: 0;
}
.hcb .claim-intro h2 {
  margin: 0 auto var(--spacing-sm);
}
.hcb .claim-intro p {
  max-width: 760px;
  margin: 0 auto;
}

.hcb .link-cards {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow-x: clip;
}
.hcb .link-cards .section-head {
  max-width: 66%;
}
.hcb .link-cards .container {
  position: relative;
}
.hcb .link-card-badge-cell {
  position: relative;
  display: flex;
}
.hcb .link-card-badge-cell > .link-card {
  flex: 1;
}
.hcb .link-cards-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--glow-size, 460px);
  height: var(--glow-size, 460px);
  margin-top: calc(var(--glow-size, 460px) / -2 + 40px);
  margin-left: calc(var(--glow-size, 460px) / -2);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(39, 214, 255, 0.3),
    rgba(39, 214, 255, 0) 62%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
}
.hcb .link-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  align-items: stretch;
}
.hcb .link-card {
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
}
.hcb .link-card--badge {
  position: relative;
  padding-top: calc(var(--spacing-lg) + 110px);
}
.hcb .link-card--pink {
  background: var(--color-pink);
  color: var(--color-white);
}
.hcb .link-card--light {
  background: var(--color-light-blue);
  color: var(--color-dark);
}
.hcb .link-card-title {
  margin: 0 0 var(--spacing-sm);
  min-height: 2.3em;
}
.hcb .link-card--pink .link-card-title {
  color: var(--color-white);
}
.hcb .link-card--light .link-card-title {
  color: var(--color-pink);
}
.hcb .link-card-intro {
  font-size: var(--font-size-xs);
  margin: 0 0 var(--spacing-md);
}
.hcb .link-card-links {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.hcb .link-card-links li {
  color: inherit;
  padding: 0;
}
.hcb .link-card ul.link-card-links li::before {
  content: none;
  display: none;
}
.hcb .link-pill {
  display: block;
  background: var(--color-white);
  color: var(--color-pink);
  border-radius: var(--radius-md);
  padding: 15px 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition:
    background 0.2s,
    color 0.2s;
}
.hcb .link-card--light .link-pill {
  background: var(--color-cyan);
  color: var(--color-white);
}
.hcb .link-pill:hover {
  background: var(--color-dark);
  color: var(--color-white);
}
.hcb .link-cards > .container > .dm-btn {
  display: table;
  margin: var(--spacing-xl) auto 0;
}
.hcb .nwnf-badge {
  position: absolute;
  top: 0;
  left: 50%;
  width: 90%;
  height: auto;
  aspect-ratio: 195 / 119.98;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hcb .stats-section {
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
}
.hcb .stats-section h2 {
  max-width: 800px;
}

.hcb .stats-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  padding-top: var(--spacing-xl);
  align-items: stretch;
}
.hcb .stats-col {
  display: flex;
  flex-direction: column;
}
.hcb .stat-card {
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  text-align: center;
}
.hcb .stat-card--pink {
  background: var(--color-pink);
  flex: 1 1 auto;
}
.hcb .stat-card--stack {
  justify-content: space-evenly;
  gap: var(--spacing-xl);
}
.hcb .stat-block {
  display: flex;
  flex-direction: column;
}
.hcb .stat-block + .stat-block {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: var(--spacing-xl);
}
.hcb .stat-card--light {
  background: #e3f5fc;
  color: var(--color-pink);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  border: 2px solid var(--color-cyan);
}
.hcb .stat-value {
  font-weight: 800;
  font-size: 55px;
  line-height: 1;
}
.hcb .stat-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-top: var(--spacing-sm);
}
.hcb .stat-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  flex: 1 1 auto;
}
.hcb .stat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hcb .stat-card--overlap,
.hcb .stat-photo--overlap {
  margin-top: calc(-1 * 50px);
}

.hcb .final-cta {
  background: var(--color-pink);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}
.hcb .final-cta h2 {
  color: var(--color-white);
}
.hcb .final-cta .dm-btn {
  display: table;
  margin: var(--spacing-lg) auto;
}
.hcb .final-cta-call {
  margin: var(--spacing-md) 0 0;
}
.hcb .final-cta-phone {
  color: var(--color-white);
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
}
.hcb .final-cta-email a {
  color: var(--color-white);
}
.hcb .final-cta-address {
  opacity: 0.85;
  font-size: var(--font-size-xxs);
  margin-top: var(--spacing-sm);
}

.hcb .team-profile {
  background: var(--color-light-blue);
  padding: var(--spacing-xxl) 0;
}
.hcb .team-back,
.hcb .team-grid-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.hcb .team-back::before,
.hcb .team-grid-link::after {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h13.2l-4.6-4.6L14 5l7 7-7 7-1.4-1.4 4.6-4.6H4z'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h13.2l-4.6-4.6L14 5l7 7-7 7-1.4-1.4 4.6-4.6H4z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}
.hcb .team-back::before {
  transform: scaleX(-1);
}

.hcb .team-back {
  margin-bottom: var(--spacing-lg);
  color: var(--color-pink);
  font-weight: 700;
  text-decoration: none;
}
.hcb .team-back:hover {
  text-decoration: underline;
}
.hcb .team-profile-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}
.hcb .team-profile-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
}
.hcb .team-profile-info h1 {
  margin: 0 0 6px;
}
.hcb .team-role {
  color: var(--color-pink);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 4px;
}
.hcb .team-exp {
  color: var(--color-dark);
  margin: 0 0 var(--spacing-md);
}
.hcb .team-profile-contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}
.hcb .team-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-cyan);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.hcb .team-ic:hover {
  background: var(--color-pink);
}
.hcb .team-specs-title {
  font-family: var(--font-accent);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 var(--spacing-sm);
}
.hcb .team-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hcb .team-spec-tag {
  background: var(--color-white);
  border: 1px solid var(--color-cyan);
  color: var(--color-dark);
  border-radius: var(--radius-xl);
  padding: 6px 14px;
  font-size: var(--font-size-xxs);
  font-weight: 600;
}

.hcb .team-body {
  padding: var(--spacing-xxl) 0;
}
.hcb .team-body-cols {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--spacing-xxl);
  align-items: start;
}
.hcb .team-bio p {
  margin: 0 0 var(--spacing-md);
}
.hcb .team-bio h3 {
  margin: var(--spacing-lg) 0 var(--spacing-sm);
}
.hcb .team-press {
  padding-left: 18px;
  margin: 0;
}
.hcb .team-press li {
  margin-bottom: 6px;
}
.hcb .team-press a {
  color: var(--color-cyan);
  word-break: break-word;
}
.hcb .team-quote {
  border-left: 4px solid var(--color-pink);
  padding: 4px 0 4px 20px;
  margin: 0 0 var(--spacing-lg);
  font-family: var(--font-script);
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-dark);
}
.hcb .team-cta-card {
  background: var(--color-light-blue);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  position: sticky;
  top: 110px;
}
.hcb .team-cta-card h3 {
  margin: 0 0 var(--spacing-sm);
}
.hcb .team-cta-card p {
  margin: 0 0 var(--spacing-md);
}

.hcb .team-meta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}
.hcb .team-profile-link {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: var(--font-size-xxs);
  text-decoration: none;
  white-space: nowrap;
}
.hcb .team-profile-link:hover {
  color: var(--color-pink);
}

.hcb .team-archive-head {
  background: var(--color-light-blue);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}
.hcb .team-archive-head h1 {
  margin: 0 0 var(--spacing-sm);
}
.hcb .team-archive-head p {
  max-width: 720px;
  margin: 0 auto;
}
.hcb .team-archive-grid-sec {
  padding: var(--spacing-xxl) 0;
}
.hcb .team-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}
.hcb .team-grid-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: var(--color-dark);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out,
    box-shadow 0.25s;
}
.hcb .team-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.hcb .team-grid-photo {
  display: block;
  aspect-ratio: 4 / 5;
  background-color: #dfe6ea;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hcb .team-grid-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--spacing-lg);
  flex: 1 1 auto;
}
.hcb .team-grid-body .name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
}
.hcb .team-grid-body .role {
  color: var(--color-pink);
  font-weight: 700;
}
.hcb .team-grid-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0;
}
.hcb .team-grid-link {
  margin-top: auto;
  color: var(--color-cyan);
  font-weight: 700;
}

@media only screen and (max-width: 1439px) {
  .hcb-header-bar {
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }
  .hcb-nav {
    gap: 0;
  }
  .hcb-nav-link {
    padding: 10px 8px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1279px) {
  .hcb-burger {
    display: flex;
  }
  body.hcb-nav-open .hcb-primary-nav {
    transform: translateX(0);
  }
  .hcb-nav {
    flex-direction: column;
    gap: 0;
  }
  .hcb-panel-inner,
  .hcb-panel-inner:has(.hcb-details--flat) {
    display: block;
    max-width: none;
    padding: 0;
    gap: 0;
  }

  .hcb-mega-cta {
    display: none;
  }
  .hcb-action {
    font-size: var(--font-size-xs);
  }

  .hcb-contact-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 44px;
    border: 0;
    border-radius: 0;
    background: var(--color-pink);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--font-size-xsm);
    font-weight: 700;
    cursor: pointer;
  }
  .hcb-bar-chev {
    position: absolute;
    right: 20px;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
  }

  .hcb-header-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0 0 10px;
  }
  .hcb-header-top {
    display: flex;
    position: relative;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--color-white);
  }
  body.hcb-stuck .hcb-header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 310;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  }
  body.hcb-stuck .hcb-header-bar {
    padding-top: var(--hcb-header-top-h, 78px);
  }
  .hcb-burger {
    position: absolute;
    left: 12px;
    top: 50%;
    height: 42px;
    margin-left: 0;
    transform: translateY(-50%);
  }
  .hcb-burger span {
    background: var(--color-dark);
  }
  .hcb-logo {
    margin: 0;
  }
  .hcb-start-btn {
    position: relative;
    flex: 0 0 calc(100% - 32px);
    justify-content: center;
    margin: 10px 16px 0;
    padding: 9px 22px;
  }
  .hcb-start-btn .hcb-start-plus {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hcb-action-bar,
  .hcb-primary-nav {
    position: fixed;
    top: var(--hcb-panel-top, 122px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .hcb-action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    background: var(--color-pink);
  }
  body.hcb-contact-open .hcb-action-bar {
    transform: translateX(0);
  }

  body.hcb-contact-open .hcb-bar-chev {
    transform: rotate(45deg);
  }
  body.hcb-nav-open .hcb-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.hcb-nav-open .hcb-burger span:nth-child(2) {
    opacity: 0;
  }
  body.hcb-nav-open .hcb-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hcb-action {
    flex: 0 0 auto;
    margin: 0 var(--spacing-lg);
    padding: 13px;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    font-size: var(--font-size-xsm);
  }
  .hcb-action--cyan {
    order: 1;
    position: relative;
    justify-content: center;
    margin-top: var(--spacing-lg);
  }
  .hcb-action--green {
    order: 2;
  }
  .hcb-action--pink {
    order: 3;
    background: transparent;
    border-color: var(--color-white);
  }
  .hcb-action-plus {
    display: block;
    position: absolute;
    left: 6px;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background: url(/wp-content/themes/holiday-claims-bureau/images/plus.svg)
      no-repeat center/contain;
  }
  .hcb-contact-foot {
    order: 4;
    display: block;
    margin-top: auto;
    padding: var(--spacing-xl) var(--spacing-lg) 0;
    text-align: center;
    color: var(--color-white);
  }
  .hcb-contact-foot a {
    display: block;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
  }
  .hcb-contact-foot address {
    margin: 0;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    font-style: normal;
    line-height: 1.5;
  }

  .hcb-primary-nav {
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: var(--color-pink);
    box-shadow: none;
  }

  .hcb-nav,
  .hcb-nav-item.has-panel > .hcb-panel,
  .hcb-sub {
    position: fixed;
    inset: 0;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 0 var(--spacing-xl);
    background: var(--color-pink);
    box-shadow: none;
  }
  .hcb-nav {
    z-index: 1;
  }
  .hcb-nav-item.has-panel > .hcb-panel,
  .hcb-sub {
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 0.3s ease,
      visibility 0.3s;
  }
  .hcb-nav-item.has-panel > .hcb-panel {
    z-index: 2;
  }
  .hcb-sub {
    z-index: 3;
  }
  .hcb-nav-item.has-panel:hover > .hcb-panel {
    visibility: hidden;
    transform: translateX(100%);
  }
  .hcb-nav-item.has-panel.open > .hcb-panel,
  .hcb-sub.drill {
    visibility: visible;
    transform: translateX(0);
  }

  .hcb-panel-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    width: 100%;
    margin: 0;
    padding: 16px var(--spacing-lg);
    background: rgba(0, 0, 0, 0.14);
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    line-height: 24px;
    text-align: left;
    cursor: pointer;
  }
  .hcb-back-icon {
    flex: 0 0 auto;
    position: relative;
    width: 20px;
    height: 20px;
  }
  .hcb-back-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: translate(-30%, -50%) rotate(45deg);
  }
  .hcb-screen-title {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-sm);
    line-height: 24px;
  }

  .hcb-groups {
    gap: 0;
  }
  .hcb-group-tab {
    margin: 0 var(--spacing-lg);
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  .hcb-group-tab:hover,
  .hcb-group-tab.active {
    background: none;
  }

  .hcb-sub .hcb-items,
  .hcb-details--flat .hcb-items.active {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 var(--spacing-lg);
  }

  .hcb-panel-home,
  .hcb-group-tab,
  .hcb-sub .hcb-items li a,
  .hcb-details--flat .hcb-items li a {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: var(--font-size-xs);
    line-height: 24px;
  }
  .hcb-nav-link {
    margin: 0 var(--spacing-lg);
    padding: 16px 0;
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  .hcb-nav-item:hover > .hcb-nav-link,
  .hcb-nav-link:hover {
    color: var(--color-white);
    opacity: 0.75;
  }
  .hcb-nav-link .hcb-chev {
    margin: 0 0 0 auto;
    width: 9px;
    height: 9px;
    transform: rotate(-45deg);
  }
  .hcb-panel-home {
    display: block;
    margin: 0 var(--spacing-lg);
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hcb-group-tab .arrow {
    opacity: 1;
  }

  html.hcb-panel-open,
  body.hcb-panel-open {
    overflow: hidden;
  }
  body.hcb-panel-open .hcb-contact-bar,
  body.hcb-panel-open .hcb-header-top {
    touch-action: none;
  }
}

@media only screen and (min-width: 700px) and (max-width: 1279px) {
  .hcb-header-bar > .hcb-start-btn {
    position: absolute;
    right: 16px;
    top: calc(var(--hcb-header-top-h, 78px) / 2);
    transform: translateY(-50%);
    flex: 0 0 auto;
    width: auto;
    align-self: auto;
    margin: 0;
    padding: 5px 22px 5px 5px;
    z-index: 311;
  }
  .hcb-header-bar > .hcb-start-btn .hcb-start-plus {
    position: static;
    transform: none;
  }
  .hcb-header-bar {
    padding-bottom: 0;
  }
  body.hcb-stuck .hcb-header-bar > .hcb-start-btn {
    position: fixed;
  }
}

@media only screen and (max-width: 991px) {
  .hcb section.information {
    background-position:
      center 324px,
      center 324px;
  }

  .hcb .success-news {
    background-image:
      linear-gradient(to top, var(--straddle-ground) 265px, transparent 265px),
      url(/wp-content/uploads/2025/12/news-bg.webp);
  }

  .hcb .numbered-checklist-inner {
    display: block;
  }
  .hcb .numbered-checklist-copy {
    max-width: 100%;
  }
  .hcb .numbered-checklist-photo-wrap {
    width: 100%;
    margin-left: 0;
    margin-bottom: var(--spacing-lg);
  }
  .hcb .numbered-checklist {
    margin-bottom: 0;
  }

  .hcb .hero-inner.has-masked-photo {
    display: block;
  }
  .hcb .hero-inner.has-masked-photo .hero-photo-col {
    max-width: 100%;
    margin-top: var(--spacing-lg);
  }
  .hcb.hcb-post #page-banner.hero-banner {
    padding-top: var(--spacing-xl);
  }

  .hcb .reviews.slim.has-author {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  .hcb .reviews.slim .rs-rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .hcb .reviews.slim .rs-rating .rs-logo,
  .hcb .reviews.slim .rs-rating .rs-stars {
    order: 0;
  }
  .hcb .reviews.slim .rs-rating::after {
    content: "";
    flex: 0 0 100%;
    height: 0;
    order: 1;
  }
  .hcb .reviews.slim .rs-rating strong,
  .hcb .reviews.slim .rs-rating span {
    order: 2;
  }
  .hcb .rs-author {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hcb .reviews.slim.has-author::before,
  .hcb-post .reviews.slim.has-author::before {
    width: auto;
    height: 1px;
    align-self: stretch;
    margin-left: 0;
    margin-right: 0;
  }
  .hcb .banner-rule {
    max-width: 100%;
  }

  .hcb .claim-cat-prose--2col {
    display: block;
  }
  .hcb .claim-cat-col + .claim-cat-col {
    margin-top: var(--spacing-lg);
  }

  .hcb .dm-btn,
  .hcb-start-btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  .hcb .buttons,
  .hcb .section-head.has-btn {
    flex-direction: column;
    align-items: stretch;
  }
  .hcb .cta-card-action {
    width: 100%;
    justify-self: stretch;
  }
  .hcb .cta-card {
    margin-top: 60px;
    padding: 80px var(--spacing-md) var(--spacing-xl);
  }
  .hcb .cta-card-ring {
    width: 120px;
    height: 120px;
    margin-left: -60px;
  }
  .hcb .on-palm-bg .cta-card-ring,
  .hcb .cta-card--balloon .cta-card-ring {
    width: 66%;
    margin-left: -33%;
    top: auto;
    bottom: calc(100% - 168px);
  }
  .hcb .on-palm-bg .cta-card,
  .hcb .cta-card--balloon .cta-card {
    padding-top: 116px;
  }
  .hcb .cta-card-section.on-palm-bg,
  .hcb .cta-card-section.cta-card--balloon {
    padding-top: 0;
  }
  .hcb .cta-card-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .hcb .section-head.feature-list-head {
    gap: var(--spacing-lg);
  }
  .hcb .section-head.feature-list-head > h2 {
    margin-bottom: 0;
  }
  .hcb .success-head h2 {
    margin-bottom: var(--spacing-lg);
  }

  .hcb .claim-category .split-left {
    padding: var(--spacing-lg) 0;
  }

  .hcb .reviews-grid,
  .hcb .feature-list:not(.claim-routes) .feature-rows {
    display: block;
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .hcb .reviews-grid .slick-track,
  .hcb .success-carousel .slick-track,
  .hcb .team-accordion .slick-track,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-track {
    display: flex;
    align-items: stretch;
  }
  .hcb .reviews-grid .slick-slide,
  .hcb .success-carousel .slick-slide,
  .hcb .team-accordion .slick-slide,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-slide {
    height: auto;
  }
  .hcb .reviews-grid .slick-arrow,
  .hcb .success-carousel .slick-arrow,
  .hcb .team-accordion .slick-arrow,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-arrow {
    position: absolute;
    z-index: 2;
    width: 10%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: 0;
    cursor: pointer;
  }
  .hcb .reviews-grid .slick-prev,
  .hcb .success-carousel .slick-prev,
  .hcb .team-accordion .slick-prev,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-prev {
    left: 0;
    right: auto;
  }
  .hcb .reviews-grid .slick-next,
  .hcb .success-carousel .slick-next,
  .hcb .team-accordion .slick-next,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-next {
    right: 0;
    left: auto;
  }
  .hcb .reviews-grid .slick-arrow::before,
  .hcb .success-carousel .slick-arrow::before,
  .hcb .team-accordion .slick-arrow::before,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-right: 3px solid var(--color-pink);
    border-bottom: 3px solid var(--color-pink);
    opacity: 1;
  }
  .hcb .reviews-grid .slick-prev::before,
  .hcb .success-carousel .slick-prev::before,
  .hcb .team-accordion .slick-prev::before,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-prev::before {
    transform: translate(-30%, -50%) rotate(135deg);
  }
  .hcb .reviews-grid .slick-next::before,
  .hcb .success-carousel .slick-next::before,
  .hcb .team-accordion .slick-next::before,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-next::before {
    transform: translate(-70%, -50%) rotate(-45deg);
  }

  .hcb .claim-routes .feature-list-head {
    display: contents;
  }
  .hcb .claim-routes .feature-rows {
    order: 1;
  }
  .hcb .claim-routes .buttons {
    order: 2;
  }
  .hcb .claim-routes .feature-title {
    position: relative;
    margin: 0;
    padding-right: 34px;
    cursor: pointer;
  }
  .hcb .claim-routes .feature-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background: url(/wp-content/themes/holiday-claims-bureau/images/plus-blue.svg)
      no-repeat center/contain;
  }
  .hcb .claim-routes .feature-row.open .feature-title::after {
    background-image: url(/wp-content/themes/holiday-claims-bureau/images/minus-blue.svg);
  }
  .hcb .claim-routes .feature-row p {
    display: none;
  }
  .hcb .claim-routes .feature-row .feature-link {
    display: none !important;
  }
  .hcb .claim-routes .feature-row.open .feature-link {
    display: flex !important;
  }
  .hcb .claim-routes .feature-row.open p {
    display: block;
    margin-top: var(--spacing-sm);
  }

  .hcb .link-cards-badge-top {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
  }
  .hcb .link-cards-badge-top .nwnf-badge {
    position: static;
    transform: none;
    width: 90%;
  }
  .hcb .link-cards-badge-top .link-cards-glow {
    top: 50%;
    left: 50%;
    margin-top: calc(var(--glow-size, 300px) / -2);
    margin-left: calc(var(--glow-size, 300px) / -2);
  }
  .hcb .link-card-badge-cell {
    margin-top: 0;
  }
  .hcb .link-card-title {
    min-height: 0;
    margin-bottom: var(--spacing-md);
  }
  .hcb .link-card--badge {
    padding-top: var(--spacing-lg);
  }

  .hcb .link-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hcb .link-card-toggle {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: var(--spacing-md);
    padding: 14px 56px 14px 18px;
    border: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    color: var(--color-pink);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }
  .hcb .link-card-toggle::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(245, 33, 83, 0.12);
  }
  .hcb .link-card-toggle::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-pink);
    border-bottom: 2px solid var(--color-pink);
    transform: translate(50%, -75%) rotate(45deg);
  }
  .hcb .link-card-toggle.open::after {
    transform: translate(50%, -25%) rotate(-135deg);
  }
  .hcb .link-card-links {
    display: none;
  }
  .hcb .link-card-links.open {
    display: block;
    margin-top: var(--spacing-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .hcb .link-card-links.open .link-pill {
    border-radius: 0;
    box-shadow: inset 0 -1px 0 rgba(245, 33, 83, 0.12);
  }
  .hcb .link-card-links.open li:last-child .link-pill {
    box-shadow: none;
  }

  .hcb .meet-team .feature-list-head {
    display: contents;
  }
  .hcb .meet-team .team-accordion {
    order: 1;
  }
  .hcb .meet-team .buttons {
    order: 2;
  }

  .hcb .featured-in {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    text-align: center;
  }
  .hcb .featured-in > span {
    grid-column: 1 / -1;
  }
  .hcb .featured-in img {
    max-width: 100%;
    max-height: 34px;
  }

  .hcb .reviews:not(.slim) .rs-rating {
    flex-wrap: wrap;
    gap: var(--spacing-sm) 10px;
    font-size: 20px;
  }
  .hcb .reviews:not(.slim) .rs-rating .rs-logo {
    flex: 0 0 100%;
  }
  .hcb .reviews:not(.slim) .rs-rating .rs-logo img {
    height: 32px;
  }
  .hcb .reviews:not(.slim) .rs-rating .rs-stars {
    height: 26px;
  }

  .hcb .team-accordion {
    display: block;
    height: auto;
  }
  .hcb .team-accordion .team-panel {
    flex: none;
    width: 100%;
    height: 420px;
  }
  .hcb .team-accordion .team-panel-tab {
    display: none;
  }
  .hcb .team-accordion .team-meta {
    opacity: 1;
    transform: none;
  }
  .hcb .team-accordion .slick-dots {
    margin-top: var(--spacing-md);
  }

  .hcb .reviews-grid,
  .hcb .success-carousel,
  .hcb .team-accordion {
    min-width: 0;
    padding-left: 10%;
    padding-right: 10%;
  }
  .hcb .reviews-grid .slick-arrow,
  .hcb .success-carousel .slick-arrow,
  .hcb .team-accordion .slick-arrow,
  .hcb .team-accordion .slick-arrow {
    top: 50%;
    height: 48px;
    transform: translateY(-50%);
  }

  .hcb .feature-list:not(.claim-routes) .feature-img {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .hcb .feature-list:not(.claim-routes) .feature-rows .feature-row {
    padding-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-arrow {
    top: 0;
    bottom: auto;
    height: auto;
    aspect-ratio: 5 / 38;
    transform: none;
  }

  .hcb #page-banner .center {
    text-align: left;
  }

  .hcb .hero-inner.has-form {
    grid-template-columns: 1fr;
  }

  .hcb .text-image .container > .row {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }
  .hcb .text-image .col-md-8 {
    display: contents;
  }
  .hcb .text-image .col-md-4 {
    grid-row: 1;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
  .hcb .text-image .col-md-8 > h2 {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: var(--spacing-lg);
  }
  .hcb .text-image .col-md-8 > *:not(h2) {
    grid-column: 1 / -1;
  }
  .hcb .text-image .col-md-4 {
    grid-column: 2;
  }
  .hcb .text-image .image.masked {
    aspect-ratio: 1 / 1;
    width: var(--ti-mobile-img, 123%);
    max-width: none;
    position: relative;
    top: calc(var(--ti-mobile-lift, 24px) * -1);
  }
  .hcb .text-image {
    overflow-x: clip;
    overflow-y: visible;
  }

  .hcb .hcb-acc-head .acc-title,
  .hcb .faq-block-item .question,
  .hcb .faq-block-item .question span {
    line-height: 1.3;
  }

  .hcb .claim-types .pink-grid > * {
    flex-basis: calc(50% - var(--spacing-md) / 2);
  }

  .hcb .icon-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hcb .hcb-acc--cols {
    grid-template-columns: 1fr;
  }
  .hcb .hcb-acc--cols .hcb-acc-item:nth-child(2) .hcb-acc-head {
    padding-top: var(--spacing-md);
  }

  .hcb .pink-bg.split .pill-head {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .hcb .cta-card--2col .cta-card-cols,
  .hcb .cta-card--3col .cta-card-cols {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-lg);
    width: 100%;
  }
  .hcb .cta-divider {
    display: none;
  }
  .hcb .cta-card-call,
  .hcb .cta-card-phone {
    align-items: center;
  }
  .hcb .featured-in {
    flex-wrap: wrap;
    justify-content: center;
    font-size: var(--font-size-xl);
  }

  .hcb .success-news {
    background-position:
      center top,
      left center;
  }

  :root {
    --font-size-sm: 16px;
    --spacing-xl: 30px;
    --spacing-lg: 20px;
    --spacing-md: 15px;
  }

  .hcb .wpcf7-spinner {
    display: none;
  }
  .hcb form.submitting .wpcf7-spinner {
    display: inline-block;
  }

  .hcb .hero-form-text {
    display: none;
  }

  .hcb #page-banner {
    height: auto;
  }

  .hcb .container > .row {
    display: flex;
    flex-direction: column;
  }
  .hcb .sticky-col {
    position: static;
  }

  .hcb .details .col-md-4,
  .hcb #main-content .col-md-4 {
    order: -1;
    text-align: center;
  }

  .hcb .google-review-container img {
    width: 80px;
    margin: 0 var(--spacing-sm);
  }
  .hcb .google-review-container .ti-widget.ti-goog .ti-review-content {
    height: 18px !important;
  }
  .hcb .google-review-container .ti-widget.ti-goog .ti-controls {
    right: 10px;
  }
  .hcb .google-review-container .ti-widget.ti-goog .ti-review-content,
  .hcb
    .google-review-container
    .ti-widget.ti-goog
    .ti-profile-details
    .ti-name {
    font-size: var(--font-size-sm);
  }
  .hcb .news-col {
    margin-bottom: var(--spacing-md);
  }
  .hcb .featured-in {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hcb .grid2 .center:first-child {
    border-right: none;
  }

  .hcb .image {
    max-width: 60%;
    padding-bottom: var(--spacing-md);
  }
  .hcb .post-box img {
    max-width: 120px;
    object-fit: contain;
    object-position: top;
  }
  .hcb .post-box .inner {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-sm);
  }
  .hcb .post-box .title {
    height: auto;
    text-align: left;
    padding: 0 var(--spacing-sm);
  }

  .hcb .reviews {
    grid-template-columns: 1fr;
  }
  .hcb .feature-list-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  .hcb .feature-list-head {
    position: static;
  }
  .hcb .feature-row {
    grid-template-columns: 96px 1fr;
    gap: var(--spacing-md);
    align-items: center;
  }
  .hcb .success-grid {
    grid-template-columns: 1fr;
  }
  .hcb .usp-bar .container {
    display: grid;
    justify-content: center;
    justify-items: center;
  }
  .hcb .usp-bar .usp-item,
  .hcb .usp-bar .usp-item.visible {
    grid-area: 1 / 1;
    opacity: 0;
    text-align: center;
    transition: opacity 0.6s ease;
  }
  .hcb .usp-bar .usp-item.usp-active,
  .hcb .usp-bar .usp-item.visible.usp-active {
    opacity: 1;
  }

  .hcb #page-banner.hero-banner {
    background-image: none !important;
    padding-top: 0;
  }
  .hcb .hero-inner.has-form {
    gap: 0;
  }
  .hcb .hero-inner.has-form .hero-copy {
    position: relative;
    padding-top: var(--spacing-xxl);
  }
  .hcb .hero-inner.has-form .hero-copy::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: -70px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--hero-photo);
    background-size: cover;
    background-position:
      center,
      left center;
    background-repeat: no-repeat;
  }
  .hcb .hero-inner.has-form .hero-copy > * {
    position: relative;
    z-index: 1;
  }

  /* ⚠️ THE PLAIN HERO NEEDS THE SAME TREATMENT OR IT HAS NO PHOTOGRAPH AT ALL.
     Above, `#page-banner.hero-banner` drops the background image on mobile and
     the rules before this put it back as a ::before on the copy column. Every
     one of them is keyed to `.hero-inner.has-form`, and a hero WITHOUT a form
     is not `.hero-inner` at all: it is `.center.maxwidth` (see hero.php). So
     the photo was removed and never restored, and the thank-you page rendered
     as text on flat colour. Reported 2026-09-09. */
  .hcb .hero-banner .center.maxwidth .hero-copy {
    position: relative;
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
  }
  .hcb .hero-banner .center.maxwidth .hero-copy::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--hero-photo);
    background-size: cover;
    background-position: center, center;
    background-repeat: no-repeat;
  }
  .hcb .hero-banner .center.maxwidth .hero-copy > * {
    position: relative;
    z-index: 1;
  }

  .hcb .hero-copy > .dm-btn {
    display: none !important;
  }
  /* ⚠️ EXCEPT ON A POST-CONVERSION PAGE. The rule above hides the hero button on
     mobile because the header already carries the same call to action. On the
     thank-you page it does not: the header says "Start your claim", which is the
     one thing that page must not offer, so hiding this left the page with no way
     back at all on a phone. */
  .hcb .hero-copy > .dm-btn.hero-btn--center {
    display: flex !important;
  }

  .hcb .banner-eyebrow {
    font-size: 46px;
    margin-bottom: var(--spacing-md);
  }
  .hcb .hero-form-title {
    font-size: 32px;
    line-height: 1.1;
    padding-right: 108px;
    min-height: calc(115px - var(--spacing-lg));
  }
  .hcb .hero-form-wrap {
    display: block;
    position: relative;
  }
  .hcb .hero-form-badge {
    display: block;
  }
  .hcb .hero-form-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 64px;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--color-pink);
  }
  .hcb .hero-form .wpcf7-submit {
    width: 100%;
    align-self: stretch;
    padding: 15px 40px;
    text-align: center;
  }
  .hcb .hero-form {
    z-index: 1;
    border: 3px solid var(--color-cyan);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) 28px;
  }

  .hcb-footer-cols {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .hcb-footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
  .hcb-footer-sra {
    flex: 0 0 auto;
    width: 170px;
  }

  .hcb .text-block-cols {
    grid-template-columns: 1fr;
    row-gap: var(--spacing-md);
  }

  .hcb .split-2col {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

@media only screen and (max-width: 900px) {
  .hcb .link-cards-grid,
  .hcb .stats-bento {
    grid-template-columns: 1fr;
  }

  .hcb .team-profile-inner {
    grid-template-columns: 1fr;
  }
  .hcb .team-profile-photo img {
    max-width: 300px;
  }
  .hcb .team-body-cols {
    grid-template-columns: 1fr;
  }
  .hcb .team-cta-card {
    position: static;
  }

  .hcb .team-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --hero-min-h: 420px;
    --spacing-xxl: 50px;
    --font-size-xxl: 36px;
    --font-size-xl: 30px;
    --font-size-lg: 26px;
    --font-size-md: 19px;
  }

  .hcb .claim-cat-title br {
    display: none;
  }
  .hcb .claim-cat-title {
    margin: var(--spacing-xl) 0 0;
    max-width: none;
    padding: 0;
    font-size: var(--font-size-lg);
  }

  .hcb .claim-cat-head::after {
    content: none;
  }

  .hcb .claim-cat-head:not(.claim-cat-head--untitled) {
    margin-bottom: var(--spacing-md);
  }
  .hcb .claim-cat-prose {
    padding: 0;
  }

  .hcb .claim-text:not(.claim-text--alt):not(.claim-note) .claim-extra-inner {
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-md);
  }
  .hcb
    .claim-text:not(.claim-text--alt):not(.claim-note)
    .claim-extra-inner
    > p:first-of-type {
    font-size: var(--font-size-sm);
  }

  .hcb .icon-card-grid {
    grid-template-columns: 1fr;
  }

  .hcb .modal-grid,
  .hcb .pink-grid,
  .hcb .grid2 {
    grid-template-columns: 1fr;
  }

  .hcb ul.cols-2 {
    column-count: 1;
  }

  .hcb .faq-grid {
    columns: 1;
  }
  .hcb .pink-bg {
    padding-bottom: 80px;
  }
  .hcb .new-row {
    flex-direction: column;
  }
  .hcb .how-it-works {
    border-radius: 0;
  }
  .hcb .column,
  .hcb .how-it-works {
    padding: var(--spacing-xxl) var(--spacing-lg);
  }
  .hcb ul,
  .hcb ol {
    margin: 0;
    padding-top: 0;
  }
  .hcb .faq-block-item {
    box-shadow: var(--shadow-card);
  }

  .hcb .reviews-grid .slick-arrow::before,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-right: 3px solid var(--color-pink);
    border-bottom: 3px solid var(--color-pink);
    opacity: 1;
  }
  .hcb .reviews-grid .slick-prev::before,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-prev::before {
    transform: translate(-30%, -50%) rotate(135deg);
  }
  .hcb .reviews-grid .slick-next::before,
  .hcb .feature-list:not(.claim-routes) .feature-rows .slick-next::before {
    transform: translate(-70%, -50%) rotate(-45deg);
  }

  .hcb {
    --glow-size: 300px;
  }
  #page {
    overflow-x: clip;
  }

  .hcb .link-cards .section-head {
    max-width: 100%;
  }

  .hcb .feature-img {
    aspect-ratio: 20 / 19;
  }
  .hcb .feature-img .masked {
    mask-size: 117.7% 111.6%;
    -webkit-mask-size: 117.7% 111.6%;
    mask-position: 62.9% 69%;
    -webkit-mask-position: 62.9% 69%;
  }

  .hcb .feature-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .hcb .text-image .container > .row {
    grid-template-columns: 1fr;
  }
  .hcb .text-image .col-md-4 {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: var(--spacing-md);
  }
  .hcb .text-image .col-md-8 > h2 {
    grid-row: 2;
  }
  .hcb .text-image .image.masked {
    position: static;
    top: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 20 / 19;
    mask-size: 117.7% 111.6%;
    -webkit-mask-size: 117.7% 111.6%;
    mask-position: 62.9% 69%;
    -webkit-mask-position: 62.9% 69%;
  }
  .hcb .text-image .image.masked-folder,
  .hcb .text-image .image-map-figure,
  .hcb .text-image .image-map-figure .image-map {
    width: 100%;
    max-width: 100%;
  }

  .hcb .stat-photo {
    display: none;
  }
  .hcb .stat-card--overlap,
  .hcb .stat-photo--overlap {
    margin-top: 0;
  }
  .hcb .stat-card--stack {
    flex-direction: row;
    gap: 0;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
  .hcb .stat-card--stack .stat-block {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 var(--spacing-sm);
    text-align: center;
  }
  .hcb .stat-card {
    min-height: 0;
  }
  .hcb .stat-block {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hcb .stat-card--stack .stat-value {
    font-size: 46px;
  }
  .hcb .stat-label {
    font-size: 18px;
  }
  .hcb .stat-block + .stat-block {
    border-top: 0;
    padding-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
  }

  .hcb-footer-cols {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
    text-align: left;
  }
  .hcb-footer-col,
  .hcb-footer-group {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--color-grey);
  }
  .hcb-footer-col-title,
  .hcb-footer-heading {
    margin: 0;
    padding: 16px 0;
    cursor: pointer;
  }
  .hcb-footer-col-home {
    display: list-item;
  }
  .hcb-footer-toggle {
    display: block;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: url(/wp-content/themes/holiday-claims-bureau/images/plus-blue.svg)
      no-repeat center/contain;
    cursor: pointer;
  }
  .hcb-footer-col.open .hcb-footer-toggle,
  .hcb-footer-group.open .hcb-footer-toggle {
    background-image: url(/wp-content/themes/holiday-claims-bureau/images/minus-blue.svg);
  }
  .hcb-footer-col ul,
  .hcb-footer-group a {
    display: none;
    grid-column: 1 / -1;
  }
  .hcb-footer-col.open ul {
    display: block;
    padding-bottom: var(--spacing-md);
  }
  .hcb-footer-group.open a {
    display: block;
    padding: 5px 0;
  }
  .hcb-footer-group.open a:last-child {
    padding-bottom: var(--spacing-md);
  }
  .hcb-footer-group a + a::before {
    display: none;
  }
  .hcb-footer-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
  }
  .hcb-footer-heading {
    padding-right: 0;
  }

  .hcb .claim-cat-img {
    height: 240px;
  }

  .hcb .container {
    width: 100%;
    min-width: 0;
  }
}

@media only screen and (max-width: 600px) {
  .hcb-footer-cols {
    grid-template-columns: 1fr;
  }
  .hcb-footer-cta {
    margin: var(--spacing-lg) var(--spacing-md) 0;
    padding: var(--spacing-lg);
  }
}

@media only screen and (max-width: 560px) {
  .hcb .team-grid-page {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: var(--site-width);
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hcb .marquee-track {
    animation: none;
  }
  .hcb .usp-bar .usp-item {
    transition: none;
  }
  .hcb .hcb-rotate-word {
    transition: none;
    transition-delay: 0s;
  }
  .hcb .team-accordion .team-panel {
    opacity: 1;
    animation: none;
  }
}
