/**
 * Kayak & Experiences page redesign — "Ripple" (page 52811 only).
 *
 * Markup: wp:html sections inside an alignfull .tsa-ex group in the page
 * content, plus [tsa_ex_hero] and [tsa_ex_tours] from inc/experiences.php.
 * JS (hero crossfade): assets/js/experiences.js.
 */

.tsa-ex {
    --ex-mist: #EBF2F0;
    --ex-aqua: #CFE3DF;
    --ex-paper: #F6FAF8;
    --ex-pine: #12403F;
    --ex-slate: #3D6461;
    --ex-orange: #D9762E;
    --ex-ochre: #C77E22;
    --ex-amber: #E39A3B;
    --ex-gold: #E9B96A;
    --ex-night: #081A1D;
    --ex-warm-paper: #FDF8EF;
    --ex-ink: #16302E;
    --ex-body-color: rgba(22, 48, 46, 0.75);
    --ex-head-font: var(--tsa-font-display);
    --ex-body-font: var(--tsa-font-body);
    --ex-pad-x: clamp(20px, 4vw, 48px);
    background: var(--ex-mist);
    color: var(--ex-ink);
    font-family: var(--ex-body-font);
    overflow: hidden;
}

.tsa-ex ::selection {
    background: var(--ex-pine);
    color: var(--ex-mist);
}

.tsa-ex a {
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.tsa-ex h1,
.tsa-ex h2,
.tsa-ex h3,
.tsa-ex h4 {
    font-family: var(--ex-head-font);
    font-weight: var(--tsa-font-display-weight, 800);
    padding: 0;
    color: var(--ex-pine);
}

.tsa-ex .tsa-ex-section {
    position: relative;
    padding: clamp(72px, 9vw, 110px) var(--ex-pad-x);
    overflow: hidden;
}

.tsa-ex .tsa-ex-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.tsa-ex .tsa-ex-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ex-orange);
    margin-bottom: 16px;
}

.tsa-ex .tsa-ex-h2 {
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
}

.tsa-ex .tsa-ex-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
}

.tsa-ex .tsa-ex-btn--pine {
    background: var(--ex-pine);
    color: var(--ex-mist);
}

.tsa-ex .tsa-ex-btn--pine:hover {
    background: var(--ex-amber);
    color: var(--ex-pine);
}

.tsa-ex .tsa-ex-btn--ochre {
    background: var(--ex-ochre);
    color: var(--ex-warm-paper);
}

.tsa-ex .tsa-ex-btn--ochre:hover {
    background: var(--ex-pine);
    color: var(--ex-mist);
}

.tsa-ex .tsa-ex-btn--cream {
    background: var(--ex-warm-paper);
    color: var(--ex-pine);
}

.tsa-ex .tsa-ex-btn--cream:hover {
    background: var(--ex-amber);
    color: var(--ex-pine);
}

.tsa-ex .tsa-ex-btn--amber {
    background: var(--ex-amber);
    color: var(--ex-night);
}

.tsa-ex .tsa-ex-btn--amber:hover {
    background: #F4EFE7;
    color: var(--ex-night);
}

/* Keyframes */

@keyframes tsaExRipple {
    0% { transform: scale(0.4); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes tsaExBob {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
}

@keyframes tsaExWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes tsaExTwinkle {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.3; }
}

@keyframes tsaExPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217, 118, 46, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(217, 118, 46, 0); }
}

/* ------------------------------------------------------------------ Hero */

.tsa-ex .tsa-ex-hero {
    position: relative;
    padding: calc(var(--wp--custom--header-height, 83px) + clamp(48px, 6vw, 72px)) var(--ex-pad-x) 0;
    overflow: hidden;
    background: linear-gradient(180deg, #EBF2F0 0%, #E4EEE9 60%, #DAE9E3 100%);
}

.tsa-ex .tsa-ex-hero__inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.tsa-ex .tsa-ex-hero h1 {
    font-size: clamp(2.6rem, 5.8vw, 5.4rem);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
    text-wrap: balance;
}

.tsa-ex .tsa-ex-hero h1 em {
    font-style: italic;
    color: var(--ex-orange);
}

.tsa-ex .tsa-ex-hero__lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ex-body-color);
    max-width: 52ch;
    margin: 0 auto 34px;
}

