/* ------------------------------------------------------------------
   The Exhale Space - public website styles
   Palette: cream #f7f2ee, rose #e6b7b9 (buttons), rose-deep #d9a3a6, dusk #d8b5ad
   (testimonials), ink #262626, muted #6f6a66. Fonts: Plus Jakarta Sans (headings),
   Montserrat (body), Gallient (logo wordmark, from the Yogava theme).
   ------------------------------------------------------------------ */
@font-face { font-family: "Gallient"; src: url("/fonts/Gallient.ttf") format("truetype"); font-display: swap; }

:root {
    --ex-cream: #f7f2ee;
    --ex-cream-2: #efe6e0;
    --ex-rose: #e6b7b9;
    --ex-rose-deep: #d9a3a6;
    --ex-dusk: #d8b5ad;
    --ex-ink: #262626;
    --ex-muted: #6f6a66;
    --ex-white: #ffffff;
    --ex-radius: 22px;
    --ex-shadow: 0 14px 40px rgba(38, 38, 38, .08);
}

body.exhale { background: var(--ex-cream); color: var(--ex-ink); font-family: "Montserrat", system-ui, sans-serif; font-size: 15px; line-height: 1.7; }
.exhale h1, .exhale h2, .exhale h3, .exhale h4, .exhale .h1, .exhale .h2, .exhale .h3 { font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif; font-weight: 700; letter-spacing: -.01em; color: var(--ex-ink); }
.exhale a { color: var(--ex-ink); text-decoration: none; }
.exhale a:hover { color: var(--ex-rose-deep); }
.ex-eyebrow { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ex-muted); font-weight: 600; display: inline-flex; align-items: center; gap: .8rem; }
.ex-eyebrow::after { content: ""; width: 56px; height: 1px; background: #cfc5bd; }
.ex-eyebrow.center::after { display: none; }
.ex-section { padding: 5rem 0; }
.ex-title { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.15; }
.ex-lead { color: var(--ex-muted); max-width: 44rem; }

/* Buttons */
.ex-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 999px; padding: .8rem 1.9rem; font-weight: 500; letter-spacing: .14em; font-size: .8rem; text-transform: none; border: 1px solid transparent; transition: all .2s ease; white-space: nowrap; }
.exhale .ex-btn-rose { background: var(--ex-rose); color: var(--ex-ink); }
.exhale .ex-btn-rose:hover { background: var(--ex-rose-deep); color: var(--ex-ink); transform: translateY(-1px); }
.exhale .ex-btn-outline { border-color: rgba(255, 255, 255, .8); color: #fff; }
.exhale .ex-btn-outline:hover { background: rgba(255, 255, 255, .15); color: #fff; }
.exhale .ex-btn-dark { border-color: var(--ex-ink); color: var(--ex-ink); background: transparent; }
.exhale .ex-btn-dark:hover { background: var(--ex-ink); color: #fff; }
.exhale .ex-btn-white { background: #fff; color: var(--ex-ink); box-shadow: var(--ex-shadow); }
.exhale .ex-btn-white:hover { background: #fff; color: var(--ex-rose-deep); }
.exhale button.ex-btn { cursor: pointer; }
.ex-btn-lg { padding: 1rem 2.4rem; font-size: .85rem; }
.ex-btn-block { width: 100%; }

/* Header - floating pill */
.ex-header { position: sticky; top: 14px; z-index: 1030; padding: 0 14px; }
.ex-header-inner { max-width: 1320px; margin: 0 auto; background: rgba(250, 247, 244, .92); backdrop-filter: blur(14px); border-radius: 999px; box-shadow: 0 10px 30px rgba(38, 38, 38, .08); display: flex; align-items: center; justify-content: space-between; padding: .55rem 1.1rem .55rem 1.6rem; transition: padding .2s ease; }
body.scrolled .ex-header-inner { padding-top: .35rem; padding-bottom: .35rem; }
.ex-logo { display: inline-flex; align-items: center; color: var(--ex-ink); }
.ex-logo:hover { color: var(--ex-ink); }
/* Vector wordmark (Views/Shared/_Logo.cshtml) - stays sharp at any size and on any screen density. */
.ex-logo-svg { display: block; height: 54px; width: auto; transition: height .2s ease; }
body.scrolled .ex-logo-svg { height: 46px; }
.ex-nav { display: flex; gap: 2rem; align-items: center; }
.ex-nav a { font-size: .92rem; font-weight: 500; padding-bottom: .15rem; border-bottom: 1px solid transparent; }
.ex-nav a.active, .ex-nav a:hover { border-bottom-color: var(--ex-ink); color: var(--ex-ink); }
.ex-header-actions { display: flex; align-items: center; gap: .6rem; }
.ex-icon-btn { width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(38, 38, 38, .08); display: inline-flex; align-items: center; justify-content: center; color: var(--ex-ink); border: 0; font-size: 1.05rem; }
.ex-icon-btn:hover { color: var(--ex-rose-deep); }
.ex-mobile-nav { max-width: 1320px; margin: .5rem auto 0; background: #fff; border-radius: 22px; box-shadow: var(--ex-shadow); padding: 1rem 1.4rem; display: none; flex-direction: column; gap: .8rem; }
.ex-mobile-nav.show { display: flex; }
.ex-mobile-nav a { font-weight: 500; }

/* Hero - dark photo mosaic */
.ex-hero { position: relative; margin-top: -78px; min-height: min(92vh, 780px); display: flex; align-items: center; overflow: hidden; background: #1a1614; color: #fff; }
.ex-hero-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 14px; }
.ex-hero-grid > div { border-radius: 8px; background-size: cover; background-position: center; opacity: .55; }
.ex-hero-grid > div:nth-child(1) { transform: translateY(-60px); }
.ex-hero-grid > div:nth-child(2) { transform: translateY(40px); }
.ex-hero-grid > div:nth-child(3) { transform: translateY(-30px); }
.ex-hero-grid > div:nth-child(4) { transform: translateY(70px); }
.ex-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 55%, rgba(0, 0, 0, .45), rgba(0, 0, 0, .7)); z-index: 1; }
.ex-hero-content { position: relative; z-index: 2; text-align: center; padding: 8rem 1rem 6rem; width: 100%; }
.ex-hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; margin-bottom: .6rem; }
.ex-hero p { color: rgba(255, 255, 255, .85); font-size: 1.05rem; letter-spacing: .02em; }
.ex-hero .quote { font-style: normal; opacity: .9; }
.ex-hero-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* Photo placeholders (used until real photos are dropped in wwwroot/img) */
.ph { position: relative; overflow: hidden; background: linear-gradient(135deg, #e9dcd4 0%, #d9c3ba 50%, #c9ada6 100%); }
.ph::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), transparent 55%), radial-gradient(circle at 75% 70%, rgba(255, 255, 255, .2), transparent 50%); }
.ph i { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 2.6rem; color: rgba(255, 255, 255, .8); z-index: 1; }
.ph.dark { background: linear-gradient(135deg, #3a2f2b, #6d5750 60%, #8f746c); }
.photo { background-size: cover; background-position: center; }

/* Move on your time (feature carousel) */
.ex-feature { background: var(--ex-cream); }
.ex-feature-card { background: var(--ex-cream-2); border-radius: var(--ex-radius); padding: 2.6rem; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.ex-feature-img { border-radius: var(--ex-radius); min-height: 420px; }
.ex-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid #cfc5bd; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: var(--ex-muted); }

/* Program cards */
.ex-program { background: #fff; border-radius: var(--ex-radius); padding: 1.4rem; box-shadow: var(--ex-shadow); height: 100%; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.ex-program:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(38, 38, 38, .12); }
.ex-program-img { border-radius: 16px; aspect-ratio: 4 / 3.4; }
.ex-program h3 { font-size: 1.15rem; font-weight: 600; margin: 1.2rem 0 .5rem; }
.ex-program p { color: var(--ex-muted); font-size: .9rem; flex-grow: 1; }
.ex-explore { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; display: inline-flex; align-items: center; gap: .6rem; }

/* Testimonials - auto-advancing rail */
.ex-stories { background: var(--ex-dusk); padding: 5rem 0; }
.ex-carousel { position: relative; }
.ex-carousel-track {
    display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; padding: .25rem .25rem 1rem; margin: -.25rem;
    scrollbar-width: none; -ms-overflow-style: none;
}
.ex-carousel-track::-webkit-scrollbar { display: none; }
.ex-carousel-track:focus-visible { outline: 2px solid #fff; outline-offset: 4px; border-radius: var(--ex-radius); }
.ex-carousel-track > .ex-story { flex: 0 0 calc(25% - .94rem); scroll-snap-align: start; }
.ex-carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; color: var(--ex-ink);
    box-shadow: 0 6px 18px rgba(38, 38, 38, .16); display: grid; place-items: center; cursor: pointer; font-size: 1.05rem;
}
.ex-carousel-nav:hover { background: var(--ex-rose); }
.ex-carousel-nav.prev { left: -20px; }
.ex-carousel-nav.next { right: -20px; }
.ex-carousel-nav[disabled] { opacity: .35; cursor: default; }
.ex-carousel-dots { display: flex; justify-content: center; gap: .4rem; margin-top: .5rem; }
.ex-carousel-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(38, 38, 38, .25); cursor: pointer; transition: width .2s ease, background .2s ease; }
.ex-carousel-dots button.active { width: 22px; border-radius: 999px; background: var(--ex-ink); }
.ex-story .who-photo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
@media (max-width: 1199.98px) { .ex-carousel-track > .ex-story { flex-basis: calc(33.333% - .84rem); } }
@media (max-width: 991.98px) {
    .ex-carousel-track > .ex-story { flex-basis: calc(50% - .63rem); }
    .ex-carousel-nav.prev { left: -6px; }
    .ex-carousel-nav.next { right: -6px; }
}
@media (max-width: 575.98px) { .ex-carousel-track > .ex-story { flex-basis: 86%; } }
.ex-story { background: #fff; border-radius: var(--ex-radius); padding: 1.8rem; height: auto; display: flex; flex-direction: column; }
.ex-story .stars { color: #262626; letter-spacing: .1em; font-size: .8rem; margin-bottom: .8rem; }
.ex-story p { color: var(--ex-ink); font-size: .92rem; flex-grow: 1; }
.ex-story .who { display: flex; align-items: center; gap: .8rem; border-top: 1px solid #efe6e0; padding-top: 1rem; margin-top: 1rem; }
.ex-story .who i { width: 34px; height: 34px; border-radius: 50%; background: #f5dede; color: #d98d92; display: inline-flex; align-items: center; justify-content: center; }
.ex-story .who small { display: block; color: var(--ex-muted); }

/* How it works - numbered steps */
.ex-step { background: #fff; border-radius: var(--ex-radius); padding: 1.6rem 1.5rem; box-shadow: var(--ex-shadow); position: relative; }
.ex-step-num {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 12px; background: var(--ex-cream-2); color: var(--ex-rose-deep);
    font-family: "Plus Jakarta Sans", sans-serif; font-size: .95rem; font-weight: 800; letter-spacing: -.02em;
    margin-bottom: .9rem;
}
.ex-step-title { font-size: 1rem; font-weight: 700; margin: 0 0 .35rem; line-height: 1.35; }

/* Values / story */
.ex-value i { font-size: 1.4rem; color: var(--ex-ink); display: block; margin-bottom: .6rem; }
.ex-founder { background: #fff; border-radius: var(--ex-radius); padding: 2rem; box-shadow: var(--ex-shadow); }
.ex-founder h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: .1rem; }
.ex-founder .role { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--ex-muted); margin-bottom: 1rem; }
.ex-founder p { color: var(--ex-muted); }

/* Program detail page */
.ex-rail a { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; color: var(--ex-muted); }
.ex-rail .num { font-family: "Plus Jakarta Sans", sans-serif; font-size: 2.2rem; font-weight: 700; color: #cfc5bd; width: 34px; }
.ex-rail .thumb { width: 72px; height: 96px; border-radius: 12px; position: relative; overflow: hidden; flex-shrink: 0; filter: grayscale(.2); background-position: center top; }
.ex-rail .thumb::after { content: ""; position: absolute; inset: 40% 0 0 0; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .7)); }
.ex-rail .thumb .thumb-label { position: absolute; left: 6px; right: 6px; bottom: 6px; z-index: 1; color: #fff; font-size: .55rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; letter-spacing: .02em; text-shadow: 0 1px 3px rgba(0, 0, 0, .6); }
/* Portrait photos in landscape/portrait frames: keep faces in view */
.ex-feature-img.photo, .ex-program-img.photo, .ex-detail-hero .photo { background-position: center 22%; }
.ex-rail a.active .num { color: var(--ex-ink); }
.ex-rail a.active .thumb { outline: 2px solid var(--ex-ink); outline-offset: 2px; filter: none; }
.ex-detail-hero { position: relative; border-radius: var(--ex-radius); overflow: hidden; min-height: 520px; background: #e9dcd4; padding: 2.2rem; box-shadow: var(--ex-shadow); }
.ex-detail-hero .photo, .ex-detail-hero .ph { position: absolute; inset: 0; }
/* Scrim so the title stays readable whatever photo sits behind it */
.ex-detail-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(250, 244, 240, .94) 0%, rgba(250, 244, 240, .78) 22%, rgba(250, 244, 240, .25) 45%, rgba(38, 30, 26, .18) 75%, rgba(38, 30, 26, .4) 100%); }
.ex-detail-hero .copy { position: relative; z-index: 2; }
.ex-detail-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.ex-detail-hero .sub { color: #4a4340; }
.ex-detail-cta { position: absolute; left: 2rem; right: 2rem; bottom: 2rem; z-index: 2; display: flex; gap: .8rem; flex-wrap: wrap; }
.ex-launch { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; z-index: 2; background: #fff; border-radius: 16px; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--ex-shadow); }
.ex-launch .ico { width: 40px; height: 40px; border-radius: 50%; background: #f5dede; color: #d98d92; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ex-launch small { color: var(--ex-muted); display: block; }
.ex-panel { background: #fff; border-radius: var(--ex-radius); padding: 2rem; box-shadow: var(--ex-shadow); }
.ex-panel h2 { font-size: 1.3rem; font-weight: 600; }
.ex-panel h2 + p strong { display: block; margin-bottom: .6rem; }
.ex-panel hr { border-color: #efe6e0; opacity: 1; margin: 1.6rem 0; }
.ex-panel ul { padding-left: 1.1rem; color: var(--ex-muted); }
.ex-gain { background: var(--ex-cream); border-radius: 14px; padding: .9rem 1.1rem; margin-bottom: .6rem; color: var(--ex-muted); font-size: .93rem; }
.ex-gain strong { color: var(--ex-ink); font-weight: 600; }
.ex-gift { background: #fff; border-radius: var(--ex-radius); padding: 1.4rem 1.6rem; box-shadow: var(--ex-shadow); }
.ex-gift h4 { font-size: 1rem; font-weight: 600; }

/* Contact */
.ex-contact-card { background: #fff; border-radius: var(--ex-radius); padding: 2rem; box-shadow: var(--ex-shadow); height: 100%; }
.ex-contact-card .lbl { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ex-muted); font-weight: 600; margin-bottom: .3rem; }
.ex-contact-card .row-item { padding: 1rem 0; border-bottom: 1px solid #efe6e0; }
.ex-contact-card .row-item:last-child { border-bottom: 0; }
.ex-form { background: var(--ex-cream); border-radius: 18px; padding: 1.5rem; }
.exhale .form-control, .exhale .form-select { border-radius: 10px; border-color: #e3d9d2; padding: .75rem .9rem; background: #fff; font-size: .95rem; }
.exhale .form-control:focus, .exhale .form-select:focus { border-color: var(--ex-rose-deep); box-shadow: 0 0 0 .2rem rgba(217, 163, 166, .25); }
.exhale .form-label { font-weight: 600; font-size: .85rem; }
.exhale .form-check-input:checked { background-color: var(--ex-ink); border-color: var(--ex-ink); }

/* CTA band */
.ex-cta { background: #1a1614; color: #fff; border-radius: 28px; padding: 3.5rem 2rem; text-align: center; }
.ex-cta h2 { color: #fff; }

/* Auth cards reuse */
.ex-auth { max-width: 460px; margin: 4rem auto; background: #fff; border-radius: var(--ex-radius); padding: 2.5rem; box-shadow: var(--ex-shadow); }
.ex-auth .otp-input { letter-spacing: .5rem; font-size: 1.6rem; text-align: center; }
.exhale .nav-pills { background: var(--ex-cream); border-radius: 999px; padding: .25rem; gap: .25rem; }
.exhale .nav-pills .nav-link { border-radius: 999px; color: var(--ex-muted); font-size: .88rem; font-weight: 500; padding: .5rem 1rem; }
.exhale .nav-pills .nav-link:hover { color: var(--ex-ink); }
.exhale .nav-pills .nav-link.active { background: var(--ex-rose); color: var(--ex-ink); }
.exhale .input-group-text { border-color: #e3d9d2; border-radius: 10px 0 0 10px; }
.exhale .form-text { color: var(--ex-muted); }

/* Announcements */
.ex-announce { background: #fff; border-left: 4px solid var(--ex-rose); border-radius: 14px; padding: .9rem 1.2rem; box-shadow: var(--ex-shadow); }

/* Footer */
.ex-footer { background: #f0e8e2; padding: 4rem 0 2rem; margin-top: 4rem; color: var(--ex-ink); }
.ex-footer a { display: block; margin-bottom: .45rem; color: var(--ex-ink); font-size: .92rem; }
.ex-footer-title { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; margin-bottom: .9rem; }
.ex-logo-footer { align-items: flex-start; }
.ex-logo-footer .ex-logo-svg { height: 68px; }
.ex-footer-bottom { border-top: 1px solid #ddd0c8; margin-top: 3rem; padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: var(--ex-muted); }
.ex-footer-bottom a { display: inline; margin: 0; color: var(--ex-muted); }

/* Utility */
.ex-cream-2 { background: var(--ex-cream-2); }
.ex-muted { color: var(--ex-muted); }
.ex-tag { display: inline-block; background: #fff; border-radius: 999px; padding: .2rem .7rem; font-size: .72rem; color: var(--ex-muted); }
.ex-page-head { padding: 3rem 0 1rem; }

@media (max-width: 991.98px) {
    .ex-hero { margin-top: -70px; min-height: 80vh; }
    .ex-hero-grid { grid-template-columns: repeat(2, 1fr); }
    .ex-hero-grid > div:nth-child(n) { transform: none; }
    .ex-detail-hero { min-height: 440px; }
    .ex-section { padding: 3.5rem 0; }
}
@media (max-width: 575.98px) {
    .ex-header-inner { padding-left: 1rem; }
    .ex-logo-svg { height: 40px; }
    .ex-detail-cta { flex-direction: column; }
}

/* Enquiry popup */
.ex-popup .modal-dialog { max-width: 720px; }
.ex-popup-card { border: 0; border-radius: 26px; overflow: hidden; display: grid; grid-template-columns: 240px 1fr; box-shadow: 0 30px 80px rgba(38, 38, 38, .25); }
.ex-popup-side { background: var(--ex-ink); color: #fff; padding: 2rem 1.6rem; display: flex; flex-direction: column; justify-content: center; gap: .6rem; }
.ex-popup-side .ex-eyebrow { color: var(--ex-rose); }
.ex-popup-big { font-family: "Plus Jakarta Sans", sans-serif; font-size: 4.4rem; font-weight: 800; line-height: .9; letter-spacing: -.04em; display: flex; align-items: center; gap: .5rem; }
.ex-popup-big small { font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; line-height: 1.1; opacity: .85; }
.ex-popup-body { padding: 2rem 1.8rem 1.6rem; background: #fff; }
.ex-popup-title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.45rem; letter-spacing: -.02em; margin-bottom: .4rem; }
.ex-popup-close { position: absolute; top: .8rem; right: .8rem; width: 36px; height: 36px; border-radius: 50%; border: 0; background: #fff; box-shadow: 0 4px 14px rgba(38, 38, 38, .12); color: var(--ex-ink); z-index: 2; }
.ex-popup .form-control, .ex-popup .form-select { border-radius: 12px; padding: .65rem .9rem; border-color: #e3dbd4; }
.ex-popup .form-control:focus, .ex-popup .form-select:focus { border-color: var(--ex-rose-deep); box-shadow: 0 0 0 .2rem rgba(230, 183, 185, .35); }
.ex-popup-later { display: block; width: 100%; background: none; border: 0; color: var(--ex-muted); font-size: .8rem; margin-top: .7rem; text-decoration: underline; }
.ex-popup-check { width: 64px; height: 64px; border-radius: 50%; background: var(--ex-rose); color: var(--ex-ink); display: grid; place-items: center; font-size: 1.8rem; margin: 0 auto 1rem; }
@media (max-width: 575.98px) {
    .ex-popup-card { grid-template-columns: 1fr; }
    .ex-popup-side { padding: 1.4rem 1.4rem 1rem; flex-direction: row; align-items: center; gap: 1rem; }
    .ex-popup-side .ex-eyebrow, .ex-popup-side p { display: none; }
    .ex-popup-big { font-size: 3rem; }
}

/* Gift cards page */
.ex-gift-hero { border-radius: 28px; min-height: 380px; box-shadow: var(--ex-shadow); }
.ex-gift-hero.ph { display: grid; place-items: center; font-size: 3rem; color: var(--ex-rose-deep); background: var(--ex-cream-2); }
.ex-code-form { display: flex; gap: .6rem; max-width: 520px; margin: 1.2rem auto 0; }
.ex-code-form .form-control { border-radius: 999px; letter-spacing: .12em; font-weight: 600; text-align: center; border-color: #e3dbd4; }
.ex-code-form .form-control:focus { border-color: var(--ex-rose-deep); box-shadow: 0 0 0 .2rem rgba(230, 183, 185, .35); }
.ex-code-result { border-radius: 18px; padding: 1.1rem 1.3rem; display: inline-block; min-width: 320px; }
.ex-code-result.good { background: #eef6f1; color: #2f6752; }
.ex-code-result.bad { background: #fbeeed; color: #9c3f3a; }
.ex-code-result .code { font-family: Consolas, Menlo, monospace; font-size: 1.4rem; letter-spacing: .14em; font-weight: 700; }
@media (max-width: 575.98px) { .ex-code-form { flex-direction: column; } .ex-code-result { min-width: 0; width: 100%; } }

/* Uploaded logo (Admin > Site content > Header & footer); the vector logo is used when none is set */
.ex-logo-img { display: block; height: 54px; width: auto; max-width: 220px; object-fit: contain; }
.ex-logo-footer .ex-logo-img { height: 68px; }
@media (max-width: 575.98px) { .ex-logo-img { height: 40px; } }
