/* ===========================
   About Photo Section Styles
   =========================== */

.about-photo-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.about-photo-section .about-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ===========================
   Texto Izquierdo
   =========================== */


.about-photo-section .about-text {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
}

.about-photo-section .about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.about-photo-section .about-text h2 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #000;
    font-weight: 600;
}

.about-photo-section .link-accent {
    color: #f05a28;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-photo-section .link-accent:hover,
.about-photo-section .link-accent:focus {
    text-decoration: underline;
    color: #d04a1f;
}

/* Firma */
.about-photo-section .signature {
    margin-top: 2rem;
    padding-top: 1rem;
}

.about-photo-section .signature img {
    max-height: 50px;
    display: block;
    margin-bottom: 0.5rem;
}

.about-photo-section .signature p {
    font-style: italic;
    color: #666;
    margin-bottom: 0;
}

/* ===========================
   Perfil Derecha
   =========================== */
.about-photo-section .about-profile {
    text-align: center;
}

.about-photo-section .about-profile figure {
    margin: 0;
}

.about-photo-section .about-profile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.about-photo-section .about-profile .name {
    margin: 1rem 0 0.25rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #f05a28;

}

.about-photo-section .about-profile .role {
    color: #000;
    font-weight: 600;
    margin: 0.25rem 0 1rem;
    font-size: 0.9rem;
}

.about-photo-section .about-profile blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #00A3A4;
    line-height: 1.5;
    margin: 0;
    padding: 1rem;
    background: #f8f9fa;
}

.about-photo-section .about-profile blockquote em {
    font-style: italic;
    font-size: 1.5rem !important;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .about-photo-section .about-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-photo-section .about-profile {
        margin-top: 2rem;
        order: -1;
    }

    .about-photo-section .about-profile img {
        max-width: 300px;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .about-photo-section {
        padding: 2rem 0;
    }

    .about-photo-section .about-section {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .about-photo-section .about-text h2 {
        font-size: 1.1rem;
    }

    .about-photo-section .about-profile blockquote {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

@media (max-width: 600px) {
    .about-photo-section .about-section {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .about-photo-section .about-profile img {
        max-width: 250px;
    }

    .about-photo-section .about-profile .name {
        font-size: 1.1rem;
    }

    .about-photo-section .about-profile .role {
        font-size: 0.85rem;
    }
}

/* ===========================
   Accessibility
   =========================== */
.about-photo-section .about-profile img:focus,
.about-photo-section .signature img:focus {
    outline: 2px solid #f05a28;
    outline-offset: 4px;
}

.about-photo-section .link-accent:focus {
    outline: 2px solid #f05a28;
    outline-offset: 2px;
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .about-photo-section {
        background: white;
        box-shadow: none;
    }

    .about-photo-section .about-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .about-photo-section .about-profile img {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}