/* =========================================
   ADVISORY BOARD — advisory-board.css
   Brand: #FCF7EB | #CF9B67 | #2F4E4E | #566E6C
   ========================================= */

* {
    box-sizing: border-box;
}

/* ===== HERO SECTION ===== */
.ab-hero {
    background: #FCF7EB;
    min-height: 100vh;
    padding: 110px 0 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.ab-hero-inner {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
    gap: 0;
    width: 100%;
}

/* ===========================
   LEFT PANEL
=========================== */
.ab-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    padding-right: 30px;
    padding-bottom: 20px;
}

/* Heading: MEET / OUR / TEAM */
.ab-hero-heading {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.ab-h-bold {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: clamp(60px, 8vw, 92px);
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    line-height: 0.92;
    display: block;
}

.ab-h-italic {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: clamp(54px, 7.2vw, 82px);
    font-weight: 400;
    font-style: italic;
    color: #c5b89a;
    /* light warm gray */
    letter-spacing: 0.01em;
    line-height: 1;
    display: block;
    margin: 4px 0;
}

/* Tagline — bottom left */
.ab-hero-tagline {
    font-family: 'muliregular', sans-serif;
    font-size: 12.5px;
    color: #777;
    line-height: 1.65;
    max-width: 210px;
    margin-top: auto;
    padding-top: 30px;
}

/* ===========================
   RIGHT PANEL — STRIP CAROUSEL
=========================== */
.ab-hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: auto;
}

/* Cards row — absolute positioning for cascade overlap effect */
.ab-cards-row {
    position: relative;
    height: 420px;
    width: 100%;
    /* enough width to show all strips */
    min-width: 520px;
}

/* MAIN CARD — front, highest z-index */
.ab-card-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 330px;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 4;
    cursor: pointer;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.ab-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: opacity 0.35s ease;
}

/* Arrow starburst badge on main card */
.ab-starburst {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    background: #CF9B67;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: background 0.3s, transform 0.3s;
    border-radius: 50%;
    clip-path: polygon(50% 0%, 56% 18%, 72% 5%, 66% 24%,
            88% 21%, 75% 37%, 97% 40%, 79% 52%,
            97% 60%, 74% 64%, 86% 79%, 66% 75%,
            72% 95%, 56% 82%, 50% 100%, 44% 82%,
            28% 95%, 34% 75%, 14% 79%, 26% 64%,
            3% 60%, 21% 52%, 3% 40%, 25% 37%,
            12% 21%, 34% 24%, 28% 5%, 44% 18%);
}

.ab-starburst:hover {
    background: #2F4E4E;
    transform: translateX(-50%) scale(1.1);
}

.ab-starburst svg {
    width: 19px;
    height: 19px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* STRIP CARDS — absolute, peeking behind main from the right, vertically centered steps */
.ab-card-strip {
    position: absolute;
    overflow: hidden;
    border-radius: 7px;
    cursor: pointer;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

.ab-card-strip img {
    height: 100%;
    object-fit: cover;
    object-position: left top;
    /* shows doctor face peeking from left side of strip */
    display: block;
    transition: opacity 0.35s ease;
}

/* Strip 1 — 2nd doctor peeks out behind main card (height 360px, top: 30px) */
.ab-strip-1 {
    left: 245px;
    width: 160px;
    height: 360px;
    top: 30px;
    z-index: 3;
    opacity: 0.95;
    filter: brightness(0.96);
}

.ab-strip-1 img {
    width: 330px;
    /* full card scale so face peeks naturally */
}

/* Strip 2 — 3rd doctor peeks out behind Strip 1 (height 300px, top: 60px) */
.ab-strip-2 {
    left: 368px;
    width: 105px;
    height: 300px;
    top: 60px;
    z-index: 2;
    opacity: 0.85;
    filter: brightness(0.91);
}

.ab-strip-2 img {
    width: 280px;
}

/* Strip 3 — 4th doctor peeks out behind Strip 2 (height 240px, top: 90px) */
.ab-strip-3 {
    left: 445px;
    width: 65px;
    height: 240px;
    top: 90px;
    z-index: 1;
    opacity: 0.72;
    filter: brightness(0.86);
}

.ab-strip-3 img {
    width: 240px;
}

/* Smooth transition blending without dropping to zero opacity */
.ab-card-main img,
.ab-card-strip img,
.ab-card-strip {
    transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1), filter 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===========================
   DOCTOR INFO (below cards)
=========================== */
.ab-doctor-info {
    text-align: center;
    padding-left: 0;
    max-width: 330px;
    /* matches main card width */
}

.ab-doctor-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: 0.01em;
    transition: opacity 0.3s;
}

.ab-doctor-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    transition: opacity 0.3s;
}

.ab-tag {
    display: inline-block;
    padding: 5px 16px;
    border: 1.5px solid #555;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    font-family: 'muliregular', sans-serif;
}

