.epm-container-92237164 {
    padding: 60px 20px;
    width: 100%;
    overflow: hidden;
}

.epm-grid-92237164 {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.epm-item-92237164 {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.epm-top-section-92237164 {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.epm-label-92237164 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: serif;
}

.epm-top-line-92237164 {
    width: 100%;
    height: 1px;
    background-color: rgba(198, 161, 91, 0.30);
    max-width: 180px;
}

.epm-card-92237164 {
    background-color: #FFFDF8;
    border: 1px solid rgba(198, 161, 91, 0.30);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.epm-card-92237164:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(198, 161, 91, 0.6);
}

.epm-photo-wrapper-92237164 {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.epm-photo-img-92237164 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease-in-out;
}

.epm-card-92237164:hover .epm-photo-img-92237164 {
    transform: scale(1.03);
}

.epm-content-92237164 {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.epm-name-92237164 {
    font-family: serif;
    font-size: 22px;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.epm-role-92237164 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}

.epm-divider-92237164 {
    width: 40px;
    height: 2px;
    background-color: #C6A15B;
    margin-bottom: 20px;
}

.epm-desc-92237164 {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.epm-dots-container-92237164 {
    display: none; /* hidden on desktop */
}

/* Mobile Responsiveness & Swipe Carousel */
@media (max-width: 768px) {
    .epm-grid-92237164 {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        gap: 20px;
    }
    
    .epm-grid-92237164::-webkit-scrollbar {
        display: none;
    }

    .epm-item-92237164 {
        flex: 0 0 88%;
        scroll-snap-align: center;
    }

    .epm-dots-container-92237164 {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .epm-dot-92237164 {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #D0D0D0;
        transition: background-color 0.3s;
    }
}