:root {
    --gt-dark: #001715;
    --gt-cream: #f8f5ee;
    --gt-green: #33cc33;
    --gt-green-dark: #0c6d24;
    --gt-purple: #4d26a8;
    --gt-purple-soft: #eee8ff;
    --gt-orange: #ff7417;
    --gt-text: #000000;
    --gt-sidebar: 340px;
    --gt-topbar: 88px;
    --gt-radius: 28px;
}
/* ------------------------------------------------------------------- 
 * ## easing functions
 * ------------------------------------------------------------------- */
:root {
  /* Standard easing functions 
   */
    --ease-linear         : linear;
    --ease-in             : ease-in;
    --ease-out            : ease-out;
    --ease-in-out         : ease-in-out;

  /* Smooth and natural curves 
   */
    --ease-smooth         : cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-smooth-in      : cubic-bezier(0.42, 0, 1, 1);
    --ease-smooth-out     : cubic-bezier(0, 0, 0.58, 1);
    --ease-smooth-in-out  : cubic-bezier(0.42, 0, 0.58, 1);

  /* Snappy and quick curves 
   */
    --ease-snappy-polished: cubic-bezier(0.28, 0.12, 0.22, 1);
    --ease-quick-in       : cubic-bezier(0.55, 0.055, 0.675, 0.19);
    --ease-quick-out      : cubic-bezier(0.215, 0.61, 0.355, 1);

  /* Bouncy and playful curves 
   */
    --ease-bounce         : cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic        : cubic-bezier(0.7, -0.4, 0.2, 1.4);

  /* Subtle and minimal curves 
   */
    --ease-subtle         : cubic-bezier(0.2, 0.2, 0.4, 0.8);
    --ease-gentle         : cubic-bezier(0.33, 0.1, 0.33, 1);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    min-height: 100vh;
    background: var(--gt-cream);
    color: var(--gt-text);
    overflow-x: hidden;
}
a {
	transition: all 0.3s var(--ease-snappy-polished);
}
.wp-site-blocks {
    min-height: 100vh;
}
.gt-app-shell {
    display: grid;
    grid-template-columns: var(--gt-sidebar) minmax(0, 1fr);
    min-height: 100vh;
    background: var(--gt-cream);
    align-items: stretch;
}
.gt-app-shell > .gt-sidebar,
.gt-app-shell > aside {
    height: 100%;
    min-height: 100vh;
}
.gt-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
}
.gt-topbar {
    height: var(--gt-topbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 0 38px 0 64px;
    background: #fffdf8;
    color: #050c0b;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    z-index: 20;
}
.gt-topbar a {
    color: #050c0b;
    text-decoration: none;
    font-weight: 700;
}
.gt-topbar .wp-block-navigation__container {
    gap: 56px;
}
.gt-topbar:after {
    content: "Get help now";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    height: 54px;
    border-radius: 999px;
    background: var(--gt-green);
    color: #000000;
    font-weight: 800;
    margin-left: 8px;
}
.gt-sidebar {
    position: relative;
    z-index: 60;
    background: #001715;
    color: #fff;
    padding: 30px 0 26px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
.gt-logo {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0 34px 46px;
}
.gt-logo__mark {
    display: none;
}
.gt-logo__text {
    display: block;
    text-transform: uppercase;
    font-size: 29px;
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.045em;
}
.gt-logo__text strong {
    display: block;
    color: var(--gt-green);
    font-weight: 900;
}
.gt-side-nav {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.gt-side-nav__item {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    --gt-accent: var(--gt-green);
}
.gt-side-nav__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gt-side-nav__item:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--gt-accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gt-side-nav__item.is-open:before,
.gt-side-nav__item:hover:before,
.gt-side-nav__item:focus-within:before {
    opacity: 1;
}
.gt-side-nav__link {
    display: grid;
    grid-template-columns: 64px 1fr 18px;
    align-items: center;
    gap: 20px;
    min-height: 132px;
    padding: 24px 27px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s ease;
}
.gt-side-nav__item.is-open > .gt-side-nav__link,
.gt-side-nav__link:hover,
.gt-side-nav__link:focus {
    background: rgba(128, 232, 121, 0.065);
    outline: none;
}
.gt-side-nav__link:hover .gt-side-nav__chev,
.gt-side-nav__link:focus-visible .gt-side-nav__chev {
    transform: translateX(25%);
}
.gt-side-nav__icon {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--gt-color, var(--gt-accent)) 16%, #fff);
    color: var(--gt-color, var(--gt-accent));
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.gt-side-nav svg,
.gt-side-panel svg,
.gt-panel-card svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.gt-side-nav__copy {
    min-width: 0;
}
.gt-side-nav__copy span {
    display: block;
    font-weight: 900;
    font-size: 21px;
    line-height: 1.15;
    color: var(--gt-accent);
}
.gt-side-nav__copy small {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-top:6px;
    line-height: 1.25;
}
.gt-side-nav__chev {
    display: inline-block;
    font-size: 32px;
    line-height: 1;
    color: var(--gt-accent);
    transition: transform 0.22s var(--ease-snappy-polished);
}
.gt-side-panel {
    position: absolute;
    left: calc(100% + 16px);
    top: 16px;
    width: 386px;
    padding: 26px 28px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    color: #050c0b;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 23, 21, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-12px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
    z-index: 120;
}
.gt-side-panel:before {
    content: "";
    position: absolute;
    left: -28px;
    top: 38px;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-right: 28px solid rgba(255, 255, 255, 0.94);
}
.gt-side-nav__item.is-open > .gt-side-panel,
.gt-side-nav__item:hover > .gt-side-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.gt-side-panel__head {
    display: block;
    border-bottom: 1px solid rgba(77, 38, 168, 0.16);
    padding-bottom: 18px;
    margin-bottom: 0px;
}
.gt-side-panel__icon {
    display: none;
}
.gt-side-panel h3 {
    margin: 0 0 8px;
    font-size: 23px;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--gt-accent);
}
.gt-side-panel p {
    margin: 0;
    color: #050c0b;
    font-size: 15px;
    line-height: 1.55;
}
.gt-side-panel__grid {
    display: block;
}
.gt-panel-card {
    position: relative;
    min-height: 84px;
    padding: 18px 28px 18px 76px;
    border-radius: 0;
    background: transparent;
    color: #050c0b;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(0, 23, 21, 0.1);
}
.gt-panel-card:last-of-type {
    border-bottom: 0px solid rgba(0, 23, 21, 0.1);
}
.gt-panel-card:hover,
.gt-panel-card:focus-visible {
    background: transparent;
}
.gt-panel-card__icon {
    position: absolute;
    left: 0;
    top: 17px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--gt-accent) 13%, #fff);
    color: var(--gt-accent);
    display: grid;
    place-items: center;
}
.gt-panel-card__icon svg {
    width: 31px;
    height: 31px;
}
.gt-panel-card__title {
    display: block;
    font-weight: 900;
    line-height: 1.2;
    font-size: 16px;
}
.gt-panel-card__desc {
    display: block;
    font-size: 14px;
    color: #050c0b;
    line-height: 1.45;
    margin-top: 5px;
}
.gt-panel-card:after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #050c0b;
    transition: transform 0.22s var(--ease-snappy-polished);
}
.gt-panel-card:hover:after,
.gt-panel-card:focus-visible:after {
    transform: translateY(-50%) translateX(25%);
}
.gt-side-panel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    margin: 0 -28px;
    padding: 0 28px;
    background: color-mix(in srgb, var(--gt-color, var(--gt-accent)) 18%, #fff);
    color: #050c0b;
    font-weight: 800;
    text-decoration: none;
}
.gt-side-panel__footer span:last-child {
    display: inline-block;
    transition: transform 0.22s var(--ease-snappy-polished);
}
.gt-side-panel__footer:hover span:last-child,
.gt-side-panel__footer:focus-visible span:last-child {
    transform: translateX(25%);
}
.gt-sidebar__footer {
    margin: 36px 22px 0;
    border: 1px solid rgba(128, 232, 121, 0.24);
    border-radius: 14px;
    padding: 18px 18px 15px;
    display: grid;
    gap: 10px;
    color: #fff;
}
.gt-sidebar__footer strong {
    font-size: 24px;
    color: var(--gt-green);
    line-height: 1;
}
.gt-sidebar__footer span {
    color: #fff;
    font-size: 15px;
    line-height: 1;
    margin-bottom:8px
}
.gt-sidebar__footer a {
    display: flex;
    align-items: center;
    justify-content: left;
    min-height: 50px;
    border: 1px solid rgba(128, 232, 121, 0.32);
    color: #fff;
    background: transparent;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    text-align: center;
}
.gt-sidebar__footer a:hover {
    background: rgba(128, 232, 121, 0.065);
    border: 1px solid rgba(128, 232, 121, 0.62);
}
.gt-sidebar__footer a::before {
  content: '';
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 128 128'%3E%3Cpath d='M0 0h128v128H0z' fill='none' /%3E%3Cpath fill='%23006ca2' d='M88.46 6.33C84.22 4.43 71.85 3.22 64 3.22c-7.84 0-20.23 1.21-24.46 3.11c-4.15 1.86-5.82 5.54-5.82 8.99v97.35c0 3.46 1.67 7.13 5.82 8.99c4.23 1.9 16.62 3.11 24.46 3.11c7.85 0 20.22-1.21 24.46-3.11c4.15-1.86 5.82-5.54 5.82-8.99V15.33c0-3.46-1.67-7.13-5.82-9' /%3E%3Cpath fill='%23fff' d='M69.57 10.75H58.44a1.04 1.04 0 1 1 0-2.08h11.13c.58 0 1.04.46 1.04 1.04c0 .57-.46 1.04-1.04 1.04' /%3E%3Ccircle cx='83.89' cy='10.49' r='1.99' fill='%23fff' /%3E%3ClinearGradient id='SVGSWdwDczA' x1='64' x2='64' y1='104.767' y2='22.714' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fff' /%3E%3Cstop offset='1' stop-color='%2300a0d6' /%3E%3C/linearGradient%3E%3Cpath fill='url(%23SVGSWdwDczA)' d='M39.21 22.71h49.57v82.05H39.21z' /%3E%3Cg fill='%23fff'%3E%3Cpath d='M48.37 108.93v.7l-1.53-1.11l1.53-1.12v.7h.88c1.72 0 2.83.51 2.83 1.99c0 1.49-1.11 2-2.83 2h-1.98v-.83h1.98c1.46 0 2-.32 2-1.17c0-.84-.53-1.16-2-1.16zm18.54 2.88h-5.73v-2.89l2.87-1.21l2.87 1.21v2.89zm-4.9-.84h4.07v-1.51l-2.03-.86l-2.04.86zm18.54.84h-4.8v-3.04h4.8zm-3.96-.84h3.14v-1.37h-3.14z' /%3E%3Cpath d='M81.91 110.1h-.83v-1.8h-3.55v-.83h4.38z' /%3E%3C/g%3E%3C/svg%3E");
 width: 1.2em;
  height: 1.2em;
  background-size: cover;
  display: block;
  margin-right: 10px;
}
.gt-sidebar__footer a:first-of-type::before {
  content: '';
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 28 28'%3E%3Cpath d='M0 0h28v28H0z' fill='none' /%3E%3Cg fill='none'%3E%3Cpath fill='url(%23SVGfwdeUcXT)' d='M2 14C2 7.373 7.373 2 14 2s12 5.373 12 12s-5.373 12-12 12a11.95 11.95 0 0 1-5.637-1.404l-4.77 1.357a1.25 1.25 0 0 1-1.544-1.544l1.356-4.77A11.95 11.95 0 0 1 2 14m7.5-2.25c0 .414.336.75.75.75h7.5a.75.75 0 0 0 0-1.5h-7.5a.75.75 0 0 0-.75.75m.75 3.75a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5z' /%3E%3Cpath fill='url(%23SVGhIiT4cUx)' d='M9.5 11.75c0 .414.336.75.75.75h7.5a.75.75 0 0 0 0-1.5h-7.5a.75.75 0 0 0-.75.75m.75 3.75a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5z' /%3E%3Cdefs%3E%3ClinearGradient id='SVGfwdeUcXT' x1='2.857' x2='23.811' y1='6.5' y2='42.224' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230fafff' /%3E%3Cstop offset='1' stop-color='%23cc23d1' /%3E%3C/linearGradient%3E%3ClinearGradient id='SVGhIiT4cUx' x1='10.287' x2='10.961' y1='11.105' y2='17.621' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fdfdfd' /%3E%3Cstop offset='1' stop-color='%23cceaff' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
 width: 1.2em;
  height: 1.2em;
  background-size: cover;
  display: block;
  margin-right: 10px;
}
.gt-sidebar__footer small {
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.gt-front-content {
    position: relative;
    flex: 1;
    padding: 0 0 0;
}
.gt-hero-wrap {
    margin-block-start: 0;
}
.gt-hero-carousel {
    position: relative;
    height: 710px;
    min-height: calc(100vh - var(--gt-topbar) - 92px);
    overflow: visible;
    background: #0b2b28;
}
.gt-hero-carousel__slides,
.gt-hero-slide {
    position: absolute;
    inset: 0;
}
.gt-hero-slide {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
    display: grid;
    align-items: center;
    padding: 82px clamp(44px, 7vw, 118px) 170px;
}
.gt-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}
.gt-hero-slide__media {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            90deg,
            rgba(0, 23, 21, 0.45) 0%,
            rgba(0, 23, 21, 0.32) 33%,
            rgba(0, 23, 21, 0.08) 100%
        ),
        var(--gt-slide-bg);
    background-position: center;
    background-size: cover;
    transform: none;
    transition: none;
}
.gt-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02));
}
.gt-hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    color: #fff;
    margin-left: 0;
}
.gt-eyebrow {
    display: block;
    margin: 0 0 22px;
    color: var(--gt-green);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.gt-hero-slide h1 {
    font-size: clamp(58px, 5.2vw, 80px);
    line-height: 0.98;
    margin: 0 0 24px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}
.gt-hero-slide__intro {
    font-size: 22px;
    line-height: 1.42;
    color: #fff;
    max-width: 600px;
    margin: 0 0 34px;
}
.gt-hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.gt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}
.gt-btn--primary {
    background: var(--gt-green);
    color: #000000;
}
.gt-btn--primary:hover {
    background: var(--gt-green-dark);
    color: #ffffff;
}
.gt-btn--primary:after {
    content: "→";
    font-size: 23px;
    line-height: 1;
}
.gt-btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
}
.gt-btn--secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 1);
}
.gt-hero-card {
    display: none;
}
.gt-carousel-controls {
    position: absolute;
    left: calc(0% + clamp(44px, 7vw, 118px));
    bottom:110px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 4px
}
.gt-carousel-prev,
.gt-carousel-next {
    display: none;
}
.gt-carousel-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gt-carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    padding: 0;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}
.gt-carousel-dots button.is-active {
    width: 12px;
    border-radius: 50%;
    background: var(--gt-green);
}
.gt-support-cards {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: -66px 24px 0;
    padding: 22px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 22px 70px rgba(0, 23, 21, 0.16);
    border: 1px solid rgba(0, 23, 21, 0.09);
}
.gt-support-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 18px;
    align-items: start;
    min-height: 110px;
    padding: 20px 28px;
    background: transparent;
    color: #050c0b;
    text-decoration: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    border-right: 1px solid rgba(0, 23, 21, 0.1);
}
.gt-support-card:last-child {
    border-right: 0;
}
.gt-support-card:before {
    display: none;
}
.gt-support-card__dot {
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--gt-accent) 18%, #fff);
    position: relative;
}
.gt-support-card__dot:after {
    content: "";
    position: absolute;
    inset: 15px;
    border: 3px solid var(--gt-accent);
    border-radius: 7px;
}
.gt-support-card strong {
    font-size: 18px;
    letter-spacing: -0.025em;
    line-height: 1.18;
}
.gt-support-card span:last-child {
    font-size: 15px;
    line-height: 1.45;
    color: #050c0b;
}
.gt-simple-footer {
    padding: 34px clamp(24px, 4vw, 64px);
    color: #58706c;
}
.gt-editor-placeholder,
.gt-editor-cards {
    padding: 24px;
    border: 2px dashed #7fb344;
    border-radius: 16px;
    background: #f5f1e9;
}
.gt-editor-card {
    padding: 16px;
    margin: 12px 0;
    border: 1px solid #d8d2c5;
    border-radius: 12px;
    background: #fff;
}
@media (max-width: 1280px) {
    :root {
        --gt-sidebar: 270px;
    }
    .gt-side-nav__link {
        grid-template-columns: 58px 1fr 16px;
        gap: 16px;
        padding-left: 22px;
        padding-right: 22px;
    }
    .gt-side-nav__icon {
        width: 58px;
        height: 58px;
    }
    .gt-carousel-controls {
        left: calc(23% + clamp(44px, 7vw, 118px));
    }
    .gt-support-card {
        padding: 18px;
    }
    .gt-support-cards {
        grid-template-columns: 1fr 1fr;
        margin: 20px;
    }
    .gt-support-card {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 23, 21, 0.1);
    }
    .gt-support-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}
