/* ==========================================================================
   Odigio Home Page — Design tokens + section styles
   Matches Figma "Expert's page" (mobile node 795-15204 / desktop node 823-13467)
   ========================================================================== */

:root {
    --navy: #1d2451;
    --navy-soft: #201e5a;
    --coral: #ed8181;
    --coral-dark: #f48585;
    --teal: #03977d;
    --cream: #fef4e9;
    --cream-deep: #fbe4cf;
    --pink-soft: #f9e2ee;
    --white: #ffffff;
    --text-body: #3d3a6b;
    --text-muted: #6b6b8f;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
    --shadow-card: 0 8px 24px rgba(29, 36, 81, 0.08);
    --container-max: 1200px;
}

body {
    background-color: var(--cream);
}

.odigio-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .odigio-wrap {
        padding: 0 40px;
    }
}

/* ---------- Header / Nav ---------- */
body header,
body .main-navigation {
    background: transparent;
}

.odigio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 22px 20px;
}

.odigio-header .odigio-logo img {
    height: 32px;
    width: auto;
}

.odigio-header .odigio-nav-links {
    display: none;
    align-items: center;
    gap: 36px;
}

.odigio-header .odigio-nav-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.odigio-header .odigio-nav-links a:hover {
    color: var(--coral);
}

.odigio-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--navy);
    border: none;
    cursor: pointer;
}

.odigio-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    border-radius: 2px;
}

@media (min-width: 992px) {
    .odigio-header .odigio-nav-links {
        display: flex;
    }

    .odigio-menu-toggle {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero-section {
    padding: 24px 0 48px;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-badge {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 18px;
}

.hero-title .accent {
    color: var(--coral);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 520px;
}

.hero-subtitle-desktop {
    display: none;
}

@media (min-width: 992px) {
    .hero-subtitle-mobile {
        display: none;
    }

    .hero-subtitle-desktop {
        display: block;
    }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral);
    color: var(--white) !important;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(237, 129, 129, 0.35);
    border: none;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 1.5px solid var(--navy);
}

.hero-stat {
    font-size: 14px;
    color: var(--text-body);
    font-weight: 600;
}

.hero-visual {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow-card);
}

.hero-visual-image {
    background: linear-gradient(135deg, var(--cream-deep) 0%, #f4dbc2 100%);
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
    width: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-visual-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 6px 6px;
}

.hero-visual-banner h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 4px;
}

.hero-visual-banner p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.hero-visual-banner .hero-btn-primary {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-grid {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-copy {
        flex: 1;
    }

    .hero-visual-col {
        flex: 1;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* ---------- Trusted-by logos ---------- */
.trusted-section {
    padding: 64px 0;
    text-align: center;
}

.trusted-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--coral);
    margin-bottom: 8px;
}

.trusted-section p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.trusted-logos-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trusted-logos-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 8px 4px 16px;
    animation: trusted-logos-scroll 25s linear infinite;
}

.trusted-logos-track:hover {
    animation-play-state: paused;
}

@keyframes trusted-logos-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.trusted-logo-card {
    flex: 0 0 auto;
    width: 130px;
    height: 70px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(29, 36, 81, 0.06);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    padding: 8px;
}

/* ---------- Section heading (shared) ---------- */
.section-heading-block {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.section-heading-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-heading-block h2 .accent {
    color: var(--coral);
}

.section-heading-block p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
}

.odigio-section {
    padding: 48px 0;
}

.odigio-section.bg-cream-deep {
    background: var(--cream);
}

/* ---------- Mentor / category cards (override existing carousel card look) ---------- */
.top-experts,
.carousel-container {
    padding-top: 0;
}

/* ---------- Slick carousel layout (peek effect + responsive slide sizing) ---------- */
.carousel-container {
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.consultants-carousel {
    margin: 20px 0;
    touch-action: pan-y pinch-zoom;
}

.consultants-carousel .slick-list {
    overflow: hidden;
    padding: 0 !important;
}

.consultants-carousel .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.consultants-carousel .slick-slide {
    padding: 0 12px;
    outline: none;
    height: auto;
}

.consultants-carousel .slick-slide>div {
    width: 100%;
    display: flex !important;
    justify-content: center;
    height: 100%;
}

.consultant-slide {
    width: 100%;
    display: flex !important;
}

.consultant-slide .card {
    width: 100%;
}

.consultants-carousel .slick-slide:not(.slick-center) .card {
    opacity: 0.7;
    transform: scale(0.96);
    transition: all 0.3s ease;
}

.consultants-carousel .slick-slide.slick-center .card {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.consultants-carousel .slick-dots {
    bottom: -40px;
    text-align: center;
}

.consultants-carousel .slick-dots li button:before {
    font-size: 10px;
    color: var(--coral);
    opacity: 0.4;
}

.consultants-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
}

@media (max-width: 767px) {
    /* The pagination dots are absolutely positioned 40px BELOW the slider, but
       .carousel-container is overflow:hidden (needed for the peek effect, which
       relies on clipping the partially-visible neighbouring slides). With no
       room reserved for them, the container's box ended above the dots and cut
       their lower half off -- they rendered as half circles. Reserving the space
       fixes it without giving up the horizontal clipping.
       Dots only exist at this breakpoint; slick renders none on desktop. */
    .carousel-container {
        padding: 0 8px 32px;
        margin-bottom: 24px;
    }

    .consultants-carousel .slick-slide {
        padding: 0 4px;
    }
}

.meet-experts-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--navy) !important;
}

