/* =========================================================================
   OK Beauty Hair — rebuild overrides (loaded AFTER the original style.css)
   Keep style.css as the faithful 1:1 port; put rebuild-specific fixes here.
   ========================================================================= */

/* =========================================================================
   BUTTONS — normalized brand system
   Matches the original site's buy button (bg #f1ac2c, black uppercase Oswald,
   pill radius). Two types: PRIMARY (gold pill) and GHOST (outline pill).
   Sizes: default, .btn-lg, .btn-sm. All site buttons use .btn-carousel/.third.
   ========================================================================= */

/* Reset the legacy fixed sizing that made buttons look clunky
   (width:200px / height:80px / margin-top:20px from style.css). */
.btn-carousel,
a.btn-carousel,
button.btn-carousel,
.btn.third,
summary.btn-carousel,
a.button,
a.added_to_cart {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
}

/* PRIMARY — gold pill, black uppercase Oswald (the brand button). */
.btn-carousel,
a.btn-carousel,
button.btn-carousel,
.btn.third,
summary.btn-carousel,
a.button,
a.added_to_cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: .4em;
    background-color: var(--brand-golden) !important;
    color: #000 !important;
    border: 2px solid var(--brand-golden) !important;
    border-radius: 999px !important;          /* pill, like the original */
    padding: .62rem 1.7rem !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    line-height: 1.1 !important;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, transform .15s ease;
}
.btn-carousel:hover, a.btn-carousel:hover, button.btn-carousel:hover,
.btn.third:hover, summary.btn-carousel:hover, a.button:hover, a.added_to_cart:hover,
.btn-carousel:focus, .btn.third:focus {
    background-color: var(--button-fill-yellow) !important;
    border-color: var(--button-fill-yellow) !important;
    color: #000 !important;
    transform: translateY(-1px);
}

/* GHOST / outline — secondary actions. Add class .btn-ghost in the markup. */
.btn-ghost.btn-carousel,
.btn-ghost.btn.third,
.btn-ghost {
    background-color: transparent !important;
    color: var(--brand-golden) !important;
    border: 2px solid var(--brand-golden) !important;
}
.btn-ghost.btn-carousel:hover, .btn-ghost.btn.third:hover, .btn-ghost:hover {
    background-color: var(--brand-golden) !important;
    color: #000 !important;
}

/* SIZE variants. */
.btn-lg.btn-carousel, .btn-carousel.btn-lg, .btn.third.btn-lg, .btn-lg.third {
    padding: .85rem 2.3rem !important;
    font-size: 1.12rem !important;
}
.btn-sm.btn-carousel, .btn-carousel.btn-sm {
    padding: .42rem 1.15rem !important;
    font-size: .85rem !important;
}

/* Hero carousel buttons: white ghost on the photo for contrast, gold on hover. */
#carousel .btn.third {
    background-color: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    box-shadow: none !important;
    height: auto !important;
}
#carousel .btn.third:hover {
    background-color: var(--brand-golden) !important;
    border-color: var(--brand-golden) !important;
    color: #000 !important;
}
/* First hero CTA stays solid gold (primary) to create hierarchy. */
#carousel .btn.third.btn-primary-cta {
    background-color: var(--brand-golden) !important;
    border-color: var(--brand-golden) !important;
    color: #000 !important;
}

/* Gallery SHOW/HIDE toggle — match the ghost pill. */
#toggle-gallery.click-to-expand {
    background-color: transparent !important;
    color: var(--brand-golden) !important;
    border: 2px solid var(--brand-golden) !important;
    border-radius: 999px !important;
    padding: .55rem 1.8rem !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: all .2s ease-in-out;
}
#toggle-gallery.click-to-expand:hover {
    background-color: var(--brand-golden) !important;
    color: #000 !important;
}

/* =========================================================================
   Accessibility: visually-hide the skip link until keyboard focus.
   (WordPress provides .screen-reader-text; our build doesn't, so the skip
   link was showing permanently in the header.)
   ========================================================================= */
.screen-reader-text {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute !important;
    white-space: nowrap;
}
.skip-link:focus,
.screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    height: auto;
    width: auto;
    margin: 0;
    position: fixed !important;
    top: 8px;
    left: 8px;
    z-index: 100000;
    display: inline-block;
    background-color: var(--brand-golden);
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
}
#primary:focus { outline: none; }