.tsa-ex .tsa-ex-hero__lede--bold {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tsa-ex .tsa-ex-hero__media {
    position: relative;
    max-width: 1180px;
    margin: 64px auto 0;
    z-index: 2;
}

.tsa-ex .tsa-ex-hero__frame {
    position: relative;
    border-radius: 26px 26px 0 0;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    animation: tsaExBob 7s ease-in-out infinite;
}

.tsa-ex .tsa-ex-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}

.tsa-ex .tsa-ex-hero__slide.is-active {
    opacity: 1;
}

/* Ripple rings */

.tsa-ex .tsa-ex-ripple {
    position: absolute;
    pointer-events: none;
}

.tsa-ex .tsa-ex-ripple--left {
    left: 12%;
    bottom: -30px;
    width: 80px;
    height: 80px;
}

.tsa-ex .tsa-ex-ripple--right {
    right: 18%;
    bottom: -16px;
    width: 60px;
    height: 60px;
}

.tsa-ex .tsa-ex-ripple span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(18, 64, 63, 0.4);
    animation: tsaExRipple 4s ease-out infinite;
}

.tsa-ex .tsa-ex-ripple span:nth-child(2) {
    border-color: rgba(18, 64, 63, 0.3);
    animation-delay: 1.3s;
}

.tsa-ex .tsa-ex-ripple--right span {
    border-color: rgba(217, 118, 46, 0.45);
    animation-duration: 5s;
    animation-delay: 0.6s;
}

/* Animated wave edge into the aqua band */

.tsa-ex .tsa-ex-wave {
    position: relative;
    height: 64px;
    overflow: hidden;
    margin: 0 calc(-1 * var(--ex-pad-x));
}

.tsa-ex .tsa-ex-wave__track {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: max-content;
    animation: tsaExWave 16s linear infinite;
}

.tsa-ex .tsa-ex-wave__seg {
    width: 1400px;
    height: 64px;
    background: radial-gradient(58px 34px at 29px 64px, var(--ex-aqua) 96%, transparent 100%);
    background-size: 116px 64px;
    background-repeat: repeat-x;
}

/* ---------------------------------------------------------- Why / What */

.tsa-ex .tsa-ex-why {
    background: var(--ex-aqua);
    padding-top: 90px;
}

.tsa-ex .tsa-ex-why .tsa-ex-h2 {
    max-width: 22ch;
    margin-bottom: 52px;
}

.tsa-ex .tsa-ex-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tsa-ex .tsa-ex-why__card {
    background: var(--ex-paper);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 10px 28px rgba(18, 64, 63, 0.1);
}

.tsa-ex .tsa-ex-why__dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ex-amber);
    margin-bottom: 20px;
    animation: tsaExPulse 3s ease-in-out infinite;
}

.tsa-ex .tsa-ex-why__card:nth-child(2) .tsa-ex-why__dot { background: var(--ex-orange); animation-delay: 1s; }
.tsa-ex .tsa-ex-why__card:nth-child(3) .tsa-ex-why__dot { background: var(--ex-pine); animation-delay: 2s; }

.tsa-ex .tsa-ex-why__card h3 {
    font-size: 23px;
    margin: 0 0 12px;
}

.tsa-ex .tsa-ex-why__card p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ex-body-color);
}

.tsa-ex .tsa-ex-what {
    max-width: 760px;
    margin: 80px auto 0;
    text-align: center;
}

.tsa-ex .tsa-ex-what h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    margin: 0 0 20px;
}