/* ===========================
   BOTTOM ROW — nav + counter
=========================== */
.ab-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
    /* spans from 0 to right edge of strip 3 (445 + 65 = 510px) */
    max-width: 510px;
}


/* Pill-shaped nav buttons */
.ab-slider-nav {
    display: flex;
    gap: 10px;
}

.ab-nav-btn {
    height: 46px;
    width: 78px;
    border-radius: 50px;
    border: 1.5px solid #1a1a1a;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s;
    flex-shrink: 0;
}

.ab-nav-btn:hover {
    background: #CF9B67;
    border-color: #CF9B67;
}

.ab-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.22s;
}

.ab-nav-btn:hover svg {
    stroke: #fff;
}

/* Large counter — right side */
.ab-counter {
    font-family: Georgia, 'Times New Roman', serif;
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.ab-counter-num {
    font-size: 68px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.ab-counter-total {
    font-size: 20px;
    color: #aaa;
    font-weight: 400;
}

/* Fading info state */
.ab-info-fade {
    opacity: 0;
    transition: opacity 0.2s;
}

/* ===========================
   DETAIL PANEL
=========================== */
.ab-detail-panel {
    display: none;
    background: #FCF7EB;
    animation: ab-fadein 0.42s ease;
}

.ab-detail-panel.ab-active {
    display: block;
}

@keyframes ab-fadein {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Top bar */
.ab-detail-topbar {
    background: #ece3d4;
    padding: 32px 0 28px;
    border-bottom: 1px solid #d8ccb4;
}

.ab-detail-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ab-detail-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ab-detail-name-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1;
}

.ab-detail-firstname {
    font-family: Georgia, serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400;
    font-style: italic;
    color: #c5b89a;
    line-height: 1;
}

.ab-detail-lastname {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Body */
.ab-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}

.ab-detail-photo {
    overflow: hidden;
    background: #ddd;
}

.ab-detail-photo img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ab-detail-info {
    background: #566E6C;
    color: #FCF7EB;
    padding: 44px 50px 38px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Starburst CTA */
.ab-detail-cta {
    position: absolute;
    top: 28px;
    right: 42px;
    width: 115px;
    height: 115px;
    background: #CF9B67;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-decoration: none !important;
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.35;
    padding: 16px 10px;
    transition: background 0.25s, transform 0.25s;
    clip-path: polygon(50% 0%, 56% 18%, 72% 5%, 66% 24%,
            88% 21%, 75% 37%, 97% 40%, 79% 52%,
            97% 60%, 74% 64%, 86% 79%, 66% 75%,
            72% 95%, 56% 82%, 50% 100%, 44% 82%,
            28% 95%, 34% 75%, 14% 79%, 26% 64%,
            3% 60%, 21% 52%, 3% 40%, 25% 37%,
            12% 21%, 34% 24%, 28% 5%, 44% 18%);
}

.ab-detail-cta:hover {
    background: #2F4E4E;
    color: #FCF7EB;
    transform: rotate(6deg) scale(1.07);
}

.ab-detail-cta svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    margin: 5px auto 0;
    display: block;
}

.ab-detail-bio {
    font-size: 14.5px;
    line-height: 1.75;
    color: #d5ccc0;
    max-width: 380px;
    margin-top: 60px;
    font-family: 'muliregular', sans-serif;
}

.ab-detail-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(252, 247, 235, 0.18);
    padding-top: 22px;
    margin-top: 24px;
}

.ab-stat-num {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: #FCF7EB;
    line-height: 1;
}

.ab-stat-label {
    font-size: 12px;
    color: #bbb4a8;
    margin-top: 4px;
    line-height: 1.4;
    font-family: 'muliregular', sans-serif;
}

.ab-stat-label a {
    color: #CF9B67;
    text-decoration: underline !important;
}

.ab-close-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid rgba(252, 247, 235, 0.35);
    color: #FCF7EB;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-family: 'muliregular', sans-serif;
    margin-bottom: 18px;
    align-self: flex-start;
}

.ab-close-btn:hover {
    background: rgba(252, 247, 235, 0.15);
    border-color: #FCF7EB;
}

.ab-close-btn svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ===========================
   INTRO STRIP
=========================== */
.ab-section-intro {
    background: #FCF7EB;
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid #e2d5bc;
}

.ab-section-intro h2 {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 900;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #2F4E4E;
    margin-bottom: 14px;
    font-family: 'muliregular', sans-serif;
}

.ab-section-intro p {
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'muliregular', sans-serif;
}

