.founder {
    background: rgba(252, 245, 252, 1);
}

.founder__inner {
    display: flex;
    gap: 25px;
    align-items: stretch;
}

.founder__quote-card {
    flex: 0 0 calc(50% - 13px);
    background: #8D2A8F;
    border-radius: 25px;
    padding: 60px 40px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.founder__quote-card::before,
.founder__quote-card::after {
    content: "";
    position: absolute;
    background: url("../img/normal-tooth.png") no-repeat center / contain;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.founder__quote-card::before {
    width: 245px;
    height: 260px;
    top: 10px;
    right: 26px;
}

.founder__quote-card::after {
    width: 340px;
    height: 460px;
    bottom: -228px;
    left: -4px;
}

.founder__quote-card > * {
    position: relative;
    z-index: 1;
}

.founder__quote {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 45px;
    color: #FFFFFF;
    margin: 0;
}

.founder__badge {
    display: flex;
    align-items: center;
    background: #FCF5FC;
    border-radius: 15px;
    padding: 15px 20px;
    width: fit-content;
    margin-top: 40px;
}

.founder__badge-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder__badge-name {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #5C075E;
    display: block;
}

.founder__badge-role {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #5C075E;
    display: block;
}

.founder__photo-card {
    flex: 0 0 calc(50% - 13px);
    background: #E0E0DF;
    border-radius: 25px;
    overflow: hidden;
    min-height: 480px;
    position: relative;
}

.founder__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    display: block;
}

@media (max-width: 1024px) {
    .founder__quote {
        font-size: 22px;
        line-height: 36px;
    }
    .founder__quote-card {
        padding: 40px 28px 28px;
        min-height: 400px;
    }
    .founder__quote-card::before { width: 180px; height: 180px; }
    .founder__quote-card::after  { width: 240px; height: 320px; }
    .founder__photo-card { min-height: 400px; }
}

@media (max-width: 768px) {
    .founder { padding: 60px 0; }
    .founder__inner { flex-direction: column; }
    .founder__quote-card,
    .founder__photo-card { flex: none; width: 100%; }
    .founder__photo-card { min-height: 320px; }
    .founder__quote { font-size: 18px; line-height: 30px; }
    .founder__badge-name { font-size: 18px; }
}

@media (max-width: 576px) {
    .founder { padding: 40px 0; margin-bottom: 30px !important; }
    .founder__quote { font-size: 16px; line-height: 26px; }
    .founder__photo-card { min-height: 260px; }
    .founder__quote-card::before,
    .founder__quote-card::after { display: none; }
}