.tsa-ex .tsa-ex-what p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ex-body-color);
    margin: 0 0 14px;
}

.tsa-ex .tsa-ex-dayline {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ex-pine);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

.tsa-ex .tsa-ex-dayline span {
    background: var(--ex-paper);
    border-radius: 999px;
    padding: 9px 18px;
}

.tsa-ex .tsa-ex-dayline span.is-night {
    background: var(--ex-pine);
    color: var(--ex-mist);
}

.tsa-ex .tsa-ex-dayline i {
    width: 26px;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, var(--ex-orange) 0, var(--ex-orange) 6px, transparent 6px, transparent 11px);
}

/* ---------------------------------------------------- Featured experiences */

.tsa-ex .tsa-ex-split {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

.tsa-ex .tsa-ex-split--flip {
    grid-template-columns: 1.05fr 0.95fr;
}

.tsa-ex .tsa-ex-split > img {
    width: 100%;
    display: block;
    border-radius: 24px;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
    box-shadow: 0 18px 44px rgba(18, 64, 63, 0.16);
}

.tsa-ex .tsa-ex-split h2 {
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.05;
    margin: 0 0 20px;
}

.tsa-ex .tsa-ex-split p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ex-body-color);
    margin: 0 0 14px;
}

.tsa-ex .tsa-ex-tag {
    display: inline-block;
    background: var(--ex-paper);
    border: 1.5px solid rgba(18, 64, 63, 0.2);
    border-radius: 999px;
    padding: 8px 18px;
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ex-pine);
    margin-bottom: 22px;
}

.tsa-ex .tsa-ex-tag--gold {
    background: var(--ex-warm-paper);
    border-color: rgba(199, 126, 34, 0.4);
    color: var(--ex-ochre);
}

.tsa-ex .tsa-ex-tag--sunset {
    background: rgba(253, 248, 239, 0.25);
    border-color: rgba(253, 248, 239, 0.55);
    color: var(--ex-warm-paper);
}

.tsa-ex .tsa-ex-tag--night {
    background: rgba(233, 185, 106, 0.14);
    border-color: rgba(233, 185, 106, 0.5);
    color: var(--ex-gold);
}

/* Gourmet band */

