/* =========================================
   ABOUT.CSS - About Page Specific
   ========================================= */

/* =========================================
   1. ABOUT PAGE HERO
   ========================================= */
.about-page #hero-855 .oh-hero__container {
    max-width: 800px;
}

/* =========================================
   2. STORY SECTION
   ========================================= */
.story-section {
    padding: var(--sectionPadding);
    background: var(--backgroundColor);
}

.story-section .cs-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-section .cs-media-frame {
    flex: 0 0 45%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-section .cs-content {
    flex: 1;
}

/* =========================================
   3. VALUES SECTION
   ========================================= */
.values-section {
    padding: var(--sectionPadding);
    background: var(--bg-offset);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
    padding-left: calc(2rem + var(--card-accent-width, 5px));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--card-accent-width, 5px);
    background: var(--card-accent-gradient);
    border-radius: 1rem 0 0 1rem;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: var(--card-accent-glow);
    pointer-events: none;
    border-radius: inherit;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--headerColor);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--bodyTextColor);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .story-section .cs-split {
        flex-direction: column;
    }
    
    .story-section .cs-media-frame {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   4. TEAM SECTION
   ========================================= */
.team-section {
    padding: var(--sectionPadding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--card-border);
}

.team-member h3 {
    font-size: 1.25rem;
    color: var(--headerColor);
    margin-bottom: 0.25rem;
}

.team-member .role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-member p {
    margin-top: 1rem;
    color: var(--bodyTextColor);
    font-size: 0.95rem;
    line-height: 1.6;
}
