/* Vars */
/* Fonts */
* {
  font-family: 'BespokeSans', sans-serif;
}
/* Global style */
html {
  margin: 0px;
}
body {
  margin: 0px;
  background-color: #fff;
  color: #0F0F0F;
}
h1 {
  color: #0F0F0F;
}
h2 {
  color: #0F0F0F;
}
h3 {
  color: #0F0F0F;
  font-family: 'Leiko';
  font-weight: normal;
  font-style: normal;
  font-size: 34px;
}
p {
  line-height: 1.4rem;
}
.flex-col {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.space-between {
  display: flex;
  justify-content: space-between;
}
.space-around {
  display: flex;
  justify-content: space-around;
}
.center {
  display: flex;
  justify-content: center;
}
.vert-center {
  align-items: center;
}
.content-wrap {
  display: flex;
  justify-content: center;
  padding-left: 100px;
  padding-right: 100px;
  overflow: hidden;
}
.content {
  max-width: 1400px;
  width: 1400px;
}
@media (max-width: calc(1400px + 60px)) {
  .content {
    max-width: 100%;
  }
}
.columns {
  flex-wrap: nowrap;
}
.columns .column {
  width: 100%;
}
.close-cross {
  width: 15px;
  height: 15px;
  background-image: url(../img/icons/close-cross.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 2px;
}
.close-cross:hover {
  cursor: pointer;
  opacity: 0.5;
}
aside.sidebar form.search {
  display: none;
}
a.post-edit-link {
  display: none;
}
.wallington-checkbox {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-left: 45px !important;
  align-items: center;
  height: 23px;
  font-size: 14px;
}
.wallington-checkbox .wallington-custom-checkbox {
  position: absolute;
  min-width: 20px;
  left: 0px;
  height: 20px;
  border: 1px solid #006361;
  border-radius: 6px;
}
.wallington-checkbox input {
  opacity: 0;
  height: 0px;
  width: 0px;
}
.wallington-checkbox input:checked ~ .wallington-custom-checkbox:after {
  content: '✓';
  color: #006361;
  position: absolute;
  font-size: 20px;
  margin-left: 2px;
  margin-top: -4px;
}
.wallington-checkbox label:hover,
.wallington-checkbox .nara-custom-checkbox:hover {
  cursor: pointer;
}
br.clear {
  display: none;
}
.wallington-btn-1 {
  background: #006361;
  color: #fffaf2;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  letter-spacing: 2px;
  font-weight: 600;
  height: 40px;
  transition: 0.5s all;
  width: 180px;
}
.wallington-btn-1:hover {
  background: #00302f;
}
.wallington-btn-1.thin {
  width: 140px;
}
.wallington-btn-2 {
  background: #ffae00;
  border-radius: 10px;
  border: 1px solid #ffae00;
  color: #0F0F0F;
  opacity: 1;
  padding: 10px 20px;
  letter-spacing: 2px;
  font-weight: 600;
  height: 40px;
  transition: 0.5s all;
  width: 150px;
}
button[type="submit"],
input[type="submit"] {
  background: #006361;
  color: #fffaf2;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  letter-spacing: 2px;
  font-weight: 600;
  height: 40px;
  transition: 0.5s all;
  width: 180px;
}
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #00302f;
}
button[type="submit"].thin,
input[type="submit"].thin {
  width: 140px;
}
@media only screen and (max-width: 800px) {
  .wallington-btn-1 {
    padding: 0px 10px !important;
    height: 30px !important;
  }
  .wallington-btn-2 {
    width: 160px !important;
    padding: 0px 10px !important;
    height: 30px !important;
  }
}
/* Global mobile */
:not(.wp-admin) .mobile {
  display: none;
}
:not(.wp-admin) .tablet {
  display: none;
}
.wp-admin .mobile {
  display: block;
}
@media only screen and (max-width: 1200px) {
  :not(.wp-admin) .tablet {
    display: block;
  }
  .content {
    width: 100%;
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 800px) {
  :not(.wp-admin) .mobile {
    display: block;
  }
  .desktop {
    display: none !important;
  }
  .wp-block-group .wp-block-group__inner-container {
    width: 100%;
  }
  .content-wrap {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .content {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  h3 {
    font-size: 25px;
  }
}
main {
  width: 100%;
}
main .hero-cont {
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: row;
}
main .content {
  min-width: 100%;
}
main .col-left {
  width: 50%;
  height: 100%;
  justify-content: space-between;
  padding: 0 30px;
  flex-direction: column;
  align-items: center;
  display: flex;
  text-align: center;
  box-sizing: border-box;
}
main .col-left .logo-cont {
  margin-top: 40px;
}
main .col-left .logo-cont img {
  width: 50%;
}
main .col-left h1 {
  margin-top: 60px;
  font-size: 2em;
  font-family: 'Leiko', serif !important;
  color: #006361;
}
main .col-left h2 {
  font-size: 3em;
  font-family: 'Leiko', serif !important;
  color: #006361;
  margin: 0;
  font-weight: normal;
  font-style: normal;
}
main .col-left p {
  font-weight: bold;
  font-style: normal;
  letter-spacing: 1.5px;
}
main .col-left .icon-cont {
  width: 36px;
  height: 36px;
  background: #006361;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
main .col-left .icon-cont a {
  padding-top: 5px;
}
main .col-left .icon-cont a img {
  width: 20px;
  height: 20px;
}
main .col-left .footer-cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
main .col-left .footer-cont .footer-col {
  flex: 1;
  text-align: start;
  box-sizing: border-box;
}
main .col-left .footer-cont .footer-col a {
  color: black;
  font-family: 'BespokeSans', sans-serif;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: 300;
  font-style: normal;
}
main .col-right {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
main .col-right img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  min-height: 100%;
  min-width: 800px;
}
@media only screen and (max-width: 1200px) {
  .col-left,
  .col-right {
    width: 100%;
    min-height: 50vh;
  }
  .col-right img {
    min-height: 50vh;
  }
}
@media only screen and (max-width: 800px) {
  .content-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .content {
    flex-direction: column;
  }
  .content .col-left {
    width: 100%;
    height: 50%;
    padding: 0 10px;
  }
  .content .col-left .logo-cont {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .content .col-left h2 {
    font-size: 2em;
  }
  .content .col-left p {
    font-size: 0.65em;
  }
  .content .col-left .form-row {
    padding-bottom: 20px;
  }
  .content .col-left .form-row p {
    margin: 0;
  }
  .content .col-left .form-row p input {
    max-width: 170px !important;
  }
  .content .col-left .form-row p .wpcf7-submit {
    padding: 5px 20px !important;
  }
  .content .col-left .footer-cont {
    margin: 0;
    align-items: unset;
  }
  .content .col-right {
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
  .content .col-right img {
    width: 100%;
    height: auto;
    min-height: unset;
    min-width: 100% !important;
  }
}
.page-template-privacy-policy-template-php .logo-cont {
  width: 100%;
  display: flex;
  justify-content: center;
}
.page-template-privacy-policy-template-php .logo-cont img {
  width: 25%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .privacy-policy .content-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
  .privacy-policy .logo-cont img {
    width: 50% !important;
  }
}
.header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #fff;
  box-sizing: border-box;
}
header .header__logo {
  z-index: 10;
  width: 100px;
}
header .header__logo img {
  width: 60px;
}
header .header__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}
header .header__nav .menu-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
header .header__nav .header__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
header .header__nav .header__buttons a {
  text-decoration: none;
}
header .header__nav .header__menu {
  margin-right: 40px;
}
header .header__nav .header__menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
header .header__nav .header__menu .menu li {
  position: relative;
  padding-left: 20px;
}
header .header__nav .header__menu .menu li a {
  text-decoration: none;
  display: block;
  color: #006361;
  font-size: 16px;
  font-family: 'BespokeSans', sans-serif;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 2px;
  text-align: center;
}
header .header__nav .header__menu .menu li .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  z-index: 10;
  background: #fffaf2;
}
header .header__nav .header__menu .menu li .sub-menu li {
  margin: 15px;
  margin-left: 0;
}
header .header__nav .header__menu .menu li .sub-menu li a {
  white-space: nowrap;
  font-weight: normal !important;
}
header .header__nav .header__menu .menu li .sub-menu li.coming-soon {
  opacity: 0.5;
}
header .header__nav .header__menu .menu li .sub-menu li.coming-soon a {
  cursor: normal;
}
header .header__nav .header__menu .menu li:hover > .sub-menu {
  display: block;
  padding-top: 10px;
}
header .header__nav .header__menu .menu li.menu-item-has-children > a::after {
  content: url('../img/icons/icon-chevron-down-cream.svg');
  transform: rotate(0deg);
  position: absolute;
  right: -20px;
  bottom: 2px;
  height: 20px;
  width: 20px;
  transition: all 0.2s;
}
header .header__nav .header__menu .menu li:hover > a::after {
  transform: rotate(180deg);
}
@media only screen and (max-width: 800px) {
  .header {
    height: 80px;
    padding: 0 20px;
  }
  .header .header__logo a {
    width: 100% !important;
  }
  .header .header__logo a img {
    width: 180px;
  }
  .header .header__nav {
    display: none;
  }
  .header #burger-menu {
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
  }
  .header #burger-menu p {
    position: absolute;
    bottom: -12px;
    left: 15px;
    margin: 0px;
  }
  .header #burger-menu:after {
    content: '';
    background-image: url(../img/icons/burger-menu.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 12px;
    margin-right: 0px;
    transform: scale(0.9);
  }
  .header #burger-menu:hover {
    cursor: pointer;
  }
  .header-top .header-top-swiper {
    height: 30px !important;
    font-size: 12px !important;
  }
  .header-top .header-top-swiper .swiper-slide {
    padding-top: 6px;
  }
  .mobile.header-sidebar-outer {
    display: block !important;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar {
    width: 100%;
    position: absolute;
    background: #fffaf2;
    overflow-x: hidden;
    height: 560px;
    z-index: 2;
    top: 0px;
    left: 0px;
    transform: translatex(-100%);
    min-height: 560px;
    transition-duration: 0.3s;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar.open {
    transform: translatex(0px);
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav {
    margin-top: 100px;
    padding-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav .sidebar__menu {
    margin-bottom: 40px;
    margin-top: 40px;
    border-bottom: 1px solid #f2ebe0;
    border-top: 1px solid #f2ebe0;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav .enquire-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav #menu-header {
    padding-left: 0px;
    margin-top: 40px;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav #menu-header .menu-item a {
    color: #f2ebe0;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'BespokeSans', sans-serif;
    font-weight: bold;
    font-style: normal;
    letter-spacing: 2px;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav #menu-header .menu-item .sub-menu {
    padding: 0;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav #menu-header .menu-item .sub-menu li a {
    font-weight: normal;
    margin-bottom: 15px;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav .menu-header-container ul .heading-link {
    margin-bottom: 50px;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav .menu-header-container ul .heading-link .sub-menu .sub-menu-link {
    margin: 10px 0;
  }
  .mobile.header-sidebar-outer .sidebar-cont .sidebar .sidebar__nav .menu-header-container ul .heading-link .sub-menu .coming-soon {
    opacity: 0.5;
    cursor: none;
  }
}
.hero-container {
  position: relative;
  width: 100%;
}
.hero-container .image-cont {
  width: 100%;
  height: calc(100vh - 200px);
  object-fit: cover;
}
.hero-container .image-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-container .title-cont {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.hero-container .title-cont .hero-title {
  color: #fffaf2;
  font-size: 13.4vw;
  font-weight: normal;
  margin: 0;
  font-family: 'Leiko', serif !important;
}
.welcome-intro {
  padding-top: 60px;
  padding-bottom: 60px;
}
.welcome-intro p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tv-logos .icon-repeater__icon {
  width: 300px;
}
.athlete-banner p {
  margin: 0;
}
.home-swiper {
  padding-top: 120px;
  padding-bottom: 160px;
  overflow: hidden;
  position: relative;
}
.home-swiper .swiper-wrapper img {
  width: 100%;
  /* Make the image width match the swiper-slide width */
  height: auto;
  /* Maintain aspect ratio */
  object-fit: cover;
  /* Ensures the image fits nicely within its container */
  max-width: 100%;
}
.home-swiper .button-cont {
  position: relative;
  width: 68px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
}
.home-swiper .button-cont .button-div {
  width: 30px;
  height: 30px;
  background: #006361;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-swiper .button-cont .button-div .swiper-button-next,
.home-swiper .button-cont .button-div .swiper-button-prev {
  color: #505745;
  right: unset;
  left: unset;
}
.home-swiper .button-cont .button-div .swiper-button-next::after,
.home-swiper .button-cont .button-div .swiper-button-prev::after {
  font-size: 16px;
}
.acf-shortcode {
  background: #fbf4ed;
  padding: 60px 0;
}
.acf-shortcode .wpcf7-form h2 {
  text-align: center;
  font-size: 32px;
}
.acf-shortcode .wpcf7-form .form-text {
  text-align: center;
}
.acf-shortcode .wpcf7-form .form-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.acf-shortcode .wpcf7-form .button-cont {
  width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.acf-shortcode .wpcf7-form .button-cont .spacer {
  width: 100px;
}
.acf-shortcode .wpcf7-form .button-cont .submit-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.acf-shortcode .wpcf7-form .button-cont .submit-cont .small-text {
  font-size: 12px;
}
.acf-shortcode .wpcf7-form .form-row {
  width: 600px;
}
.acf-shortcode .wpcf7-form .form-row p {
  width: 100%;
  display: flex;
}
.acf-shortcode .wpcf7-form .form-row p label {
  width: 100px;
}
.acf-shortcode .wpcf7-form .form-row .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.acf-shortcode .wpcf7-form .form-row input.wpcf7-form-control,
.acf-shortcode .wpcf7-form .form-row textarea.wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 0;
  padding: 10px;
  color: #000;
}
@media only screen and (max-width: 1200px) {
  .hero-container .title-cont {
    bottom: -20px;
  }
}
@media only screen and (max-width: 800px) {
  .hero-container .image-cont {
    height: 400px;
  }
  .hero-container .image-cont img {
    height: 400px;
  }
  .hero-container .title-cont {
    bottom: 0px;
  }
  .hero-container .title-cont .hero-title {
    font-size: 22vw;
    line-height: 0.8em;
  }
  .intro-cont {
    flex-direction: column;
    padding: 60px 0px;
    box-sizing: border-box;
  }
  .intro-cont .left-col {
    width: 100%;
  }
  .intro-cont .right-col {
    width: 100%;
    padding: unset;
  }
  .intro-cont .right-col :nth-child(3) {
    margin: 0;
  }
  .green-1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .green-1 .locations {
    flex-direction: column;
    gap: 80px;
  }
  .green-1 .locations .location-item {
    width: 100% !important;
  }
  .green-1 .locations .location-item .image-cont {
    height: 230px;
  }
  .green-1 .locations .location-item .image-cont .status-label {
    font-size: 30px;
  }
  .testimonials-swiper {
    padding-top: 60px;
    padding-bottom: 80px;
    box-sizing: border-box;
    width: 100%;
  }
  .testimonials-swiper .button-cont {
    padding: 0;
    display: flex;
  }
  .testimonials-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
    box-sizing: border-box;
    min-height: unset;
  }
  .testimonials-swiper .swiper-wrapper .swiper-slide .inner {
    width: 100%;
    box-sizing: border-box;
  }
  .home-swiper {
    padding-top: 60px;
    padding-bottom: 80px;
    box-sizing: border-box;
  }
  .home-swiper .button-cont {
    padding: 0;
  }
  .home-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
    box-sizing: border-box;
  }
  .home-swiper .swiper-wrapper .swiper-slide .inner {
    width: 100%;
    box-sizing: border-box;
  }
  .features {
    justify-content: space-between;
    align-items: center;
  }
  .features .feature-item {
    flex: unset !important;
    width: 40%;
  }
  .features .feature-item .logo-cont img {
    width: 100%;
  }
  .faq-cont {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .faq-cont .gs-collapsible-title-cont .title {
    font-size: 16px !important;
  }
}
.footer {
  background: #0b3f3a;
  color: #fff;
  padding: 90px 0;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  opacity: 0.85;
}
.footer__inner {
  width: 1400px;
  margin: 0 auto;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.footer__left {
  max-width: 520px;
}
.footer__logo {
  margin-bottom: 28px;
}
.footer__logo img {
  display: block;
  height: 90px;
  width: auto;
}
.footer__site-name {
  font-weight: 600;
  letter-spacing: 0.2px;
}
.footer__address {
  margin-bottom: 34px;
}
.footer__address p {
  margin: 0 0 6px 0;
  line-height: 1.35;
}
.footer__contact p {
  margin: 0 0 8px 0;
  line-height: 1.35;
}
.footer__contact .footer__label {
  margin-right: 8px;
  opacity: 0.95;
}
.footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 360px;
}
.footer__social-title {
  margin: 0 0 18px 0;
  opacity: 0.95;
  text-align: right;
}
.footer__social-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.footer__social-link {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
}
.footer__social-link svg {
  width: 34px;
  height: 34px;
  fill: #0b3f3a;
}
.footer__tagline {
  text-align: right;
}
.footer__tagline p {
  margin: 0;
  line-height: 1.25;
  font-weight: 600;
}
.footer__tagline p strong {
  font-weight: 800;
}
@media (max-width: 900px) {
  .footer {
    padding: 70px 0;
  }
  .footer__inner {
    width: 1400px;
  }
  .footer__grid {
    flex-direction: column;
    gap: 50px;
  }
  .footer__right {
    align-items: flex-start;
    min-width: 0;
  }
  .footer__social-title,
  .footer__tagline {
    text-align: left;
  }
  .footer__social-links {
    justify-content: flex-start;
  }
}
/* =========================
   Split Card (Design Match)
========================= */
.split-card {
  margin: 0;
}
.split-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-card__media {
  position: relative;
  overflow: hidden;
}
.split-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Swap columns based on image position */
.split-card--image-left .split-card__media {
  order: 1;
}
.split-card--image-left .split-card__content {
  order: 2;
}
.split-card--image-right .split-card__media {
  order: 2;
}
.split-card--image-right .split-card__content {
  order: 1;
}
/* Content panel base */
.split-card__content {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 56px;
  text-align: center;
}
.split-card__content-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
/* Title + copy */
.split-card__title {
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 3vw, 56px);
}
.split-card__text {
  margin: 0 auto 26px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 360px;
}
.split-card__text p {
  margin: 0;
}
/* Button (pill) */
.split-card__actions {
  margin-top: 18px;
}
.split-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, background-color 0.15s ease;
}
.split-card__btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}
/* =========================
   Themes
========================= */
/* Amber (top example) */
.split-card--theme-amber .split-card__content {
  background: #F2B018;
  color: #0b0b0c;
}
.split-card--theme-amber .split-card__btn {
  background: #0D5E57;
  color: #fff;
}
.split-card--theme-amber .split-card__btn:hover {
  filter: brightness(1.02);
}
/* Teal (bottom example) */
.split-card--theme-teal .split-card__content {
  background: #0D5E57;
  color: #fff;
}
.split-card--theme-teal .split-card__content h2 {
  color: #fff;
}
.split-card--theme-teal .split-card__btn {
  background: #F2B018;
  color: #0b0b0c;
}
/* =========================
   Decorative watermark + shapes
   Uses: --split-crest-url (optional)
========================= */
/* large watermark crest */
.split-card__crest-watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
  background-image: var(--split-crest-url);
  background-repeat: no-repeat;
  background-position: 20% 60%;
  background-size: 520px;
}
.split-card__crest-watermark:empty {
  background-image: radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%);
  background-size: cover;
  opacity: 0.1;
}
/* small crest top-centre */
.split-card__crest-top {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
  background-image: var(--split-crest-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
/* geometric panel shape bottom-left (like the mock) */
.split-card__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)), radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.28) 0 38%, rgba(255, 255, 255, 0) 39% 100%);
  clip-path: inset(0 0 0 0 round 0);
}
/* make the decor feel "tonal" (less bright) on amber */
.split-card--theme-amber .split-card__shape {
  opacity: 0.12;
}
.split-card--theme-amber .split-card__crest-top {
  opacity: 0.18;
}
.split-card--theme-amber .split-card__crest-watermark {
  opacity: 0.07;
}
/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .split-card__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-card__media {
    order: 1 !important;
  }
  .split-card__content {
    order: 2 !important;
  }
  .split-card__media {
    height: 320px;
  }
  .split-card__content {
    padding: 44px 22px;
  }
  .split-card__crest-watermark {
    background-size: 420px;
    background-position: 20% 70%;
  }
  .split-card__shape {
    width: 180px;
    height: 180px;
  }
}
/* =========================
   Icon Repeater (Design Match)
========================= */
.icon-repeater {
  position: relative;
  padding-top: 90px;
  padding-bottom: 10px;
}
/* Inner wrapper: keep centered content width but background can be full-width */
.icon-repeater__inner {
  width: 1180px;
  margin: 0 auto;
}
/* Heading: centered, bold, two-line friendly */
.icon-repeater__heading {
  text-align: center;
  margin-bottom: 56px;
}
.icon-repeater__heading h1,
.icon-repeater__heading h2,
.icon-repeater__heading h3,
.icon-repeater__heading p {
  margin: 0;
}
.icon-repeater__heading p {
  font-size: 18px;
  line-height: 1.4;
}
.icon-repeater__heading strong {
  display: block;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.15;
  margin-top: 8px;
}
/* Grid: 3 columns like your mock */
.icon-repeater__grid {
  display: flex;
  justify-content: center ;
  gap: 56px;
}
/* Each item: centered stack */
.icon-repeater__item {
  text-align: center;
}
/* Icon sizing - big and consistent */
.icon-repeater__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
}
.icon-repeater__icon {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}
/* Title/subtitle styling */
.icon-repeater__title {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.15;
}
.icon-repeater__subtitle {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.3;
  opacity: 0.9;
}
/* Body copy */
.icon-repeater__content {
  margin: 0 auto 28px;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.7;
}
.icon-repeater__content p {
  margin: 0;
}
/* CTA button (pill) */
.icon-repeater__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.icon-repeater__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
/* =========================
   Background themes
   Use either:
   - icon-repeater--yellow / --white
   OR
   - is-yellow / is-white via your background_class field
========================= */
.icon-repeater--yellow,
.icon-repeater.is-yellow {
  background: #F2B018;
  color: #0b0b0c;
}
.icon-repeater--yellow .icon-repeater__btn,
.icon-repeater.is-yellow .icon-repeater__btn {
  background: #0D5E57;
  color: #fff;
}
.icon-repeater--white,
.icon-repeater.is-white {
  background: #ffffff;
  color: #0b0b0c;
}
.icon-repeater--white .icon-repeater__btn,
.icon-repeater.is-white .icon-repeater__btn {
  background: #0D5E57;
  color: #fff;
}
/* If you want the “yellow section” to feel identical to the mock,
   slightly increase title weight and spacing (optional) */
.icon-repeater--yellow .icon-repeater__heading strong,
.icon-repeater.is-yellow .icon-repeater__heading strong {
  font-weight: 950;
}
/* =========================
   Responsive
========================= */
@media (max-width: 1000px) {
  .icon-repeater {
    padding: 70px 0;
  }
  .icon-repeater__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .icon-repeater__content {
    max-width: 520px;
  }
  .icon-repeater__icon {
    width: 120px;
    height: 120px;
  }
}