@media (max-width: 1100px) {
    .ab-card-main {
        width: 260px;
        height: 400px;
    }

    .ab-cards-row {
        height: 400px;
    }

    .ab-strip-1 {
        left: 200px;
        width: 130px;
        height: 400px;
    }

    .ab-strip-2 {
        left: 306px;
        width: 84px;
        height: 360px;
    }

    .ab-strip-3 {
        left: 368px;
        width: 52px;
        height: 308px;
    }

    .ab-bottom-row {
        max-width: 430px;
    }

    .ab-doctor-info {
        max-width: 260px;
    }
}

@media (max-width: 991px) {
    .ab-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .ab-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ab-hero-left {
        min-height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 20px;
        padding-right: 0;
    }

    .ab-hero-tagline {
        margin-top: 0;
        padding-top: 0;
    }

    .ab-cards-row {
        height: 360px;
    }

    .ab-card-main {
        width: 240px;
        height: 360px;
    }

    .ab-strip-1 {
        left: 186px;
        width: 118px;
        height: 360px;
    }

    .ab-strip-2 {
        left: 282px;
        width: 76px;
        height: 320px;
    }

    .ab-strip-3 {
        left: 338px;
        width: 46px;
        height: 272px;
    }

    .ab-bottom-row {
        max-width: 390px;
    }

    .ab-doctor-info {
        max-width: 240px;
    }

    .ab-detail-body {
        grid-template-columns: 1fr;
    }

    .ab-detail-photo img {
        min-height: 300px;
        height: 300px;
    }

    .ab-detail-info {
        padding: 30px 24px;
    }

    .ab-detail-cta {
        position: static;
        margin: 0 auto 20px;
    }

    .ab-detail-bio {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .ab-h-bold {
        font-size: 54px;
    }

    .ab-h-italic {
        font-size: 48px;
    }

    .ab-counter-num {
        font-size: 50px;
    }

    .ab-cards-row {
        height: 300px;
    }

    .ab-card-main {
        width: 200px;
        height: 300px;
    }

    .ab-strip-1 {
        left: 156px;
        width: 100px;
        height: 300px;
    }

    .ab-strip-2 {
        left: 236px;
        width: 66px;
        height: 264px;
    }

    .ab-strip-3 {
        left: 284px;
        width: 40px;
        height: 222px;
    }

    .ab-bottom-row {
        max-width: 330px;
    }

    .ab-doctor-info {
        max-width: 200px;
    }

    .ab-detail-stats {
        gap: 24px;
    }

    .ab-stat-num {
        font-size: 36px;
    }

    .ab-detail-firstname,
    .ab-detail-lastname {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .ab-h-bold {
        font-size: 44px;
    }

    .ab-h-italic {
        font-size: 38px;
    }

    .ab-strip-3 {
        display: none;
    }

    .ab-detail-stats {
        flex-direction: column;
        gap: 14px;
    }
}

/* =========================================
   EXPLORE EXPERTS BY LAST NAME SECTION
   ========================================= */
.ab-experts-sec {
    background: #FCF7EB;
    padding: 80px 0 90px;
    border-top: 1px solid #e6d8c3;
}

.ab-experts-title {
    font-family: 'muliregular', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 28px;
}

/* Alphabet Filter Bar */
.ab-filter-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ab-filter-btn {
    font-family: 'muliregular', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #555;
    background: transparent;
    border: 1.5px solid transparent;
    padding: 6px 14px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.ab-filter-btn:hover {
    color: #CF9B67;
}

.ab-filter-btn.active {
    color: #CF9B67;
    font-weight: 800;
    border: 1.5px solid #CF9B67;
    border-bottom: 3px solid #CF9B67;
    /* brand golden accent underline */
    background: #fff;
    box-shadow: 0 2px 6px rgba(207, 155, 103, 0.15);
}

/* Experience Sec Demo CTA Button Styling */
.experienceSec .getTheBtn {
    background: #CF9B67 !important;
    border-color: #CF9B67 !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.experienceSec .getTheBtn:hover {
    background: #2F4E4E !important;
    border-color: #2F4E4E !important;
}


/* Experts 4-Column Grid */
.ab-experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 36px;
    row-gap: 48px;
}

.ab-expert-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease;
}

.ab-expert-card:hover {
    transform: translateY(-4px);
}

.ab-expert-avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: #e8e2d6;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.ab-expert-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 50%;
}

.ab-expert-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.25;
}

.ab-expert-role {
    font-family: 'muliregular', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #2F4E4E;
    line-height: 1.45;
    margin: 0;
    max-width: 250px;
}

/* Responsive for Experts grid */
@media (max-width: 1100px) {
    .ab-experts-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 28px;
    }
}