@media (max-width: 1080px) {
    .gt-app-shell {
        display: block;
    }
    .gt-sidebar {
        min-height: auto;
        height: auto;
        padding: 20px;
    }
    .gt-logo {
        padding: 0 0 18px;
    }
    .gt-logo__text {
        font-size: 24px;
    }
    .gt-side-nav__link {
        min-height: 76px;
    }
    .gt-side-panel {
        position: static;
        width: auto;
        margin: 8px 0 16px;
        display: none;
        box-shadow: none;
    }
    .gt-side-panel:before {
        display: none;
    }
    .gt-side-nav__item.is-open > .gt-side-panel {
        display: block;
    }
    .gt-topbar {
        height: auto;
        padding: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .gt-hero-carousel {
        height: auto;
        min-height: 680px;
    }
    .gt-hero-slide {
        padding: 60px 32px 150px;
    }
    .gt-hero-slide__content {
        margin-left: 0;
        max-width: 620px;
    }
    .gt-carousel-controls {
        left: 32px;
        bottom: 84px;
    }
}
@media (max-width: 640px) {
    .gt-topbar:after {
        width: 100%;
        margin: 10px 0 0;
    }
    .gt-support-cards {
        grid-template-columns: 1fr;
    }
    .gt-support-card,
    .gt-support-card:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(0, 23, 21, 0.1);
    }
    .gt-support-card:last-child {
        border-bottom: 0;
    }
    .gt-side-panel__grid {
        display: block;
    }
    .gt-hero-slide h1 {
        font-size: 48px;
    }
    .gt-hero-slide__intro {
        font-size: 18px;
    }
    .gt-hero-slide__actions {
        display: grid;
    }
    .gt-btn {
        width: 100%;
    }
}

