.ef-founders-section {
    background: #f7f0e6;
    padding: 70px 20px;
}

.ef-founders-heading-wrap {
    text-align: center;
    margin-bottom: 35px;
}

.ef-founders-heading {
    font-family: "Instrument Serif", serif;
    font-size: 42px;
    line-height: 1;
    color: #222;
    margin: 0;
    font-weight: 600;
}

.ef-founders-top-line,
.ef-founders-bottom-line {
    display: block;
    width: 42px;
    height: 1px;
    background: #c99b55;
    margin-left: auto;
    margin-right: auto;
}

.ef-founders-top-line {
    margin-bottom: 10px;
}

.ef-founders-bottom-line {
    margin-top: 12px;
}

.ef-founders-top-line:after {
    content: "";
    width: 7px;
    height: 7px;
    border: 1px solid #c99b55;
    display: block;
    transform: rotate(45deg);
    margin: -3px auto 0;
    background: transparent;
}

.ef-founders-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.ef-founder-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.ef-founder-image {
    height: 345px;
    border-bottom: 1px solid #c99b55;
    background: #111;
}

.ef-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.ef-founder-content {
    padding: 34px 30px 36px;
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 22px;
}

.ef-founder-icon {
    width: 42px;
    height: 58px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.ef-founder-icon span {
    display: block;
    width: 7px;
    border: 1px solid #c99b55;
    border-bottom: 0;
}

.ef-founder-icon span:nth-child(1) {
    height: 34px;
}

.ef-founder-icon span:nth-child(2) {
    height: 48px;
}

.ef-founder-icon span:nth-child(3) {
    height: 26px;
}

.ef-founder-title h3 {
    font-family: "Instrument Serif", serif;
    color: #fff;
    font-size: 25px;
    line-height: 1.1;
    margin: 0 0 6px;
    font-weight: 500;
}

.ef-founder-title p {
    color: #c99b55;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0;
}

.ef-founder-title:after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    background: #c99b55;
    margin-top: 16px;
}

.ef-founder-desc {
    grid-column: 1 / -1;
    margin-top: 24px;
    color: rgba(255,255,255,0.86);
    font-size: 14px;
    line-height: 1.7;
}

.ef-founder-desc p {
    margin: 0 0 18px;
}

.ef-founder-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .ef-founders-section {
        padding: 50px 15px;
    }

    .ef-founders-heading {
        font-size: 34px;
    }

    .ef-founders-grid {
        grid-template-columns: 1fr;
    }

    .ef-founder-image {
        height: 300px;
    }

    .ef-founder-content {
        grid-template-columns: 42px 1fr;
        column-gap: 16px;
    }

    .ef-founder-title h3 {
        font-size: 22px;
    }

    .ef-founder-desc {
        font-size: 13px;
    }
}