@media (max-width: 767px) {
    .ab-experts-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 36px;
    }

    .ab-expert-avatar-wrap {
        width: 120px;
        height: 120px;
    }

    .ab-expert-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ab-experts-grid {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .ab-expert-card {
        align-items: center;
        text-align: center;
    }

    .ab-expert-card {
        cursor: pointer;
        text-decoration: none !important;
        color: inherit;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .ab-expert-card:hover {
        transform: translateY(-4px);
        text-decoration: none !important;
    }

    .ab-expert-card:hover .ab-expert-name {
        color: #2F4E4E;
    }

    .ab-card-main,
    .ab-starburst {
        cursor: pointer;
    }

    .ab-detail-stats {
        flex-direction: column;
        gap: 14px;
    }
}

/* =====================================================
   ADVISOR DETAILS PAGE — REFERENCE STYLE
   Matches: advisory board reference screenshot
   Light clean layout, role + name header, circular photo
   ===================================================== */

/* ── Page wrapper ── */
.adv-page-wrap {
    background: #fff;
    font-family: 'muliregular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e1e1e;
}

/* ── Name Header (replaces dark hero) ── */
.adv-name-header {
    background: #fff;
    padding: 32px 0 24px;
    border-bottom: 1px solid #e8e8e8;
}

.adv-name-header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

.adv-name-role {
    font-family: 'muliregular', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #555;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.adv-name-h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 400;
    color: #111;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ── Main two-column layout ── */
.adv-content-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 48px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
}

/* ── Section blocks ── */
.adv-section {
    margin-bottom: 40px;
}

.adv-section:last-child {
    margin-bottom: 0;
}

/* Section label — bold uppercase with bottom border (matches reference) */
.adv-section-label {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.adv-section-label-text {
    font-family: 'muliregular', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* ── Bio block: photo left + text right ── */
.adv-bio-area {
    padding-top: 4px;
}

.adv-bio-row {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* Circular photo — matches reference (small, round, left-aligned) */
.adv-bio-photo-wrap {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: #e8e2d6;
    border: 1px solid #ddd;
}

.adv-bio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.adv-bio-text {
    flex: 1;
    min-width: 0;
}

.adv-bio-text p {
    font-size: 14.5px;
    line-height: 1.72;
    color: #333;
    margin: 0 0 14px;
}

.adv-bio-text p:last-child {
    margin-bottom: 0;
}

.adv-bio-text p strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Disclaimer — italic, matches reference */
.adv-disclaimer {
    font-size: 13px;
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-top: 4px;
}

/* ── Know block ── */
.adv-know-area {
    padding-top: 4px;
}

.adv-know-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: #333;
    margin: 0;
}

/* ── Reading section ── */
.adv-reading-area {
    padding-top: 4px;
}

/* 3-column reading cards — matches reference */
.adv-reading-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
}

.adv-reading-card {
    background: #fff;
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.adv-reading-card:hover {
    background: #fafafa;
}

/* Category label */
.adv-reading-cat {
    font-family: 'muliregular', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #555;
}

/* Title */
.adv-reading-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.adv-reading-snippet {
    font-size: 13px;
    color: #555;
    line-height: 1.62;
    margin: 0;
}

/* ── RIGHT SIDEBAR ── */
.adv-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Contact card — minimal, border-based */
.adv-contact-card {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.adv-contact-head {
    margin-bottom: 0;
}

/* "CONTACT JOLENE" label */
.adv-contact-label {
    font-family: 'muliregular', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #1a1a1a;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.adv-contact-body {
    padding-top: 12px;
}

/* Email link */
.adv-email-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #1a6bb5;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.2s;
    font-family: 'muliregular', sans-serif;
}

.adv-email-link:hover {
    color: #CF9B67;
    text-decoration: underline !important;
}

.adv-email-link svg {
    stroke: currentColor;
    fill: none;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke-width: 1.8;
}

/* Expertise card */
.adv-expertise-card {
    /* clean, no background */
}

.adv-card-head {
    margin-bottom: 0;
}

.adv-card-label {
    font-family: 'muliregular', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #1a1a1a;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.adv-expertise-body {
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Expertise tags */
.adv-exp-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    font-family: 'muliregular', sans-serif;
    cursor: default;
    transition: background 0.2s, border-color 0.2s;
}

.adv-exp-tag:hover {
    background: #e8e8e8;
    border-color: #bbb;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .adv-content-wrap {
        grid-template-columns: 1fr 240px;
        gap: 44px;
        padding: 40px 24px 60px;
    }

    .adv-reading-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .adv-content-wrap {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 32px 20px 56px;
    }

    .adv-sidebar {
        position: static;
        order: -1;
        margin-bottom: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .adv-contact-card {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
        border-right: 1px solid #e0e0e0;
        padding-right: 24px;
    }
}

@media (max-width: 640px) {
    .adv-name-header-inner {
        padding: 0 20px;
    }

    .adv-bio-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .adv-bio-photo-wrap {
        width: 100px;
        height: 100px;
    }

    .adv-sidebar {
        grid-template-columns: 1fr;
    }

    .adv-contact-card {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .adv-reading-grid {
        grid-template-columns: 1fr;
    }
}