/* About Page Layout */
.about-hero {
    height: 40vh;
    min-height: 300px;
}

.about-hero img {
    object-position: center 30%;
}

.centered {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.about-layout {
    display: block; /* Override grid for this page */
    max-width: 900px;
    margin: 50px auto;
}

/* Video Container */
.video-section {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9; /* Modern responsive ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Text Content */
.text-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    line-height: 1.8;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.text-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #444;
}

.text-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    text-align: justify; /* Clean edges */
}

.highlight-box {
    background: #fff5f5; /* Very light red tint */
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin: 0;
    color: #333;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .text-content {
        padding: 25px;
    }
    
    .text-content h2 {
        font-size: 1.6rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}