.tsa-ex .tsa-ex-gourmet {
    background: linear-gradient(180deg, var(--ex-mist), #F4E9D7);
}

/* Sunset kayak band */

.tsa-ex .tsa-ex-sunset {
    background: linear-gradient(180deg, #F4E9D7 0%, #E8B071 55%, #3D6461 100%);
}

.tsa-ex .tsa-ex-sunset h2,
.tsa-ex .tsa-ex-sunset p {
    color: var(--ex-warm-paper);
}

.tsa-ex .tsa-ex-sunset p {
    color: rgba(253, 248, 239, 0.9);
}

.tsa-ex .tsa-ex-kayakfig {
    position: relative;
}

.tsa-ex .tsa-ex-kayakfig__bob {
    animation: tsaExBob 7s ease-in-out infinite;
}

.tsa-ex .tsa-ex-kayakfig__bob img {
    width: 100%;
    display: block;
    border-radius: 24px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 22px 50px rgba(10, 30, 28, 0.35);
}

.tsa-ex .tsa-ex-kayakfig .tsa-ex-ripple {
    left: -14px;
    bottom: -26px;
    width: 70px;
    height: 70px;
}

.tsa-ex .tsa-ex-kayakfig .tsa-ex-ripple span {
    border-color: rgba(253, 248, 239, 0.6);
}

.tsa-ex .tsa-ex-kayakfig .tsa-ex-ripple span:nth-child(2) {
    border-color: rgba(253, 248, 239, 0.4);
    animation-delay: 1.5s;
}

/* Night band */

.tsa-ex .tsa-ex-nightband {
    background: linear-gradient(180deg, #3D6461 0%, #0B2023 30%, #081A1D 100%);
}

.tsa-ex .tsa-ex-nightband h2 {
    color: #F4EFE7;
}

.tsa-ex .tsa-ex-nightband p {
    color: rgba(244, 239, 231, 0.85);
}

.tsa-ex .tsa-ex-nightband > img {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.tsa-ex .tsa-ex-star {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 249, 236, 0.8);
    animation: tsaExTwinkle 5s ease-in-out infinite;
}

.tsa-ex .tsa-ex-star.is-bright {
    background: #FFF9EC;
    box-shadow: 0 0 6px 1px rgba(255, 249, 236, 0.8);
}

.tsa-ex .tsa-ex-quoteblock {
    border-left: 2px solid rgba(233, 185, 106, 0.5);
    padding: 4px 0 4px 20px;
    margin: 0 0 26px;
}

.tsa-ex .tsa-ex-quoteblock p {
    margin: 0 0 8px;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(244, 239, 231, 0.8);
    font-style: italic;
}

.tsa-ex .tsa-ex-quoteblock cite {
    font-style: normal;
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 14px;
    color: var(--ex-gold);
}

.tsa-ex .tsa-ex-challenge {
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 19px;
    color: #F4EFE7;
    margin-bottom: 18px;
}

.tsa-ex .tsa-ex-checklist {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.tsa-ex .tsa-ex-checklist div {
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-size: 16px;
    line-height: 1.5;
    color: var(--ex-ink);
}

.tsa-ex .tsa-ex-checklist i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ex-orange);
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.tsa-ex .tsa-ex-split h3 {
    font-size: 19px;
    margin: 0 0 16px;
    color: var(--ex-orange);
}

/* --------------------------------------------------------------- Quotes */

.tsa-ex .tsa-ex-quotes {
    background: var(--ex-aqua);
}

.tsa-ex .tsa-ex-quotes .tsa-ex-h2 {
    margin-bottom: 48px;
}

.tsa-ex .tsa-ex-quotes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.tsa-ex .tsa-ex-quote {
    background: var(--ex-paper);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(18, 64, 63, 0.1);
}

.tsa-ex .tsa-ex-quote__tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ex-orange);
    margin-bottom: 18px;
}

.tsa-ex .tsa-ex-quote p {
    margin: 0 0 20px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #26403C;
}

.tsa-ex .tsa-ex-quote p.is-verse {
    font-style: italic;
    line-height: 1.75;
}

.tsa-ex .tsa-ex-quote cite {
    font-style: normal;
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 16px;
    color: var(--ex-pine);
}

/* ----------------------------------------------------------------- Steps */

.tsa-ex .tsa-ex-steps {
    text-align: center;
}

.tsa-ex .tsa-ex-steps .tsa-ex-h2 {
    margin-bottom: 64px;
}

.tsa-ex .tsa-ex-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.tsa-ex .tsa-ex-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.tsa-ex .tsa-ex-step__num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ex-pine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 26px;
    color: var(--ex-mist);
}

.tsa-ex .tsa-ex-step:nth-child(2) .tsa-ex-step__num { background: var(--ex-slate); }
.tsa-ex .tsa-ex-step:nth-child(3) .tsa-ex-step__num { background: var(--ex-orange); color: var(--ex-warm-paper); }

.tsa-ex .tsa-ex-step__label {
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 21px;
    color: var(--ex-pine);
}

/* ----------------------------------------------------------------- Cards */

.tsa-ex .tsa-ex-upcoming-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.tsa-ex .tsa-ex-link-underline {
    font-weight: 700;
    font-size: 15px;
    border-bottom: 2px solid var(--ex-orange);
    padding-bottom: 4px;
    color: var(--ex-pine);
}

.tsa-ex .tsa-ex-link-underline:hover {
    color: var(--ex-orange);
}