.meet-experts-heading .accent {
    color: var(--coral) !important;
}

.meet-experts-subline {
    color: var(--text-body) !important;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Mentor cards — matches Figma reference exactly: vertical gradient, translucent
   corner blob, name+line+centered role on the left, photo bottom-aligned on the
   right, both buttons filled navy pills, arrow floating bottom-right on the card. */
.mentor-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(to bottom, #f8dfc4, #f6c0b5, #f58c92);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.mentor-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -40px;
    width: 180px;
    height: 320px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 100px;
}

.mentor-card-content {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 2;
}

.mentor-card-left {
    width: 64%;
    padding: 14px;
    display: flex;
    flex-direction: column;
}

.mentor-card-name {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mentor-card-line {
    width: 100%;
    max-width: 160px;
    height: 2px;
    background: var(--navy);
    margin-bottom: 24px;
}

.mentor-card-speciality {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: var(--navy);
    font-weight: 600;
    margin: 0;
}

.mentor-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.mentor-card-btn {
    background: var(--navy);
    border: none;
    color: var(--white) !important;
    padding: 7px 10px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.mentor-card-btn:hover {
    opacity: 0.88;
}

.mentor-card-right {
    width: 38%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.mentor-card-right img {
    height: 96%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
}

.mentor-card-arrow {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    color: var(--navy) !important;
    text-decoration: none;
    z-index: 5;
    transition: background 0.2s;
}

.mentor-card-arrow:hover {
    background: rgba(29, 36, 81, 0.1);
}

/* Phone layout.
   The card design above assumes two roomy columns and a transparent full-body
   cutout photo. Neither holds on a phone: the card is ~270px wide, so the photo
   column lands at ~101px while the card is still forced square at ~270px tall,
   and the real photos are 400x400 squares. object-fit: contain then paints the
   photo at just 101x101 and letterboxes the remaining ~159px -- the big empty
   gradient block visible on the phone. The arrow badge, pinned to the same
   bottom-right corner, ends up sitting on top of the photo as well.

   Desktop is deliberately untouched; this only re-proportions the phone view. */
@media (max-width: 767px) {
    /* Height comes from the content instead of a forced square, which is what
       removes the dead space rather than just hiding it. */
    .mentor-card {
        aspect-ratio: auto;
    }

    .mentor-card-left {
        width: 56%;
        padding: 14px;
    }

    .mentor-card-line {
        margin-bottom: 14px;
    }

    .mentor-card-actions {
        margin-top: 16px;
        gap: 6px;
    }

    .mentor-card-btn {
        padding: 6px 12px;
        font-size: 10.5px;
    }

    .mentor-card-right {
        width: 44%;
        align-items: flex-end;
    }

    /* Square box for a square source, so cover crops nothing and the column is
       filled edge to edge -- no letterboxing left to show through. */
    .mentor-card-right img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
    }

    /* Redundant on phones: it links to exactly the same page as this card's own
       "Learn More" button, and at this size it can only sit on top of the photo. */
    .mentor-card-arrow {
        display: none;
    }
}

.search-box {
    margin-bottom: 32px;
}

.search-box .form-control,
.search-box .form-select {
    border-radius: var(--radius-pill);
    border: 1.5px solid #f0d9c8;
    padding: 12px 20px;
}

.search-box .btn-primary {
    border-radius: var(--radius-pill) !important;
    background-color: var(--coral) !important;
    border-color: var(--coral) !important;
    padding: 12px 24px;
}

.search-box .btn-primary:hover {
    background-color: var(--navy) !important;
    border-color: var(--navy) !important;
}

/* mentor card face-lift: works for both top-experts (.card) and category (.consultant-slide .card) */
.consultant-slide .card,
.top-experts .card {
    background: linear-gradient(180deg, #fdeadb 0%, #f6b7ad 100%);
    border-radius: var(--radius-lg) !important;
    border: none !important;
}

.consultant-slide .card-title,
.top-experts .card-title {
    color: var(--navy) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800 !important;
}

.consultant-slide .card-buttons .btn,
.top-experts .card-buttons .btn {
    background: var(--navy) !important;
    border-color: var(--navy) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 700;
}

.consultant-slide .card-buttons .know-your-expert-btn,
.top-experts .card-buttons .know-your-expert-btn {
    background: transparent !important;
    color: var(--navy) !important;
    border: 1.5px solid var(--navy) !important;
}

/* ---------- Why Choose Odigio ---------- */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-choose-card {
    background: var(--white);
    border: 1.5px solid #f7d9c4;
    border-radius: var(--radius-md);
    padding: 26px;
}

.why-choose-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f6b0ac;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.why-choose-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-choose-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- How It Works ---------- */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.how-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    position: relative;
}

.how-step-icon .step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
}

.how-step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------- Odigio Unplugged videos ---------- */
.unplugged-heading {
    color: var(--coral) !important;
}

.unplugged-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
}

.unplugged-card {
    flex: 0 0 260px;
    text-decoration: none;
}

.unplugged-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    background: var(--navy);
    display: block;
    margin-bottom: 12px;
    overflow: hidden;
}

