/* About Page Specific Styles */

/* Page Specific Layout (Mobile) */
.cover-container {
    width: 100%;
    overflow: hidden;
}

.cover {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.who-we-are {
    padding: 2rem 5%;
    text-align: center;
}

#whovr {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

/* SVG Graphic for Underline */
.whovr-svg {
    display: inline-block;
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

/* Sections: Mission, Vision, Logo (stacked mobile) */
.content-section {
    padding: 2rem 5%;
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 0;
}

/* Image Grid */
.image-section {
    padding: 2rem 5%;
}

.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.curved-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
}

/* Video Grid */
.video-section {
    padding: 2rem 5%;
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

iframe {
    width: 100%;
    max-width: 900px;   /* optional limit */
    margin: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    object-fit: cover;
}

/* Tablet Responsive */
@media screen and (min-width: 600px) {
    .image-container {
        grid-template-columns: 1fr 1fr;
    }

    .section-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
}

/* Desktop Responsive */
@media screen and (min-width: 1024px) {
    #whovr {
        font-size: 4vw;
    }

    .underline .whovr-svg {
        width: 22vw;
        max-width: none;
    }

    .content-section {
        padding: 4vw 10%;
    }

    .section-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #vision .section-container {
        flex-direction: row-reverse;
    }

    .image-container {
        max-width: 1200px;
        margin: 0 auto;
        gap: 1.5vw;
    }
}