/* =====================================================
   DrStella MD — Public Site CSS
   Palette: cream bg, dark-green brand, warm orange accent
   ===================================================== */

/* Fonts loaded in _Layout.cshtml: Roboto, Roboto Slab, Oswald */

:root {
    --brand:   #2780a3;
    --brand-d: #1d6886;
    --accent:  #f3c298;
    --bg:      #ffffff;
    --surface: #ffffff;
    --text:    #17161a;
    --muted:   #929292;
    --radius:  5px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
    padding: 0;
    display: block;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: #17161a;
    line-height: 1.2;
}

a { color: var(--brand); }
a:hover { color: var(--brand-d); }

/* ── Header ─────────────────────────────────────────── */

.site-topbar {
    background: #2780a3;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.site-topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 14px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.topbar-left span,
.topbar-left a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.topbar-left i {
    margin-right: 4px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: background .2s;
}

.topbar-social:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.site-header {
    background: #fff;
    /* border-bottom: 3px solid #2780a3; */
    top: 0;
    z-index: 1002;
    isolation: isolate;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 90px;
    padding: 8px 0;
    position: relative;
    z-index: 1;
}

.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    width: 90px;
    max-width: 90px;
    height: auto;
    display: block;
}

.site-logo-label {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #17161a;
    margin-top: 3px;
    letter-spacing: .3px;
    text-align: center;
}

.site-nav-links,
.site-nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem 1.1rem;
    flex: 1;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.site-nav-links a,
.site-nav-desktop a {
    color: #17161a;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.site-nav-desktop a:hover,
.site-nav-desktop a:focus-visible {
    color: #2780a3;
}

.site-nav-desktop a.nav-active,
.site-nav-links a.nav-active {
    color: #2780a3 !important;
}

.site-header-actions {
    display: flex;
    gap: .6rem;
    position: relative;
    z-index: 2;
}

.site-cta {
    background: #2780a3;
    color: #fff;
    text-decoration: none;
    padding: 9px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    /*text-transform: uppercase;
    letter-spacing: .5px;*/
    border-radius: 0;
    white-space: nowrap;
    display: inline-block;
}

.site-cta:hover,
.site-cta:focus-visible {
    background: #1d6886;
    color: #fff;
}

/* ── Hero ───────────────────────────────────────────── */

.hero-section {
    background: var(--brand);
    color: #fff;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: .5rem;
}

.hero-section h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 420px;
    margin-bottom: 2rem;
}

.hero-visual { position: relative; height: 260px; }

.hero-blob {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.1);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    position: absolute;
    top: -20px;
    right: 0;
}

/* ── Page Hero ──────────────────────────────────────── */

.page-hero {
    background: #2780a3;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin: 0 0 1rem 0;
    font-weight: 900;
}

.page-hero .breadcrumb {
    font-size: .9rem;
    opacity: .9;
    letter-spacing: .5px;
    justify-content: center;
    font-weight: bold;
}

.page-hero .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero--media {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('/drstellasite/pexels-tima-miroshnichenko-8376301-1-1-scaled.jpg') center bottom / cover no-repeat;
    padding: 250px 0;
}

.page-hero--media h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: .6rem;
    color: #fff;
}

.page-hero--media .breadcrumb {
    font-size: .88rem;
    opacity: 1;
    color: #fff;
}

.page-hero--media .breadcrumb a {
    color: #fff;
}

/* ── Buttons ────────────────────────────────────────── */

.btn-brand {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: .65rem 1.5rem;
    border-radius: var(--radius);
    /*font-weight: 700;*/
    text-decoration: none;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;

    width: 100%;
    padding: 10px 15px;
    color: #000;
    background-color: #f3c298;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px 4px #0000001a !important;
    margin: 20px 0;
    max-width: 300px;
    align-self: flex-start;
    font-family: 'Oswald';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.btn-brand:hover { background: #bf5b1b; transform: translateY(-1px); color: #fff; }

.btn-brand-outline {
    display: inline-block;
    border: 2px solid var(--brand);
    color: var(--brand);
    padding: .6rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.btn-brand-outline:hover { background: var(--brand); color: #fff; }

/* ── Sections ───────────────────────────────────────── */

.section-pad { padding: 5rem 0; }
.home-feature .container{
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
}
.home-telehealth.section-pad{text-align: center;}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--brand);
}

.page-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: 1.5rem;
}

/* ── Media Videos ───────────────────────────────────── */

.media-videos {
    background: var(--bg);
}

.media-videos-header {
    background: #2780a3;
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0;
}

.media-videos-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 900;
}

