﻿/* ============================================================
           MEET THE SPECIALIST
           — same structure as testimonials: white section, cream card
        ============================================================ */

:root {
    --orange: #c95f2b;
    --orange-hover: #BF5A1E;
    --dark: #0f3236;
    --light: #89a196;
    --yellow: #eabb61;
    --cream: #fdfbed;
    --white: #FFFFFF;
    --mid-text: #555555;
    --border: #D0C8BF;
    --error: #CC2222;
    --success-bg: #EDF7EE;
    --success-text: #2E7D32;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

.specialist {
    display: block;
    width: 100%;
    padding-top: 40px;
    padding-bottom:40px;
/**/    /*background: var(--white);*/
}
/* .cta-section {
          padding: 32px 20px;
          background: var(--white);
          text-align: center;
        }*/
.specialist__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
   
    width: 100%;
    
}

.specialist__photo {
    width: 180px;
    /* height: 120px;*/
    /* border-radius: 50%;

          border: 4px solid var(--dark);*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #888;
    flex-shrink: 0;
}

.specialist_info {
    width:80%;
    margin:auto;

}

.specialist__heading {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-top: 30px;
    
}

.specialist__bio {
    font-size: 14px;
    color: var(--mid-text);
    margin-top:-20px;
    /*line-height: 1.75;*/
}
.specialist__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.specialist__photo img {
    object-fit: cover;
}



/* ============================================================
           TABLET — 768px+
        ============================================================ */
@media (min-width: 768px) {

    /* Specialist — matches testimonials padding exactly */
    .specialist {
        padding: 10px 48px 16px;
    }

    .specialist__card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 60px 20vw;
        gap: 60px;
    }
}


/* ============================================================
           DESKTOP — 1200px+
        ============================================================ */
@media (min-width: 1200px) {
    .specialist {
        padding: 40px 80px;
    }

    .specialist__card {
        padding: 40px 20vw;
        gap: 60px;
    }

    .specialist__photo {
        width: 300px;
        /* height: 120px;*/
        /* border-radius: 50%;

          border: 4px solid var(--dark);*/
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: #888;
        flex-shrink: 0;
    }

    .specialist__heading {
        
        font-size: 40px;
        
        text-align:left;
    }

    .specialist__bio {
        font-size: 18px;
        color: var(--mid-text);
        margin-top: 10px;
        /*line-height: 1.75;*/
    }
}