/* About Page Specific Styles */

.team-img.img-1,
.executive-img.img-1 { background: url("../assets/images/ceo picture.jpeg") center top/cover; }
.team-img.img-2 { background: url('../assets/images/team-2.png') center/cover; }
.team-img.img-3 { background: url('../assets/images/team-3.png') center/cover; }
.team-img.img-4 { background: url('../assets/images/team-4.png') center/cover; }

.executive-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    max-width: 1000px;
    margin: 3rem auto;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.executive-img {
    height: 400px;
    width: 100%;
    border-radius: 20px;
    background-color: var(--light-bg);
}

.executive-role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.executive-bio {
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.executive-profile .team-social {
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .executive-profile {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    .executive-img {
        height: 350px;
    }
    .executive-profile .team-social {
        justify-content: center;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