.media-videos-header p {
    margin: .5rem 0 0 0;
    opacity: .95;
    font-size: .95rem;
}

/* ── Post Cards ─────────────────────────────────────── */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

.post-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }

.post-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.post-card-img--placeholder {
    background: linear-gradient(135deg, var(--brand) 0%, #2d8a6c 100%);
}

.post-card-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-body h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.05rem;
    margin: .4rem 0 .5rem;
    color: var(--text);
}

.post-card-body p {
    font-size: .9rem;
    color: var(--muted);
    flex: 1;
    margin-bottom: .75rem;
}

.post-tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: #e8f5ef;
    color: var(--brand);
    padding: .2rem .6rem;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
}

.read-more {
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.read-more:hover { color: #bf5b1b; }

/* ── Blog filters ───────────────────────────────────── */

.filter-chip {
    display: inline-block;
    padding: .35rem .9rem;
    border-radius: 20px;
    font-size: .83rem;
    font-weight: 600;
    text-decoration: none;
    background: #e9e3d8;
    color: var(--text);
    transition: background .15s, color .15s;
}

.filter-chip:hover, .filter-chip.active {
    background: var(--brand);
    color: #fff;
}

/* ── Blog Detail ────────────────────────────────────── */

.page-hero--blog-detail {
    background: #2780a3;
    padding: 2.5rem 0 2rem;
    text-align: left;
}

.blog-breadcrumb {
    font-size: .82rem;
    color: rgba(255,255,255,.8);
    margin-bottom: .75rem;
}
.blog-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.blog-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.blog-breadcrumb span { color: rgba(255,255,255,.7); }

.blog-detail-hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff;
    margin: 0 0 .75rem;
    line-height: 1.25;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    font-size: .85rem;
    color: rgba(255,255,255,.85);
}
.blog-cat-badge {
    background: rgba(255,255,255,.2);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
}
.blog-meta-author { font-weight: 600; color: #fff; }
.blog-meta-sep, .blog-meta-date { color: rgba(255,255,255,.7); }

/* Two-column layout */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.blog-detail-cover {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.blog-detail-content {
    font-size: 1rem;
    line-height: 1.85;
    color: #333;
}
.blog-detail-content h2 { font-family: 'Roboto Slab', serif; font-size: 1.4rem; margin-top: 2rem; color: #17161a; }
.blog-detail-content h3 { font-size: 1.15rem; margin-top: 1.5rem; }
.blog-detail-content p  { margin-bottom: 1.2rem; }
.blog-detail-content ul, .blog-detail-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.blog-detail-content li { margin-bottom: .45rem; }
.blog-detail-content strong { color: #17161a; }

/* Sidebar */
.sidebar-widget {
    background: #f7f9fa;
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.sidebar-widget-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #17161a;
    margin: 0 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #2780a3;
}

.sidebar-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-recent-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .6rem 0;
    border-bottom: 1px solid #e5e5e5;
}
.sidebar-recent-item:last-child { border-bottom: none; }
.sidebar-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.sidebar-recent-link {
    font-size: .82rem;
    color: #17161a;
    text-decoration: none;
    line-height: 1.4;
    font-weight: 500;
}
.sidebar-recent-link:hover { color: #2780a3; }

.sidebar-cta p { font-size: .85rem; color: #555; margin-bottom: 1rem; }

@media (max-width: 767px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* ── CTA Section ────────────────────────────────────── */

.cta-section {
    background: var(--brand);
    color: #fff;
    padding: 4rem 0;
}

.cta-inner { max-width: 640px; }

.cta-text h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-text p { opacity: .88; margin-bottom: 1.5rem; }

/* ── Policy Page ─────────────────────────────────────── */

.policy-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('/drstellasite/d1.jpg') center center / cover no-repeat;
}

.policy-hero-breadcrumb {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    letter-spacing: .5px;
}

.policy-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.policy-hero-breadcrumb a:hover {
    text-decoration: underline;
}

.policy-page-label {
    text-align: center;
    font-size: .95rem;
    color: #555;
    margin-bottom: .3rem;
    font-weight: 500;
}

.policy-container {
    max-width: 860px;
}

.policy-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #17161a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .5rem;
    padding-top: 0;
}

.policy-updated {
    font-size: .95rem;
    color: #444;
    text-align: center;
    margin-bottom: 2.5rem;
}

.policy-page h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
    color: #17161a !important;
    margin: 1.8rem 0 .5rem !important;
    padding: 0 !important;
    border: none !important;
    text-transform: none !important;
    line-height: 1.4;
}

.policy-num {
    margin-right: 4px;
}

.policy-page h3 {
    font-family: 'Roboto', sans-serif;
    font-size: .97rem;
    font-weight: 700;
    color: #17161a;
    margin: 1.2rem 0 .4rem;
    text-transform: none;
}

.policy-page p {
    font-size: .95rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: .85rem;
}

.policy-effective {
    font-style: italic;
    color: var(--muted);
}

.policy-page a {
    color: var(--brand);
}

.policy-list {
    padding-left: 1.6rem;
    margin-bottom: 1rem;
}

.policy-list li {
    font-size: .95rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: .35rem;
}

.policy-divider {
    border: none;
    border-top: 2px solid #e8e8e8;
    margin: 2.5rem 0;
}

.policy-contact-box {
    background: #f0f7fb;
    border-left: 4px solid var(--brand);
    border-radius: 4px;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
}

.policy-contact-box strong {
    display: block;
    font-size: 1rem;
    color: var(--brand);
    margin-bottom: .5rem;
}

.policy-contact-box p {
    margin: .2rem 0;
    font-size: .92rem;
}

/* ── Footer ─────────────────────────────────────────── */

.site-footer {
    background: #0a0a0a;
    padding: .85rem 0;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    color: #fff;
}

.footer-brand {
    color: #e05c2a;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-links a {
    color: #fff !important;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.footer-links a:hover { color: #e05c2a !important; }

.footer-sep {
    color: rgba(255,255,255,.4);
    font-size: 13px;
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-section { padding: 3rem 0; }

    .site-footer-inner { flex-direction: column; text-align: center; }
}

/* ── Home V2 Exact ─────────────────────────────────── */

.home-v2 {
    background: #fff;
    position: relative;
}

.home-v2 .home-heading,
.home-v2 h2 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-family: "Oswald", sans-serif;
    font-size: 50px;
    padding-top: 40px;
    margin-bottom: 40px;
}

.home-v2 .home-heading.center { text-align: center; }

.hero-shell {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero-slider-frame {
    height: 330px;
    background: linear-gradient(90deg, rgba(255,255,255,.84), rgba(255,255,255,.2)), url('/drstellasite/stella-hero.jpg') center/cover;
    border: 1px solid #d8dee3;
    position: relative;
    overflow: hidden;
}

.hero-card-overlay {
    width: 185px;
    background: rgba(255,255,255,.72);
    border: 1px solid #9fb2bc;
    box-shadow: 0 14px 28px rgba(0,0,0,.10);
    position: absolute;
    left: 34px;
    top: 24px;
    padding: 12px;
}

.hero-avatar-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: scale-down;
    border: 6px solid #7ea4b7;
}

.hero-caption {
    margin: 10px 0 0;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #173b4f;
}

.hero-title-box {
    position: absolute;
    right: 44px;
    top: 106px;
    background: rgba(255,255,255,.62);
    padding: 16px 22px;
}

.hero-title-box h1 {
    color: #36596c;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.75rem);
    margin: 0;
    text-transform: none;
    line-height: 1.1;
}

.prep-section {
    padding: .35rem 0 1.35rem;
}

.prep-section .container-fluid.prep-grid{padding-left: 0; padding-right: 0;}

.prep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}

.prep-panel {
    background: linear-gradient(180deg, #84a7b7 0%, #c9edf3 100%);
    min-height: 380px;
    color: #fff;
    padding: 80px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.prep-panel h2 {
    /*font-size: clamp(1.7rem, 3vw, 2.55rem);*/
    font-size: 60px;
    margin-bottom: 40px;
    line-height: 70px;
    font-weight: 600;
    color: #fff;
}

.prep-panel p,
.prep-panel .as-seen-mini {
    color: #fff;
}

.prep-panel .btn-brand {
    min-width: 60%;
    text-align: center;
    align-self: center;
    margin-top: 50px;
    width: auto;
    color: #000;
    font-weight: 500;
    line-height: 40px;
    font-size: 25px;
    background-color: #f3c298;
    text-transform: uppercase;
    box-shadow: 0 4px 20px 4px #0000001a !important;
    font-family: 'Oswald';
}

.as-seen-mini {
    margin: 70px auto 8px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    /*opacity: .8;*/
    font-size: 18px;
}

.mini-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
}

.mini-logos img {
    max-height: 40px;
    width: auto;
}

.prep-photo-wrap {
    background: #fff;
}

.prep-photo {
    display: block;
    width: 100%;
    object-fit: cover;
}

.cabinet-section {
    padding-top: 10px;
    padding-bottom: 2rem;
}



.cabinet-ribbon-link {
    display: block;
    max-width: 1140px;
    margin: 10px auto 50px;
}

.cabinet-ribbon-image {
    display: block;
    width: 100%;
    border: 1px solid #d6dde3;
}

.cabinet-slider {
    --cabinet-per-view: 4;
    margin-top: 14px;
    position: relative;
}

.cabinet-viewport {
    overflow: hidden;
}

.cabinet-track {
    display: flex;
    margin: 0 -9px;
    transition: transform .35s ease;
    will-change: transform;
}

.cabinet-slide {
    flex: 0 0 calc(100% / var(--cabinet-per-view));
    padding: 0 36px;
}

.cabinet-card {
    text-align: center;
    background: #fff;
    padding: 0 0 10px;
}

.cabinet-nav {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(24, 58, 76, .85);
    color: #fff;
    font-size: 1.05rem;
    line-height: 1;
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 3;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.cabinet-nav-prev { left: -10px; }
.cabinet-nav-next { right: -10px; }

.cabinet-nav:disabled {
    opacity: .35;
    cursor: default;
}

.cabinet-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 10px;
    background: #8badbe;
}

.cabinet-card h3 {
    font-family: 'Oswald';
    font-size: 26px;
    font-weight: 500;
    color: #4c4a4a;
    text-transform: uppercase;
    margin: 25px 0;
}

.cabinet-card a {
    display: inline-block;
    text-transform: uppercase;
    width: 100%;
    text-decoration: none;
    /*background: #edc39d;
    color: #3b2a1e;
    font-size: .6rem;
    font-weight: 800;
    padding: 5px 0;*/

    background: #f3c298;
    color: #4c4a4a;
    transition: ease-in-out 0.2s;
    padding: 6px;
    font-family: 'Oswald';
    font-size: 18px;
    min-height: 40px;
    font-weight: 500;
    border-radius: 5px;
}

.strength-section {
    background: #88a9b9;
    padding: 5rem 0;
    margin-top: 65px;
}

.asseen{text-align: center;}

.strength-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 2rem;
    align-items: center;
}

.home-v2 .home-kicker.light {
    /*text-transform: uppercase;*/
    /*letter-spacing: 2px;*/
    /*font-size: 28px;*/
    color: #1a4f64;
    /*font-weight: 400;*/

    font-family: "Oswald", sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
    line-height: 1.2;
    font-size: 50px;
}
.home-v2 p.home-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 28px;
    color: #000;
    font-weight: 400;
    font-family: "Oswald", sans-serif !important;}

.home-v2 .home-kicker.light { color: rgba(255,255,255,.9); }

/* ── Press Logos Marquee ─────────────────────────── */
.press-marquee-wrap {
    overflow: hidden;
    width: 100%;
    margin-bottom: 3.5rem;
}

.press-marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
}

.press-marquee-wrap:hover .press-marquee-track {
    animation-play-state: paused;
}

.press-marquee-track img {
    max-height: 50px;
    width: auto;
    flex-shrink: 0;
}

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

.strength-grid h2,
.strength-grid p {
    /*color: #fff;*/
}
.strength-grid p {
    /*color: #fff;*/
    font-weight: 500;
}
.strength-grid h2 {
    /*color: #fff;*/
    font-weight: 600;
    line-height: 1.2;
    font-size: 40px;
    margin-bottom: 20px;
}

.strength-photo {
    display: block;
    width: 100%;
    height: auto;
}

.home-feature-grid,
.home-telehealth-grid,
.home-book-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.3rem;
    align-items: center;
}
.home-book-grid{
    grid-template-columns: 1.3fr 1fr;
}
.container-fluid.home-telehealth-grid{padding-left: 0; padding-right: 0;}

