/* ABOUT.CSS - About page specific styles */

.page-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 12px;
}

.page-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

.profile-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .profile-section {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.profile-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.pull-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #000;
    font-style: italic;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.additional-section {
    margin-bottom: 60px;
}

.additional-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.additional-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}
