/* Team Page Specific Styles */

/* Founders Section */
.founders-section {
    padding: 140px 0 100px;
    background-color: var(--white);
}

.founders-section h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-dark);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
}

.founder-image {
    width: 230px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #e8f4fc 0%, #d4e8f5 100%);
}

.founder-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e8f4fc 0%, #c5dced 100%);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
}

/* Work With Us CTA */
.work-with-us {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 60px 10px;
}

.work-with-us h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.work-with-us p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .founders-section {
        padding: 120px 0 60px;
    }

    .founders-section h1 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-image {
        width: 190px;
        height: 250px;
    }

    .work-with-us {
        margin: 40px 10px;
        border-radius: 20px;
    }

    .work-with-us h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .founders-section h1 {
        font-size: 28px;
    }

    .founder-image {
        width: 170px;
        height: 220px;
    }

    .founder-bio {
        font-size: 13px;
    }
}