.home-feature-photo,
.home-telehealth-photo,
.home-book-art {
    display: block;
    width: 100%;
    height: auto;
}

.home-feature-photo.round {
    /*width: 290px;*/
    border-radius: 50%;
    justify-self: center;
    max-width: 530px;
}

.home-feature h2,
.home-telehealth h2,
.home-book h2 {
    /*font-size: clamp(1.4rem, 2.5vw, 2rem);*/
    color: #1f1f1f;
    font-size: 36px !important;
    padding-top: 2px;
    margin-bottom: 20px;
}

.home-feature p,
.home-telehealth p,
.home-book p {
    color: #4e4e4e;
    font-weight: 500;
}

.home-telehealth p.telehealth-subheading {
    /*text-transform: uppercase;*/
    font-size: 17px;
    letter-spacing: .2px;
    font-family: "Oswald", sans-serif !important;
    font-weight: 400;
}

.home-book {
    background: linear-gradient(180deg, #f2d0a9 0%, #f8ddb8 100%);
    padding: 5rem 0 2.8rem 0;
    text-align: center;
}

.book-points {
    list-style: none;
    padding-left: 0;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 1rem;
}

.book-points li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-family: 'Oswald';
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    color: #4c4a4a;
}

.book-points li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f3c298;
    margin-top: 12px;
}

