/* ============================================
   Meet the Experts Section
   ============================================ */

.meet-the-experts-section {
    position: relative;
}

/* Experts Top Section */
.meet-the-experts-section .experts-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.meet-the-experts-section .experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.meet-the-experts-section .expert-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.meet-the-experts-section .expert-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.meet-the-experts-section .expert-image-wrap::before {
    content: '';
    padding-top: 100%;
    display: block;
}

.meet-the-experts-section .revana-logo-bg {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: auto;
    opacity: 0.20;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meet-the-experts-section .revana-logo-bg img {
    max-width: 100%;
    height: 50px;
    object-fit: contain;
}

.meet-the-experts-section .expert-image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.meet-the-experts-section .expert-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center bottom;
}

.meet-the-experts-section .expert-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.meet-the-experts-section .expert-name {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--title-color);
    margin: 0;
    padding: 0;
}

.meet-the-experts-section .expert-specialty {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body-color);
    font-style: italic;
    margin: 0;
}

/* Card Background Colors */
.meet-the-experts-section .expert-image-wrap.gradient-perpal {
    background: var(--gradient-perpal);
}

.meet-the-experts-section .expert-image-wrap.longevity-gr {
    background: var(--longevity-gr);
}

.meet-the-experts-section .expert-image-wrap.testosterone-gr {
    background: var(--testosterone-gr);
}

.meet-the-experts-section .expert-image-wrap.testosterone-light-gr {
    background: var(--testosterone-light-gr);
}

/* CTA Bottom Section */
.meet-the-experts-section .experts-cta {
    margin-top: 64px;
    background: var(--GLP-light);
    border-radius: 24px;
    padding: 0 60px;
}

.meet-the-experts-section .experts-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 130px;
    align-items: center;
}

.meet-the-experts-section .cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.meet-the-experts-section .cta-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.meet-the-experts-section .cta-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.meet-the-experts-section .cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--title-color);
    margin: 0;
    padding: 0;
}

.meet-the-experts-section .cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body-color);
    margin: 0;
}

.meet-the-experts-section .cta-button {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 0;
}

/* Responsive Styles */

/* Extra Large Desktop */
@media (max-width: 1799px) {
    .meet-the-experts-section .experts-cta-wrapper {
        gap: 120px;
    }
    .meet-the-experts-section .expert-card {
        gap: 20px;
    }
    .meet-the-experts-section .expert-info {
        gap: 10px;
    }
    .meet-the-experts-section .expert-name {
        font-size: 20px;
    }
    .meet-the-experts-section .expert-specialty {
        font-size: 16px;
    }
}

/* Large Desktop */
@media (max-width: 1439px) {
    .meet-the-experts-section .experts-grid {
        gap: 22px;
    }

    .meet-the-experts-section .experts-cta {
        padding: 0 50px;
    }

    .meet-the-experts-section .experts-cta-wrapper {
        gap: 100px;
    }
    .meet-the-experts-section .expert-card {
        gap: 16px;
    }
    .meet-the-experts-section .expert-info {
        gap: 6px;
    }
    .meet-the-experts-section .expert-name {
        font-size: 18px;
    }
    .meet-the-experts-section .expert-specialty {
        font-size: 16px;
    }
}

/* Tablet Landscape */
@media (max-width: 1239px) {
    .meet-the-experts-section .experts-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 16px;
    }

    .meet-the-experts-section .expert-card {
        gap: 16px;
    }

    .meet-the-experts-section .expert-info {
        gap: 6px;
    }

    .meet-the-experts-section .expert-name {
        font-size: 16px;
    }

    .meet-the-experts-section .expert-specialty {
        font-size: 14px;
    }

    .meet-the-experts-section .revana-logo-bg img {
        height: 44px;
    }

    .meet-the-experts-section .experts-cta {
        margin-top: 50px;
        padding: 0 40px;
    }

    .meet-the-experts-section .experts-cta-wrapper {
        gap: 80px;
    }

    .meet-the-experts-section .cta-content {
        gap: 16px;
    }

    .meet-the-experts-section .cta-title {
        font-size: 30px;
    }

    .meet-the-experts-section .cta-description {
        font-size: 17px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {

    .meet-the-experts-section .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .meet-the-experts-section .experts-top {
        gap: 12px;
    }

    .meet-the-experts-section .experts-grid {
        gap: 18px;
    }

    .meet-the-experts-section .expert-card {
        gap: 10px;
    }

    .meet-the-experts-section .expert-info {
        gap: 6px;
    }

    .meet-the-experts-section .expert-name {
        font-size: 18px;
    }

    .meet-the-experts-section .expert-specialty {
        font-size: 15px;
    }

    .meet-the-experts-section .revana-logo-bg img {
        height: 40px;
    }

    .meet-the-experts-section .experts-cta {
        padding: 0 20px;
    }

    .meet-the-experts-section .experts-cta-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }

    .meet-the-experts-section .cta-content {
        gap: 24px;
        padding: 20px 0;
    }

    .meet-the-experts-section .cta-title {
        font-size: 26px;
    }

    .meet-the-experts-section .cta-description {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .meet-the-experts-section .experts-top {
        gap: 0;
    }

    .meet-the-experts-section .experts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .meet-the-experts-section .expert-card {
        gap: 10px;
    }

    .meet-the-experts-section .expert-image {
        padding: 30px 0 0 0;
    }

    .meet-the-experts-section .expert-info {
        gap: 2px;
    }

    .meet-the-experts-section .expert-name {
        font-size: 18px;
    }

    .meet-the-experts-section .expert-specialty {
        font-size: 14px;
    }

    .meet-the-experts-section .revana-logo-bg img {
        height: 40px;
    }

    .meet-the-experts-section .experts-cta {
        margin-top: 40px;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .meet-the-experts-section .experts-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .meet-the-experts-section .cta-image {
        margin-top: 0;
    }

    .meet-the-experts-section .cta-content {
        gap: 20px;
        padding: 0;
    }

    .meet-the-experts-section .cta-title {
        font-size: 24px;
    }

    .meet-the-experts-section .cta-description {
        font-size: 16px;
    }

    .meet-the-experts-section .cta-button {
        gap: 12px;
    }
}

