/* GRID AND CARDS */
.founders-section-eaa51d5b {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.founders-grid-eaa51d5b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.founder-card-eaa51d5b {
    position: relative;
    background-color: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}

.founder-card-eaa51d5b:hover {
    transform: translateY(-4px);
}

/* Card custom hover glows */
.card-glow-eaa51d5b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.card-glow-blue-eaa51d5b {
    border-radius: 12px;
    box-shadow: inset 0 0 25px rgba(83, 182, 230, 0.15);
    border: 2px solid #53B6E6;
}

.card-glow-amber-eaa51d5b {
    border-radius: 12px;
    box-shadow: inset 0 0 25px rgba(217, 119, 6, 0.15);
    border: 2px solid #D97706;
}

.founder-card-eaa51d5b:hover .card-glow-eaa51d5b {
    opacity: 1;
}

.founder-card-eaa51d5b:hover {
    border-color: transparent;
}

.card-content-eaa51d5b {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar-placeholder-eaa51d5b {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid #374151;
    transition: border-color 0.3s ease;
}

.founder-card-eaa51d5b:hover[data-founder="anil"] .avatar-placeholder-eaa51d5b {
    border-color: #53B6E6;
}

.founder-card-eaa51d5b:hover[data-founder="kavita"] .avatar-placeholder-eaa51d5b {
    border-color: #D97706;
}

.avatar-initial-eaa51d5b {
    font-size: 28px;
    font-weight: 700;
    color: #f3f4f6;
    letter-spacing: 1px;
}

.founder-name-eaa51d5b {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.founder-title-eaa51d5b {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 20px 0;
    line-height: 1.4;
    min-height: 40px;
}

.view-dossier-eaa51d5b {
    font-size: 13px;
    font-weight: 600;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.founder-card-eaa51d5b:hover .view-dossier-eaa51d5b {
    color: #ffffff;
}

.founder-card-eaa51d5b:hover[data-founder="anil"] .view-dossier-eaa51d5b {
    color: #53B6E6;
}

.founder-card-eaa51d5b:hover[data-founder="kavita"] .view-dossier-eaa51d5b {
    color: #D97706;
}

.founder-card-eaa51d5b:hover .view-dossier-eaa51d5b .arrow-eaa51d5b {
    transform: translateX(4px);
}

.arrow-eaa51d5b {
    transition: transform 0.2s ease;
    display: inline-block;
}

/* HIGH-CONTRAST ARTISTIC MODAL */
.founder-modal-eaa51d5b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

body.admin-bar .founder-modal-eaa51d5b {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    body.admin-bar .founder-modal-eaa51d5b {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.founder-modal-eaa51d5b.active-eaa51d5b {
    display: flex;
}

.modal-backdrop-eaa51d5b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.modal-wrapper-eaa51d5b {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    background-color: #0B0F19;
    border: 1px solid #1f2937;
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s ease;
    opacity: 0;
}

.founder-modal-eaa51d5b.active-eaa51d5b .modal-wrapper-eaa51d5b {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-content-eaa51d5b {
    position: relative;
    padding: 40px;
}

.modal-close-eaa51d5b {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-eaa51d5b:hover {
    color: #ffffff;
    background-color: #1f2937;
    transform: rotate(90deg);
}

.modal-header-eaa51d5b {
    border-bottom: 1px solid #1f2937;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.modal-founder-name-eaa51d5b {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.modal-founder-title-eaa51d5b {
    font-size: 18px;
    color: #e5e7eb;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.credentials-tag-eaa51d5b {
    font-size: 12px;
    font-weight: 700;
    background-color: #1f2937;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-founder-subtitle-eaa51d5b {
    font-size: 15px;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
}

/* 2-Column Editorial Magazine Layout */
.modal-body-eaa51d5b {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.col-section-title-eaa51d5b {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
}

.text-blue-eaa51d5b {
    color: #38BDF8;
}

.text-amber-eaa51d5b {
    color: #F59E0B;
}

.credentials-list-eaa51d5b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list-eaa51d5b li {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    border-left: 2px solid #1f2937;
    padding-left: 15px;
}

.credentials-list-eaa51d5b li strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
}

.credentials-list-eaa51d5b li span {
    color: #d1d5db;
}

.biography-content-eaa51d5b p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0 0 20px 0;
}

.biography-content-eaa51d5b p strong {
    color: #ffffff;
}

/* RESPONSIVENESS */
@media screen and (max-width: 768px) {
    .modal-body-eaa51d5b {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-content-eaa51d5b {
        padding: 30px 20px;
    }
    
    .modal-founder-name-eaa51d5b {
        font-size: 28px;
    }
}