.home-testimonials {
    /* padding-top: 7rem; */
    padding-bottom: 2rem;
}
.home-testimonials .container{
    max-width: 94%;
    margin-right: auto;
    margin-left: auto;
}

/* ── Review Slider ───────────────────────────────── */

.review-slider-wrap {
    /* padding-top: 80px; */
}

.review-slider-viewport {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.review-slider-track {
    display: flex;
    transition: transform .4s ease;
}

.review-slide {
    flex-shrink: 0;
    padding: 0 40px;
    box-sizing: border-box;
}

.review-wrap {
    margin-top: 70px;
    padding-top: 105px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
    min-height: 420px;
    background: linear-gradient(180deg, #ceebec 0%, #ffdfc3 100%);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 80%;
}

.review-icon {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.review-text {
    color: #2f4a57;
    font-size: 16px;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.review-stars {
    color: #efc29a;
    font-size: 2.5rem;
    letter-spacing: 0px;
    margin-bottom: 10px;
    line-height: 1;
}

.review-stars .star-empty {
    opacity: .3;
}

.review-name {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #17161a;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.review-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pagination dots */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.rdot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2780a3;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}

.rdot.active {
    background: #2780a3;
}

/* Legacy grid (not used but kept for safety) */
.home-testimonial-grid { display: none; }

/* ── Newsletter Float + Scroll-to-top ───────────────── */

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2780a3;
    color: #fff;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
    transition: background .2s;
}
.scroll-top-btn.visible { display: flex; }
.scroll-top-btn:hover { background: #1d6886; }

.floating-book,
.floating-telehealth {
    position: fixed;
    right: 0;
    z-index: 30;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 10px 7px;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: .72rem;
    text-decoration: none;
}

.floating-book {
    top: 140px;
    background: #2780a3;
    color: #fff;
}

.floating-telehealth {
    top: 212px;
    background: #efc29a;
    color: #2b1c10;
}

.animate-rise { animation: riseIn .7s ease-out; }
.animate-fade { animation: fadeIn 1.2s ease-out; }

.home-feature h2, 
.home-telehealth h2, 
.home-book h2{font-family: "Oswald", sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: 40px;}
.home-book h2{font-weight: 400;}   
.home-book .btn-brand {max-width: 80%;}

.btn-brand:hover {
    background-color: #7098ab !important;
    border-color: #7098ab !important;
    color: #fff !important;
}    

@keyframes riseIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.breadcrumb{justify-content: center; color: #fff; margin-bottom: 0;}
.breadcrumb,
.breadcrumb a,
.breadcrumb span{color: #fff !important; font-size: 15px; letter-spacing: .5px; font-weight: 600;}
.test-hero .test-hero-content{padding-bottom: 0;}
.page-hero--pray h1{display: none;}

.container.th-hero-content{padding-bottom: 0;}
section.th-hero{background: url('/drstellasite/pexels-tima-miroshnichenko-8376301-1-1-scaled.jpg') center bottom / cover no-repeat;}

section.page-hero--pray{background: url(https://web.drstellamd.com/wp-content/uploads/2022/05/Pray-for-America-1.jpg) center bottom / cover no-repeat; padding: 250px 0; position: relative;}
section.page-hero--pray::before{position: absolute; content: ""; left: 0; right: 0; top: 0; bottom: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, .6);}

.pray-section .pray-content{max-width: 100%;}
.pray-section .pray-content h2{text-align: left; font-weight: 600;}
.pray-section .pray-content .pray-link{text-align: left;}
.pray-section .pray-content .pray-link a{color: #17161a; font-weight: 400;}

.container.brr-hero-content{padding-bottom: 0;}

section.lal-hero{padding: 250px 0;}

section.booking-hero{background-position: center bottom; }
.container.booking-hero-content{padding-bottom: 0;}

.container.about-hero-content{padding-bottom: 0;}

.container.contact-hero-content{padding-bottom: 0;}

.hmadi-single-blog--thumb img{width: 100%; height: auto; margin-bottom: 50px;}
.single-blog-content .custom_table_outer table.table tr td{line-height: 30px;}

p.brr-retreat-text{font-size: 30px; font-weight: bold; color: #000;}
p.brr-retreat-text a{color: #000;}
a.brr-questionnaire-link{-webkit-text-stroke-width: 1px; stroke-width: 1px; -webkit-text-stroke-color: #000; stroke: #000; color: #21E6CE; font-size: 30px; font-style: normal;}
a.brr-questionnaire-link:hover{-webkit-text-stroke-width: 1px; stroke-width: 1px; -webkit-text-stroke-color: #000; stroke: #000; color: #21E6CE; font-size: 30px; font-style: normal; text-decoration: none;}
a.brr-btn-firepower{background-color: #D57561; text-shadow: 0px 14px 10px rgba(0,0,0,0.3); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5); border-style: solid; border-width: 8px 8px 8px 8px; border-color: #2780A3; border-radius: 28px 28px 28px 28px; font-size: 18px;}
a.brr-btn-firepower:hover{background: #fff; color: #2780A3;}
p.brr-prayer-line{color: #000; font-size: 19px; font-weight: 600; margin: 25px auto;}
a.brr-btn-register{background-color: #2780A3; text-shadow: 0px 14px 10px rgba(0,0,0,0.3); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5); border-style: solid; border-width: 8px 8px 8px 8px; border-color: #2780A3; border-radius: 28px 28px 28px 28px; font-size: 18px; padding: 17px 40px; margin-top: 25px;}
a.brr-btn-register:hover{background-color: #FFFFFF; color: #2780A3;border-style: solid; border-width: 8px 8px 8px 8px; border-color: #2780A3;}
img.brr-flyer{max-width: 650px;}
section.brr-event{background: none;}

div.elementor-8091{font-family: 'Roboto', sans-serif;}
div.amb-overlay {
    display: flex;
    flex-direction: row;
    margin: 0rem;
    padding: 2rem 10rem;
    background: linear-gradient(90deg, #e5f7f8 25.96%, #f6f6f61a), url(http://drstellamd.com/wp-content/uploads/2025/08/affliate_our_program.jpg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    min-height: 400px;
    align-items: center;
}







@media (min-width: 1400px) {
    .site-header-inner,
    .site-topbar-inner {
        max-width: 1200px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    .site-header-inner,
    .site-topbar-inner {
        max-width: 1200px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .site-nav-links, .site-nav-desktop{justify-content: right; padding-left: 50px;}
}

@media (max-width: 1100px) {
    .site-header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: .75rem 0;
    }

    .site-header-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-slider-frame {
        min-height: 420px;
        height: auto;
    }

    .hero-title-box {
        left: 24px;
        right: 24px;
        top: auto;
        bottom: 22px;
    }

    .prep-grid,
    .strength-grid,
    .home-feature-grid,
    .home-telehealth-grid,
    .home-book-grid {
        grid-template-columns: 1fr;
    }

    .home-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cabinet-slider {
        --cabinet-per-view: 2;
    }

    .site-header-actions{display: none;}

}

@media (min-width: 641px){
    .cabinet-section .container{
        max-width: 94%;
    }
    .cabinet-image{
        height: auto;
    }
}

@media (max-width: 640px) {
    section.brr-hero{padding: 55px 0; min-height: auto;}
    section.lal-hero{padding: 55px 0; min-height: auto;}
    section.booking-hero{padding: 55px 0; min-height: auto;}
    .booking-hero .booking-hero-content{padding-bottom: 0;}
    section.about-hero{padding: 55px 0; min-height: auto;}
    .about-hero ..about-hero-content{padding-bottom: 0;}

    section.contact-hero{padding: 55px 0; min-height: inherit;}
    section.test-hero{padding: 55px 0; min-height: inherit;}
    section.page-hero--pray{padding: 55px 0; min-height: inherit;}

    p.brr-retreat-text{line-height: 30px; margin-bottom: 40px;}
    a.brr-questionnaire-link{line-height: 30px;}
    a.brr-btn-firepower{margin-top: 35px;}
    section.brr-event{padding-top: 0 !important;}
    img.brr-flyer{max-width: 90%; width: 100%; margin: 0 auto;}
    img.about-photo{max-width: 100%; width: 100%; margin: 0 auto;}

    .carousel-nav{display: block;}
    .carousel-nav-prev{left: -2px;}
    .carousel-nav-next{right: -2px}
	button.carousel-nav{display: block;}
    button.carousel-nav-prev{left: -2px;}
    button.carousel-nav-next{right: -2px}

    /*div.amb-overlay {min-height: auto; background-position: right center !important;}*/
    div.amb-overlay {
        padding: 30px 20px;
        background: linear-gradient(90deg, #e5f7f8 25.96%, #f6f6f61a), url(https://drstellamd.com/wp-content/uploads/2025/08/affliate_our_program.jpg) !important;
        background-position: right center !important;
        min-height: 300px;
    }
	
	.elementor-8091 .elementor-element.elementor-element-3859293 {
		padding-top: 55px;
		padding-bottom: 55px;
	}
	

    .site-topbar-inner,
    .site-nav-links {
        gap: .6rem;
    }

    .site-nav-links a {
        font-size: .74rem;
    }

    .hero-card-overlay {
        left: 18px;
        top: 16px;
        width: 170px;
    }

    .hero-avatar-image {
        height: 180px;
    }

    .prep-panel {
        padding: 30px 0px;
        order: 2;
    }

    .prep-photo-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 0px;
        order: 0;
        background: linear-gradient(180deg, #fdf0e0 0%, #f5d4a6 100%);
    }

    .prep-photo {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    .prep-panel {
        order: 1;
        width: 100%;
    }

    .home-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cabinet-slider {
        --cabinet-per-view: 1;
    }

    .cabinet-nav {
        width: 30px;
        height: 30px;
        top: 40%;
    }

    .cabinet-nav-prev { left: 5px; }
    .cabinet-nav-next { right: 5px; }

    .floating-book,
    .floating-telehealth {
        display: none;
    }
    .site-topbar-inner {
        display: none;
    }
    .prep-panel h2 {
        font-size: 36px;
        width: 100%;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 20px;
        padding-top: 20px;
    }
    .prep-panel .btn-brand {
        font-size: 17px;
        margin: 20px auto;
        min-width: 80%;
        max-width: 90%;
        display: block;
    }
    .as-seen-mini {
        margin-top: 24px;
        text-align: center;
    }
    .mini-logos {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 12px;
        margin-bottom: 20px;
    }

    .mini-logos img {
        max-height: 22px;
    }
    .cabinet-section .container{padding: 0;}
    .cabinet-ribbon-link{margin-bottom: 35px;}
    .cabinet-image{max-width: 250px; height: auto; margin-left: auto; margin-right: auto;}
    .cabinet-card a{width: 150px;}
    .home-v2 .home-heading, .home-v2 h2{
        font-size: 32px !important;
        margin-bottom: 20px;
        /*padding-top: 15px;*/
    }
    .home-v2 .home-kicker.light{
        font-size: 30px;
        letter-spacing: inherit;
    }
    .strength-grid{
        text-align: center;
    }
    .strength-grid h2{
        font-size: 28px !important;
    }
    .strength-grid .btn-brand{
        padding: 8px 15px;
        margin: 20px 0 0;
        font-size: 16px;
    }
    .strength-section {
        padding: 3rem 0;
    }
    .home-feature-photo.round{
        max-width: 75%;
    }
    .home-feature-grid{
        text-align: center;
    }
    .btn-brand{
        padding: 8px 15px;
        margin: 5px 0;
        font-size: 16px;
        max-width: 230px;
    }
    .section-pad{
        padding: 2rem 0rem;
    }
    .home-v2 p.home-kicker{
        font-size: 24px;
        letter-spacing: inherit;
    }
    .container-fluid.home-telehealth-grid{
        padding-bottom: 0rem;
    }
    .home-book{padding: 2rem 0;}
    .book-points{margin: 0 1rem;}
    .review-slide{padding: 0;}
    .review-icon{width: 80px; height: 80px; top: -40px; } 
    .review-icon img{width: 60px; height: 60px;}
    .review-wrap{height: 85%; margin-top: 45px; padding-top: 65px;}
    .review-dots{margin-top: 0;}
    .page-hero--media {min-height: inherit; padding: 4rem 0;}
}

/* ── Mobile hamburger nav ── */

/* mobile-menu-bar hidden on desktop */
.mobile-menu-bar { display: none; }

/* hamburger button */
.site-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 26px;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-weight: bold;
}

@media (max-width: 768px) {
    /* Logo row: centered */
    .site-header-inner {
        position: static !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        padding: .5rem 1rem !important;
        min-height: unset !important;
    }

    .site-header-inner .site-logo {
        width: auto !important;
        text-align: center !important;
    }

    .site-logo img {
        max-width: 110px;
        width: 100%;
        margin: 0 auto !important;
    }

    /* hide desktop nav and CTA buttons */
    .site-nav-desktop,
    .site-header-actions {
        display: none !important;
    }

    /* show teal MENU bar */
    .mobile-menu-bar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        background: #2780a3;
        padding: .5rem 1rem;
    }

    .mobile-menu-label {
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* mobile nav dropdown — shown/hidden via JS */
    .mobile-nav {
        display: none;
        width: 100%;
        background: #fff;
        border-bottom: 2px solid #2780a3;
        box-shadow: 0 6px 18px rgba(0,0,0,.15);
    }

    .mobile-nav a {
        display: block !important;
        width: 100% !important;
        padding: .75rem 1.25rem !important;
        font-size: .9rem !important;
        font-weight: 600 !important;
        color: #173b4f !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f4f6 !important;
        white-space: normal !important;
    }

    .mobile-nav a:last-child { border-bottom: none !important; }
    .mobile-nav a:hover { background: #f5f8fa; color: #2780a3 !important; }
}
