/**
 * About Section - Dr. Raúl González
 */

/* ========================================
   Section Label
   ======================================== */
.section-label {
    display: inline-block;
    color: var(--primary-color, #AF997F);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* ========================================
   Doctor Image
   ======================================== */
.doctor-image-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    padding-top: 125px;
}

.doctor-portrait {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.doctor-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: #f5f5f5;
    border-radius: 16px;
    z-index: 1;
}

.doctor-image-decoration::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background: var(--primary-color, #AF997F);
    opacity: 0.2;
    border-radius: 50%;
}

/* ========================================
   Doctor Content
   ======================================== */
.doctor-content {
    padding-left: 40px;
}

.doctor-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.doctor-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.doctor-content .lead strong {
    color: #1a1a1a;
}

.doctor-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   Doctor Credentials
   ======================================== */
.doctor-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.credential-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.credential-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon span {
    font-size: 22px;
    color: var(--primary-color, #AF997F);
}

.credential-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.credential-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (max-width: 992px) {
    .doctor-content {
        padding-left: 20px;
    }

    .doctor-content h1 {
        font-size: 2.5rem;
    }

    .doctor-credentials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 768px) {
    .doctor-image-wrapper {
        max-width: 350px;
        margin-bottom: 50px;
    }

    .doctor-image-decoration {
        width: 150px;
        height: 150px;
        bottom: -15px;
        right: -15px;
    }

    .doctor-content {
        padding-left: 0;
        text-align: center;
    }

    .doctor-content h1 {
        font-size: 2rem;
    }

    .doctor-content .lead {
        font-size: 16px;
    }

    .section-label {
        display: block;
        text-align: center;
    }

    .doctor-credentials {
        text-align: left;
    }

    .credential-item {
        justify-content: flex-start;
    }
}

/* ========================================
   Responsive - Small Mobile
   ======================================== */
@media (max-width: 480px) {
    .doctor-image-wrapper {
        max-width: 280px;
    }

    .doctor-image-decoration {
        width: 120px;
        height: 120px;
    }

    .doctor-content h1 {
        font-size: 1.75rem;
    }

    .credential-icon {
        width: 45px;
        height: 45px;
    }

    .credential-icon span {
        font-size: 18px;
    }
}
