.tmp-692aa9e1-card {
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.tmp-692aa9e1-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
}

.tmp-692aa9e1-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tmp-692aa9e1-name {
    margin: 0;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.tmp-692aa9e1-designation {
    font-size: 14px;
    margin-bottom: 12px;
}

.tmp-692aa9e1-trigger {
    background: none !important;
    background-color: transparent !important;
    border: none;
    padding: 0;
    cursor: pointer;
    font-style: italic;
    font-weight: 600;
    text-decoration: none;
    text-align: left;
    display: inline-block;
}

.tmp-692aa9e1-trigger:hover,
.tmp-692aa9e1-trigger:focus,
.tmp-692aa9e1-trigger:active {
    text-decoration: none !important;
    background: none !important;
    background-color: transparent !important;
    color: inherit;
    box-shadow: none !important;
    outline: none !important;
}

/* Modal Popup Overlay */
.tmp-692aa9e1-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.tmp-692aa9e1-modal-box {
    background-color: #1a3c40; /* Custom slate blue backdrop similar to image */
    color: #ffffff;
    max-width: 1000px;
    width: 100%;
    border-radius: 0; /* Clean straight edges as shown */
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    animation: tmp692aa9e1FadeIn 0.3s ease;
}

.tmp-692aa9e1-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.tmp-692aa9e1-modal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    padding: 60px;
}

.tmp-692aa9e1-modal-left {
    display: flex;
    flex-direction: column;
}

.tmp-692aa9e1-modal-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 24px;
}

.tmp-692aa9e1-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tmp-692aa9e1-modal-name {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.tmp-692aa9e1-modal-desig {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.4;
    font-weight: 500;
}

.tmp-692aa9e1-modal-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar for Right Side on Desktop */
.tmp-692aa9e1-modal-right::-webkit-scrollbar {
    width: 6px;
}
.tmp-692aa9e1-modal-right::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
.tmp-692aa9e1-modal-right::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.tmp-692aa9e1-modal-bio-content {
    font-size: 15px;
    line-height: 1.7;
    color: #f1f5f9;
}

.tmp-692aa9e1-modal-bio-content p {
    margin-top: 0;
    margin-bottom: 20px;
}

@keyframes tmp692aa9e1FadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 767px) {
    .tmp-692aa9e1-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 15px;
    }
    .tmp-692aa9e1-modal-box {
        margin: 30px auto;
        max-width: 100%;
        border-radius: 8px;
    }
    .tmp-692aa9e1-modal-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    .tmp-692aa9e1-modal-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .tmp-692aa9e1-modal-img-wrapper {
        max-width: 250px;
        margin-bottom: 16px;
    }
    .tmp-692aa9e1-modal-right {
        padding: 0;
        max-height: none;
        overflow-y: visible;
    }
}