/* v34 responsive editorial heading scale
   A fluid type scale keeps headings readable across viewport sizes while
   preserving a clear semantic hierarchy. */
:where(.gt-main, .entry-content, .wp-block-post-content) :where(h1, h2, h3, h4, h5, h6) {
    margin-block-start: 0;
    margin-block-end: 0.55em;
    color: var(--gt-text);
    text-wrap: balance;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

:where(.gt-main, .entry-content, .wp-block-post-content) h1 {
    font-size: clamp(2.75rem, 2rem + 2vw, 4.375rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

:where(.gt-main, .entry-content, .wp-block-post-content) h2 {
    font-size: clamp(2.125rem, 1.75rem + 1.4vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

:where(.gt-main, .entry-content, .wp-block-post-content) h3 {
    font-size: clamp(1.75rem, 1.45rem + 1vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

:where(.gt-main, .entry-content, .wp-block-post-content) h4 {
    font-size: clamp(1.375rem, 1.2rem + .5vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

:where(.gt-main, .entry-content, .wp-block-post-content) h5 {
    font-size: clamp(1.125rem, 1.05rem + .3vw, 1.5rem);
    line-height: 1.25;
}

:where(.gt-main, .entry-content, .wp-block-post-content) h6 {
    font-size: clamp(1rem, .95rem + .15vw, 1.1875rem);
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}


:where(.gt-main, .entry-content, .wp-block-post-content) :where(h1, h2, h3) {
    text-wrap: balance;
}