/* object-fit was set on the wrapper, where it does nothing -- it only applies to
   replaced elements like <img>. With the thumbnail now inside, it belongs here. */
.unplugged-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.unplugged-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.unplugged-card span {
    color: var(--coral);
    font-size: 13px;
    font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
}

/* The stationary window the animated track scrolls behind. Clipping and masking
   belong here, on an element that never moves -- putting them on the animated
   element itself does nothing to contain it, since a transform moves the element
   out of its parent regardless of its own overflow. Mirrors
   .trusted-logos-viewport / .trusted-logos-track above. */
.testimonials-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

/* Auto-scrolling variant — used when there are enough testimonials to loop
   seamlessly (the PHP side duplicates the card list so -50% brings the
   second copy exactly where the first started). */
.testimonials-marquee {
    width: max-content;
    overflow: visible;
    animation: testimonials-marquee-scroll 40s linear infinite;
}

.testimonials-viewport:hover .testimonials-marquee {
    animation-play-state: paused;
}

/* An auto-scrolling strip that can't be stopped is a real accessibility problem
   for anyone sensitive to motion; honour the OS-level setting and fall back to
   a normal horizontal scroll they control themselves. */
@media (prefers-reduced-motion: reduce) {
    .testimonials-marquee {
        animation: none;
        width: auto;
        overflow-x: auto;
    }
}

@keyframes testimonials-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-gradient-card {
    flex: 0 0 260px;
    /* Vibrant diagonal coral gradient to match Figma: light cream top-left → deep coral bottom-right */
    background: linear-gradient(150deg, #fdeee7 0%, #f4a293 52%, #ec7c6c 100%);
    border-radius: var(--radius-md);
    padding: 22px;
}

.testimonial-gradient-card p {
    color: var(--navy);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
}

.testimonial-author span {
    color: var(--navy);
    opacity: 0.75;
    font-size: 12px;
}

/* ---------- FAQ ---------- */
.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--navy);
}

.faq-heading h2 .accent {
    color: var(--coral);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid #f5b8ae;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.faq-item summary {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
    cursor: pointer;
    color: var(--coral);
    font-weight: 700;
    font-size: 14px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.faq-item-icon {
    color: var(--coral);
    font-size: 18px;
}

.faq-item summary .faq-icon {
    color: var(--coral);
    font-size: 18px;
    flex: 0 0 auto;
}

.faq-item[open] summary .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .faq-layout {
        flex-direction: row;
        gap: 60px;
    }

    .faq-heading {
        flex: 1;
    }

    .faq-list-col {
        flex: 1;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--white);
    padding-top: 40px;
}

.site-footer .footer-top {
    justify-content: space-between;
    margin-bottom: 32px;
}

.site-footer .menu-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}

.site-footer .menu-items a,
.site-footer .contact-info a,
.site-footer .contact-info span {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
}

.site-footer .menu-items a:hover {
    color: var(--coral);
}

.site-footer .footer-bottom {
    border-top: 1px solid #f0e4d8;
    margin-top: 24px;
    padding: 18px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Figma footer is LEFT-aligned on mobile (logo, socials, menus all left) —
   override style.css's mobile rules that center everything. */
@media (max-width: 768px) {
    .site-footer .footer-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .site-footer .footer-menu-section {
        text-align: left;
    }

    .site-footer .footer-tagline {
        text-align: left;
    }

    .site-footer .contact-info li {
        justify-content: flex-start;
        text-align: left;
    }

    .site-footer .footer-social {
        justify-content: flex-start;
    }
}

.cta-banner-section {
    padding: 56px 0;
}

.cta-banner {
    background: var(--coral);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-banner-copy h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 14px;
}

.cta-banner-copy h2 .accent {
    color: var(--white);
}

.cta-banner-copy p {
    color: var(--navy);
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 440px;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-banner-actions .hero-btn-primary {
    background: var(--navy);
}

.cta-banner-actions .hero-btn-secondary {
    background: var(--white);
}

.cta-banner-visual {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
}

.cta-banner-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    background: var(--cream);
    margin-bottom: 14px;
}

.cta-banner-visual h4 {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 4px;
}

.cta-banner-visual p {
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .cta-banner {
        grid-template-columns: 1fr;
        padding: 28px;
        border-radius: 18px;
    }

    .cta-banner-copy p {
        max-width: none;
    }
}

/* Category-grouped mentor grids (e.g. "Non-Clinical Jobs", "Leadership Development") */
#category-experts {
    margin-top: 40px;
}

.category-mentors-section {
    margin-bottom: 40px;
}

.category-mentors-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
}

.category-mentors-heading .accent {
    color: var(--coral);
}