/* About Page Specific Styles */

/* Portrait Enhancements */
.portrait-container {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.portrait-bg {
    position: absolute;
    top: 0;
    right: 20px;
    width: 80%;
    height: 90%;
    background: var(--light-bg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    opacity: 0.5;
}

.principal-portrait {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), -20px -20px 60px rgba(255, 255, 255, 0.8);
    z-index: 2;
    transition: transform 0.3s ease;
}

.principal-portrait:hover {
    transform: translateY(-5px);
}

.portrait-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border-left: 4px solid var(--primary-color);
}

.portrait-badge span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.portrait-badge h5 {
    margin: 0;
    color: var(--text-main);
    font-weight: 700;
}