/* Physicians Page Styles */
.physicians-section {
    padding: 40px 0;
    background-color: #fff;
    background-image: radial-gradient(#00B050 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0;
    background-color: rgba(255, 255, 255, 0.97);
    background-blend-mode: overlay;
}

/* Header Styles (Consistent with other pages) */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    color: #00B050;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #00B050, transparent);
    opacity: 0.3;
}

/* Grid Layout - Single Column */
.physicians-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

/* Physician Card - Horizontal Layout */
.physician-card {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    align-items: flex-start;
    gap: 40px;
}

.physician-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0f2f1;
}

.physician-image-wrapper {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.physician-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.physician-card:hover .physician-image-wrapper img {
    transform: scale(1.05);
}

.physician-info {
    flex: 1;
}

.physician-role {
    font-size: 24px;
    color: #00B050;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.physician-role::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00B050;
    border-radius: 2px;
}

.physician-bio {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.physician-bio p {
    margin-bottom: 15px;
}

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

.physician-bio strong {
    color: #333;
    font-weight: 700;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .physician-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .physician-image-wrapper {
        width: 100%;
        max-width: 400px;
    }

    .physician-role::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .physician-bio {
        text-align: justify;
        /* Keep justified text for readability */
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .physicians-section {
        padding: 60px 0;
    }

    .physician-card {
        padding: 25px;
    }
}