/* Featured Physician Block */

.fp {
    padding: 64px 0;
}

.fp__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fp__header {
    text-align: left;
    margin-bottom: 48px;
}

.fp__header--center {
    text-align: center;
}

.fp__header--right {
    text-align: right;
}

.fp__section-heading {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0074BC;
    margin-bottom: 16px;
}

.fp__section-intro,
.fp__section-intro p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #4A6E82;
    max-width: none;
}


/* Two-column layout */
.fp__block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* Image */
.fp__image {
    aspect-ratio: 3 / 4;
    max-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: #F0F5F7;
}

.fp__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.fp__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.fp__name {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #264583;
    margin-bottom: 16px;
}

.fp__name a {
    color: inherit;
    text-decoration: none;
}

.fp__name a:hover {
    text-decoration: underline;
}

.fp__bio {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4A6E82;
    margin-bottom: 16px;
}

/* Credential tags */
.fp__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.fp__credential-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #264583;
    background: #F0F5F7;
    border: 1px solid rgba(0, 116, 188, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

/* === BACKGROUND THEMES === */

.fp--light {
    background: #FFFFFF;
}

.fp--cool-neutral {
    background: #F0F5F7;
}

.fp--cool-neutral .fp__credential-tag {
    background: #FFFFFF;
}

.fp--dark {
    background: #1B2838;
}

.fp--dark .fp__section-heading,
.fp--dark .fp__name {
    color: #FFFFFF;
}

.fp--dark .fp__section-intro,
.fp--dark .fp__bio {
    color: rgba(255, 255, 255, 0.8);
}

.fp--dark .fp__credential-tag {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* === RESPONSIVE === */

@media (min-width: 768px) {
    .fp__block {
        grid-template-columns: 1fr 2fr;
    }

    .fp__block--img-right {
        grid-template-columns: 2fr 1fr;
    }

    .fp__block--img-right .fp__image {
        order: 2;
    }

    .fp__block--img-right .fp__content {
        order: 1;
    }
}

@media (min-width: 1024px) {
    .fp__section-heading {
        font-size: 2.25rem;
    }
}