/* =========================================================================
   FORM CONTROLS — consistent height/shape so fields align with buttons.
   ========================================================================= */
.form-control, .form-select {
    min-height: 46px;
    padding: .5rem 1rem;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: #fff;
    color: #1a1a1a;
    font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}
textarea.form-control { min-height: 96px; }
.form-control::placeholder { color: #8a8a8a; }
.form-control:focus, .form-select:focus {
    border-color: var(--brand-golden);
    box-shadow: 0 0 0 3px rgba(241, 172, 44, .35);
    outline: none;
}
.form-label { font-family: 'Oswald', sans-serif; letter-spacing: .02em; margin-bottom: .25rem; }

/* Buttons share the field height so input+button rows line up. */
.btn-carousel, a.btn-carousel, button.btn-carousel, .btn.third, summary.btn-carousel {
    min-height: 46px;
}
.btn-sm.btn-carousel, .btn-carousel.btn-sm { min-height: 38px; }

/* Inline form rows (newsletter, blog filter, shop add-to-basket): vertical-centre. */
.form-inline-row { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }

/* Per-voucher gift blocks on the checkout page. */
.gift-block {
    border: 1px solid rgba(241, 172, 44, .35);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
    background: rgba(241, 172, 44, .04);
}
.gift-block-title { border-bottom: 1px solid rgba(255, 255, 255, .08); padding-bottom: 6px; }

/* =========================================================================
   Service cards: reserve two title lines from tablet up so the images and
   price tables line up across a row (e.g. Nanoplastia vs Permanent
   Straightening, where the longer name wraps to two lines).
   ========================================================================= */
@media (min-width: 768px) {
    #services .treatment-type { min-height: 2.4em; }
}

/* =========================================================================
   GOOGLE REVIEWS — swipeable, scroll-snap carousel (mobile-first, no library).
   ========================================================================= */
.okb-reviews { position: relative; }
.okb-reviews-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;            /* Firefox */
    padding: 4px 2px 14px;
    scroll-padding: 0 2px;
}
.okb-reviews-track::-webkit-scrollbar { display: none; }   /* WebKit */
.okb-review-card {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: center;
    border: 1px solid #2a2a2a;
    background: #16190f;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) { .okb-review-card { flex-basis: 47%; max-width: 47%; scroll-snap-align: start; } }
@media (min-width: 992px) { .okb-review-card { flex-basis: 31.5%; max-width: 31.5%; } }
.okb-review-card .okb-review-text { font-size: .95rem; line-height: 1.5; flex: 1; }
.okb-review-stars { color: #f1ac2c; font-size: .9rem; letter-spacing: 1px; }

/* Prev/next controls (shown on hover-capable, wide screens).
   Scoped under .okb-reviews (specificity 0,2,0) + !important to beat the legacy
   theme rule `button:not(.navbar-toggler){width:200px!important;height:80px!important}` (0,1,1). */
.okb-reviews .okb-reviews-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px !important; height: 42px !important; max-width: 42px !important; margin: 0 !important;
    border-radius: 50% !important;
    background: var(--brand-golden); color: #000; border: none; cursor: pointer;
    display: none !important; align-items: center; justify-content: center; z-index: 5;
    font-size: 20px; line-height: 1; box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.okb-reviews .okb-reviews-nav:hover { background: var(--button-fill-yellow); }
.okb-reviews .okb-reviews-nav.prev { left: -8px; }
.okb-reviews .okb-reviews-nav.next { right: -8px; }
@media (min-width: 992px) and (hover: hover) { .okb-reviews .okb-reviews-nav { display: inline-flex !important; } }

/* Swipe hint under the track on touch devices. */
.okb-reviews-hint { color: #8a8a8a; font-size: .8rem; }
@media (min-width: 992px) and (hover: hover) { .okb-reviews-hint { display: none; } }

/* =========================================================================
   BLOG / ARTICLE typography + YMYL components (quick-answer, byline, sources).
   ========================================================================= */
.post-byline { font-size: .95rem; color: #ddd; margin-top: .5rem; }
.post-byline a { color: var(--brand-golden); }
.img-credit { font-size: .78rem; color: #8a8a8a; margin-top: 4px; }
.img-credit a { color: #b9b9b9; text-decoration: underline; }

.quick-answer {
    border: 1px solid rgba(241, 172, 44, .5);
    border-left: 4px solid var(--brand-golden);
    background: rgba(241, 172, 44, .06);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0 28px;
}
.quick-answer__label {
    color: var(--brand-golden);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
    margin: 0 0 6px;
}
.quick-answer__text { font-size: 1.05rem; line-height: 1.6; color: #fff; }

/* Readable long-form body. */
.post-body { font-size: 1.05rem; line-height: 1.75; color: #eaeaea; }
.post-body h2 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    margin: 2rem 0 .8rem;
    font-size: 1.7rem;
    line-height: 1.25;
}
.post-body h3 { font-family: 'Oswald', sans-serif; color: var(--brand-golden); margin: 1.5rem 0 .6rem; font-size: 1.3rem; }
.post-body p { margin: 0 0 1.1rem; }
.post-body a { color: var(--brand-golden); text-decoration: underline; }
.post-body ul, .post-body ol { margin: 0 0 1.2rem 1.2rem; }
.post-body li { margin-bottom: .5rem; }
.post-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.2rem 0; }
.post-body figure { margin: 1.4rem 0; }
.post-body blockquote {
    border-left: 4px solid var(--brand-golden);
    margin: 1.4rem 0; padding: .4rem 0 .4rem 1.1rem; color: #ddd; font-style: italic;
}
.post-body table {
    width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .98rem;
}
.post-body th, .post-body td { border: 1px solid #333; padding: 10px 12px; text-align: left; vertical-align: top; }
.post-body thead th { background: rgba(241, 172, 44, .12); color: var(--brand-golden); font-family: 'Oswald', sans-serif; }
.post-body tbody tr:nth-child(even) { background: rgba(255, 255, 255, .03); }

.post-sources ol { color: #cfcfcf; line-height: 1.7; }
.post-sources a { color: var(--brand-golden); word-break: break-word; }

/* =========================================================================
   TREATMENT FINDER QUIZ
   ========================================================================= */
.okb-quiz {
    border: 1px solid rgba(241, 172, 44, .35);
    border-radius: 12px;
    padding: 24px;
    background: rgba(241, 172, 44, .04);
}
.okb-quiz__progress {
    color: var(--brand-golden); font-family: 'Oswald', sans-serif;
    text-transform: uppercase; letter-spacing: .08em; font-size: .8rem;
    margin-bottom: 14px; text-align: center;
}
.okb-quiz__q { border: 0; padding: 0; margin: 0; }
.okb-quiz__q legend {
    font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: #fff;
    text-align: center; margin-bottom: 18px; width: 100%;
}
.okb-quiz__opts { display: grid; gap: 12px; }
.okb-quiz .okb-quiz__opt {
    width: 100% !important; max-width: 100% !important; height: auto !important; margin: 0 !important;
    text-align: left; background: #16190f; color: #fff;
    border: 1px solid #3a3a3a !important; border-radius: 10px;
    padding: 14px 18px !important; font-size: 1rem; line-height: 1.4; cursor: pointer;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.okb-quiz .okb-quiz__opt:hover {
    border-color: var(--brand-golden) !important;
    background: rgba(241, 172, 44, .1);
    transform: translateY(-1px);
}
.okb-quiz [data-okb-quiz-result] { text-align: center; }
.okb-quiz__result-label { color: var(--brand-golden); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; margin-bottom: 4px; }
.okb-quiz__result-name { font-family: 'Oswald', sans-serif; font-size: 2rem; margin: 0 0 4px; }
.okb-quiz__result-price { color: #ddd; margin-bottom: 10px; }
.okb-quiz__result-blurb { color: #eaeaea; max-width: 560px; margin: 0 auto 18px; }
.okb-quiz__result-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.okb-quiz .okb-quiz__restart {
    background: none !important; border: none !important; color: #9a9a9a;
    cursor: pointer; width: auto !important; max-width: none !important; margin: 0 !important;
    text-decoration: underline; font-size: .9rem;
}

/* =========================================================================
   PAGINATION — brand pills (replaces Laravel's default Tailwind view).
   ========================================================================= */
.okb-pagination__list {
    list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; align-items: center; padding: 0; margin: 0;
}
.okb-page a, .okb-page span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 14px;
    border: 1px solid var(--brand-golden); border-radius: 999px;
    font-family: 'Oswald', sans-serif; font-size: .95rem; line-height: 1;
    text-decoration: none; transition: background-color .15s ease, color .15s ease;
}
.okb-page a { color: var(--brand-golden) !important; background: transparent; }
/* !important on hover defeats the legacy theme's global a:hover colour, which
   otherwise kept the text gold-on-gold (invisible) when the pill fills. */
.okb-page a:hover, .okb-page a:focus { background: var(--brand-golden) !important; color: #000 !important; }
.okb-page--active span { background: var(--brand-golden) !important; color: #000 !important; font-weight: 600; }
.okb-page--disabled span { color: #6a6a6a; border-color: #3a3a3a; cursor: default; }
.okb-page--gap span { border: none; color: #8a8a8a; min-width: auto; padding: 0 4px; }

/* =========================================================================
   NAVBAR "Treatments" dropdown (Bootstrap dropdown, themed dark/gold).
   ========================================================================= */
.navbar .okb-dropdown {
    background: #0c0f0a;
    border: 1px solid var(--brand-golden);
    border-radius: 8px;
    padding: 6px;
    min-width: 250px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
}
.navbar .okb-dropdown .dropdown-item {
    color: #eee;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .02em;
    border-radius: 6px;
    padding: 9px 12px;
    white-space: normal;
}
.navbar .okb-dropdown .dropdown-item:hover,
.navbar .okb-dropdown .dropdown-item:focus {
    background: var(--brand-golden);
    color: #000;
}
.navbar .okb-dropdown .dropdown-divider { border-top-color: #333; margin: 6px 4px; opacity: 1; }
.navbar .nav-item.dropdown .dropdown-toggle::after { vertical-align: middle; margin-left: .35em; }
/* Keep top-nav links readable on hover. The legacy theme's `nav li a:hover`
   turns them gold (invisible on the dark bar) with !important — so we mirror its
   element chain but add classes to out-specify it. */
.navbar-main .nav-link:not(.neon-button):hover,
.navbar-main .nav-link:not(.neon-button):focus,
.navbar-main li a.nav-link:not(.neon-button):hover,
.navbar-main li a.nav-link:not(.neon-button):focus,
.navbar-main .nav-item.show > .nav-link:not(.neon-button) { color: #fff !important; }

/* =========================================================================
   COOKIE CONSENT banner
   ========================================================================= */
.okb-consent {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
    background: #0c0f0a; border-top: 2px solid var(--brand-golden);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .55); padding: 14px 16px;
}
.okb-consent--hidden { display: none; }
/* The legacy theme sets display on <button>, which overrides the [hidden] attribute — force it. */
.okb-consent [hidden] { display: none !important; }
.okb-consent__inner {
    max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap;
    gap: 12px 20px; align-items: center; justify-content: space-between;
}
.okb-consent__text { flex: 1 1 360px; color: #e6e6e6; font-size: .9rem; line-height: 1.45; }
.okb-consent__text strong { color: var(--brand-golden); display: block; font-family: 'Oswald', sans-serif; margin-bottom: 2px; }
.okb-consent__text p { margin: 0; }
.okb-consent__text a { color: var(--brand-golden); text-decoration: underline; }
.okb-consent__prefs { display: flex; flex-wrap: wrap; gap: 6px 18px; flex-basis: 100%; color: #ddd; font-size: .9rem; }
.okb-consent__prefs label { display: inline-flex; align-items: center; gap: 6px; }
.okb-consent__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.okb-consent .okb-consent__btn {
    width: auto !important; max-width: none !important; height: auto !important; margin: 0 !important;
    background: transparent; color: var(--brand-golden); border: 1.5px solid var(--brand-golden);
    border-radius: 999px; padding: 8px 16px !important; font-family: 'Oswald', sans-serif;
    font-size: .85rem; letter-spacing: .03em; text-transform: uppercase; cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}
.okb-consent .okb-consent__btn:hover { background: var(--brand-golden); color: #000; }
.okb-consent .okb-consent__btn--primary { background: var(--brand-golden); color: #000; }
.okb-consent .okb-consent__btn--primary:hover { background: var(--button-fill-yellow); }

/* =========================================================================
   BUTTON LOADING STATE — add .is-loading (JS does this on submit).
   ========================================================================= */
.btn-carousel.is-loading, .btn.is-loading, .btn-carousel.is-loading span, .btn.is-loading span {
    color: transparent !important;
}
.btn-carousel.is-loading, .btn.is-loading {
    pointer-events: none;
    position: relative;
}
.btn-carousel.is-loading::after, .btn.is-loading::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 18px; height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(0, 0, 0, .3);
    border-top-color: #000;
    border-radius: 50%;
    animation: okb-spin .6s linear infinite;
}
.btn-ghost.is-loading::after { border-color: rgba(241, 172, 44, .35); border-top-color: var(--brand-golden); }
#carousel .btn.is-loading::after { border-color: rgba(255, 255, 255, .4); border-top-color: #fff; }
@keyframes okb-spin { to { transform: rotate(360deg); } }

/* =========================================================================
   BASKET interactivity — hover lift, badge pop, add-to-cart bump.
   ========================================================================= */
#nav-basket { display: inline-flex; align-items: center; gap: .3rem; transition: transform .15s ease; }
#nav-basket:hover { transform: translateY(-2px) scale(1.08); }
#nav-basket .bi-bag { transition: transform .15s ease; }
#cart-count { display: inline-block; }
#cart-count.pop { animation: okb-badge-pop .35s ease; }
@keyframes okb-badge-pop { 0% { transform: scale(.2); } 65% { transform: scale(1.3); } 100% { transform: scale(1); } }
#nav-basket.bump { animation: okb-bump .45s ease; }
@keyframes okb-bump {
    0%, 100% { transform: scale(1) rotate(0); }
    25% { transform: scale(1.2) rotate(-9deg); }
    55% { transform: scale(1.12) rotate(7deg); }
    80% { transform: scale(1.05) rotate(-3deg); }
}

/* Lightweight toast for "added to basket". */
#okb-toast {
    position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px);
    background: var(--brand-golden); color: #000; font-family: 'Oswald', sans-serif; font-weight: 500;
    padding: 10px 22px; border-radius: 999px; box-shadow: 0 4px 16px rgba(0,0,0,.4);
    opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 60;
}
#okb-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================================
   Before/after gallery on service pages: full rectangular images, not the
   portfolio's circular crop (which hides the before|after split).
   ========================================================================= */
.before-after-gallery .thumbImage,
.before-after-gallery .thumbImage img {
    border-radius: 6px !important;
}
.before-after-gallery .thumbImage img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================================================
   FEEDBACK MODAL — success / error after newsletter + handbook submissions.
   ========================================================================= */
.okb-feedback {
    position: relative;
    background: #14160f;
    border: 1px solid rgba(241, 172, 44, .35);
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
}
.okb-feedback--error { border-color: rgba(226, 87, 76, .45); }
.okb-feedback .modal-body { padding: 2.25rem 1.75rem; }
.okb-feedback__close {
    position: absolute; top: 12px; right: 12px;
    filter: invert(1) grayscale(1) brightness(1.6);
    opacity: .55;
}
.okb-feedback__close:hover { opacity: 1; }
.okb-feedback__icon { font-size: 3rem; line-height: 1; margin-bottom: .5rem; }
.okb-feedback--success .okb-feedback__icon { color: var(--brand-golden); }
.okb-feedback--error .okb-feedback__icon { color: #e2574c; }
.okb-feedback__title {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: .5rem;
}
.okb-feedback__text { color: rgba(255, 255, 255, .8); margin-bottom: 1.25rem; }

/* =========================================================================
   FREE HANDBOOK CTA — reusable lead-magnet band (home, blog index, posts).
   ========================================================================= */
.okb-handbook-cta { max-width: 920px; margin-left: auto; margin-right: auto; }
.okb-handbook-cta__inner {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    background: linear-gradient(135deg, #15170f 0%, #1e1c12 100%);
    border: 1px solid rgba(241, 172, 44, .4);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.okb-handbook-cta__icon { flex: 0 0 auto; font-size: 2.6rem; line-height: 1; color: var(--brand-golden); }
.okb-handbook-cta__body { flex: 1 1 auto; text-align: left; }
.okb-handbook-cta__eyebrow {
    display: block; text-transform: uppercase; letter-spacing: 1.5px;
    font-size: .72rem; font-weight: 600; color: var(--brand-golden); margin-bottom: .15rem;
}
.okb-handbook-cta__title {
    display: block; font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 1.45rem; color: #fff; line-height: 1.15; margin-bottom: .35rem;
}
.okb-handbook-cta__text { display: block; color: rgba(255, 255, 255, .8); font-size: .95rem; margin: 0; }
.okb-handbook-cta__action { flex: 0 0 auto; }
@media (max-width: 767.98px) {
    .okb-handbook-cta__inner { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; }
    .okb-handbook-cta__body { text-align: center; }
}