.tsa-ex .tsa-ex-tours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.tsa-ex .tsa-ex-card {
    display: flex;
    flex-direction: column;
    background: var(--ex-paper);
    border-radius: 24px;
    overflow: hidden;
    color: var(--ex-ink);
    box-shadow: 0 10px 28px rgba(18, 64, 63, 0.1);
}

.tsa-ex .tsa-ex-card:hover {
    box-shadow: 0 22px 48px rgba(18, 64, 63, 0.18);
    color: var(--ex-ink);
    transform: translateY(-5px);
}

.tsa-ex .tsa-ex-card__media {
    position: relative;
}

.tsa-ex .tsa-ex-card__media img,
.tsa-ex .tsa-ex-card__placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.tsa-ex .tsa-ex-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--ex-aqua), #AECCC5);
    position: relative;
    overflow: hidden;
}

.tsa-ex .tsa-ex-card__ripple {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(18, 64, 63, 0.35);
    animation: tsaExRipple 4s ease-out infinite;
}

.tsa-ex .tsa-ex-card__drop {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ex-pine);
}

.tsa-ex .tsa-ex-card__kind,
.tsa-ex .tsa-ex-card__stock {
    position: absolute;
    top: 14px;
    z-index: 1;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.tsa-ex .tsa-ex-card__kind {
    left: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(246, 250, 248, 0.92);
    color: var(--ex-pine);
}

.tsa-ex .tsa-ex-card__kind.kind-sunset { background: rgba(217, 118, 46, 0.92); color: var(--ex-warm-paper); }
.tsa-ex .tsa-ex-card__kind.kind-night { background: rgba(8, 26, 29, 0.88); color: var(--ex-gold); }
.tsa-ex .tsa-ex-card__kind.kind-creative { background: rgba(61, 100, 97, 0.92); color: var(--ex-mist); }
.tsa-ex .tsa-ex-card__kind.kind-kayak { background: rgba(18, 64, 63, 0.9); color: var(--ex-mist); }
.tsa-ex .tsa-ex-card__kind.kind-feast { background: rgba(199, 126, 34, 0.92); color: var(--ex-warm-paper); }

.tsa-ex .tsa-ex-card__stock {
    right: 14px;
    background: rgba(18, 64, 63, 0.85);
    color: #AECCC5;
}

.tsa-ex .tsa-ex-card__stock.is-low { color: var(--ex-gold); }
.tsa-ex .tsa-ex-card__stock.is-out { color: rgba(235, 242, 240, 0.6); }

.tsa-ex .tsa-ex-card__body {
    padding: 20px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.tsa-ex .tsa-ex-card__body h3 {
    font-size: 22px;
    margin: 0;
    line-height: 1.15;
}

.tsa-ex .tsa-ex-card__date {
    font-size: 14px;
    font-weight: 700;
    color: var(--ex-orange);
}

.tsa-ex .tsa-ex-card__stats {
    font-size: 14px;
    color: rgba(22, 48, 46, 0.6);
    margin-bottom: 8px;
}

.tsa-ex .tsa-ex-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(18, 64, 63, 0.12);
    padding-top: 14px;
}

.tsa-ex .tsa-ex-card__price {
    font-family: var(--ex-head-font);
  font-weight: var(--tsa-font-display-weight, 800);
    font-size: 21px;
    color: var(--ex-pine);
}

.tsa-ex .tsa-ex-card__members {
    font-size: 12.5px;
    color: var(--ex-slate);
    font-weight: 600;
}

.tsa-ex .tsa-ex-card__cta {
    background: var(--ex-pine);
    color: var(--ex-mist);
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.tsa-ex .tsa-ex-card:hover .tsa-ex-card__cta {
    background: var(--ex-amber);
    color: var(--ex-pine);
}

/* ----------------------------------------------------------- Responsive */

@media (prefers-reduced-motion: reduce) {
    .tsa-ex .tsa-ex-hero__frame,
    .tsa-ex .tsa-ex-kayakfig__bob,
    .tsa-ex .tsa-ex-ripple span,
    .tsa-ex .tsa-ex-wave__track,
    .tsa-ex .tsa-ex-star,
    .tsa-ex .tsa-ex-why__dot,
    .tsa-ex .tsa-ex-card__ripple {
        animation: none !important;
    }
}

@media (max-width: 1024px) {
    .tsa-ex .tsa-ex-tours,
    .tsa-ex .tsa-ex-quotes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .tsa-ex .tsa-ex-why__grid,
    .tsa-ex .tsa-ex-split,
    .tsa-ex .tsa-ex-split--flip,
    .tsa-ex .tsa-ex-steps__grid {
        grid-template-columns: 1fr;
    }

    .tsa-ex .tsa-ex-split > img,
    .tsa-ex .tsa-ex-kayakfig {
        order: -1;
    }
}

@media (max-width: 640px) {
    .tsa-ex .tsa-ex-tours,
    .tsa-ex .tsa-ex-quotes__grid {
        grid-template-columns: 1fr;
    }

    .tsa-ex .tsa-ex-hero__frame {
        aspect-ratio: 4 / 3;
    }
}

/* ==================================================================
   Footer template part recolour — Ripple palette.
   This stylesheet only loads on the Experiences page.
   ================================================================== */

body.page-id-52811 footer.wp-block-template-part .has-darktext-background-color {
    background-color: #E39A3B !important;
}

body.page-id-52811 footer.wp-block-template-part .has-darktext-background-color .has-white-color,
body.page-id-52811 footer.wp-block-template-part .has-darktext-background-color h3,
body.page-id-52811 footer.wp-block-template-part .has-darktext-background-color p,
body.page-id-52811 footer.wp-block-template-part .has-darktext-background-color label,
body.page-id-52811 footer.wp-block-template-part .has-darktext-background-color .gfield_required_text {
    color: #12403F !important;
}

body.page-id-52811 footer.wp-block-template-part .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):not([type="hidden"]),
body.page-id-52811 footer.wp-block-template-part .gform_wrapper select,
body.page-id-52811 footer.wp-block-template-part .gform_wrapper textarea {
    background-color: #F6FAF8 !important;
    color: #12403F !important;
    border-color: rgba(18, 64, 63, 0.35) !important;
}

body.page-id-52811 footer.wp-block-template-part .gform_wrapper input::placeholder,
body.page-id-52811 footer.wp-block-template-part .gform_wrapper textarea::placeholder {
    color: rgba(18, 64, 63, 0.6) !important;
    opacity: 1 !important;
}

body.page-id-52811 footer.wp-block-template-part .gform_wrapper .gfield_label,
body.page-id-52811 footer.wp-block-template-part .gform_wrapper legend,
body.page-id-52811 footer.wp-block-template-part .gform_wrapper .gfield_description {
    color: #12403F !important;
}

body.page-id-52811 footer.wp-block-template-part .gform_wrapper .gform_button {
    background-color: #12403F !important;
    color: #EBF2F0 !important;
}

body.page-id-52811 footer.wp-block-template-part .gform_wrapper .gform_button:hover {
    background-color: #EBF2F0 !important;
    color: #12403F !important;
    opacity: 1 !important;
}

body.page-id-52811 footer.wp-block-template-part .footer-container.has-background-dark-background-color {
    background-color: #12403F !important;
}

body.page-id-52811 footer.wp-block-template-part .footer-container a:hover {
    color: #E9B96A;
}

body.page-id-52811 footer.wp-block-template-part .wp-block-cover.is-light .wp-block-cover__image-background {
    display: none !important;
}

body.page-id-52811 footer.wp-block-template-part .wp-block-cover.is-light {
    background: #EBF2F0;
}

body.page-id-52811 footer.wp-block-template-part .wp-block-cover.is-light .wp-block-cover__background {
    background-color: #EBF2F0 !important;
}
