/* Founders Section Styles */
.founders-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e4d2 100%);
}

.founders-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.founders-header {
    margin-bottom: 3rem;
}

.founders-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #264570;
    margin: 0;
    text-transform: uppercase;
}

.founders-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #264570;
    margin: 0.5rem 0 0;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-image-wrapper {
    margin-bottom: 1.25rem;
    /* border-radius: 0.75rem; */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    /* border: 1px solid rgba(38, 69, 112, 0.2); */
}

.founder-image {
    width: 450px;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s 
ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.02);
}

.founder-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.9rem;
    color: #264570;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.founder-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(38, 69, 112, 0.7);
    margin: 0;
    text-transform: uppercase;
}

/* Single Media Query */
@media (max-width: 768px) {
    .founders-container {
        padding: 3rem 1rem;
    }
    
    .founders-title {
        font-size: 1.5rem;
    }
    
    .founders-grid {
        gap: 2rem;
    }
    
    .founder-image {
        width: 240px;
        height: 300px;
    }
}