
.founders-section {
    overflow: hidden;
}

.founders-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    align-items: end;
    min-height: 580px;
    gap: 0;
}

.founder-left,
.founder-right {
    display: flex;
    align-items: flex-end;
}

.founder-left {
    justify-content: flex-end;
}

.founder-right {
    justify-content: flex-start;
}

.founder-img-left, .founder-img-right {
    display: block;
    width: 100%;
    max-width: 340px;
    min-width: 340px;
    height: 500px;
    object-fit: cover;
    object-position: top center;
    mix-blend-mode: multiply;
}

.founders-center-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    height: 100%;
}

.founders-mission-box {
    background: #5b21fa;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
}


.founder-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.founder-img-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.founder-name-box {
    text-align: center;
    padding: 16px 0 20px;
    width: 100%;
}

.founder-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
    .founders-wrapper {
        grid-template-columns: 220px 1fr 220px;
        min-height: 480px;
    }
    .founder-img-left,
    .founder-img-right {
        height: 420px;
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .founders-wrapper {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .founder-left,
    .founder-right {
        justify-content: center;
    }
    .founder-img-left,
    .founder-img-right {
        height: 340px;
        max-width: 260px;
    }
    .founders-center-text {
        padding: 40px 20px;
    }
}
