/* About Page Specific Styles */

.about-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.square-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 33.333%;
    height: 100%;
    background-image: url('../images/origins.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.quote {
    padding: 2.5rem 0;
    border-left: 4px solid var(--color-black);
    padding-left: 2.5rem;
}

blockquote {
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

cite {
    font-style: normal;
    display: block;
    font-size: 1.2rem;
}

.community {
    background-color: var(--color-white);
}

@media (max-width: 992px) {
    .square-image {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .square-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
    
    .quote {
        padding: 2rem 0;
        padding-left: 1.5rem;
    }
    
    blockquote {
        font-size: 1.5rem;
    }
}