.cs-card-8a1f3867 {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-align: left;
}

.cs-header-8a1f3867 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    gap: 16px;
}

.cs-left-panel-8a1f3867 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.cs-logo-container-8a1f3867 {
    display: inline-block;
}

.cs-logo-8a1f3867 {
    max-height: 58px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.cs-photo-col-8a1f3867 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.cs-avatar-container-8a1f3867 {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}

.cs-avatar-8a1f3867 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cs-avatar-container-8a1f3867:hover .cs-avatar-8a1f3867 {
    transform: scale(1.1);
}

.cs-avatar-hover-overlay-8a1f3867 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-avatar-container-8a1f3867:hover .cs-avatar-hover-overlay-8a1f3867 {
    opacity: 1;
}

.cs-photo-hint-8a1f3867 {
    font-size: 11px;
    margin-top: 6px;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

.cs-stat-section-8a1f3867 {
    margin-top: auto;
}

.cs-stat-num-8a1f3867 {
    font-size: 135px;
    font-weight: 800;
    line-height: 0.85;
    margin: 0;
    color: #14532d;
    letter-spacing: -2px;
}

.cs-stat-label-8a1f3867 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1f2937;
}

.cs-divider-8a1f3867 {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 24px 0;
    width: 100%;
}

.cs-quote-section-8a1f3867 {
    position: relative;
    margin-bottom: 24px;
    padding-top: 32px;
}

.cs-quote-section-8a1f3867::before {
    content: "“";
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 90px;
    font-family: Georgia, serif;
    color: #e5e7eb;
    line-height: 1;
    user-select: none;
}

.cs-quote-8a1f3867 {
    font-size: 16px;
    line-height: 1.55;
    color: #4b5563;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
}

.cs-author-8a1f3867 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cs-footer-8a1f3867 {
    margin-top: auto;
}

.cs-btn-8a1f3867 {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background-color: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
}

.cs-btn-8a1f3867:hover {
    opacity: 0.9;
    color: #ffffff;
}

/* Lightbox Modal CSS */
.cs-lightbox-modal-8a1f3867 {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-lightbox-modal-8a1f3867.active {
    display: flex;
    opacity: 1;
}

.cs-lightbox-content-8a1f3867 {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cs-lightbox-modal-8a1f3867.active .cs-lightbox-content-8a1f3867 {
    transform: scale(1);
}

.cs-lightbox-close-8a1f3867 {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 200;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 480px) {
    .cs-header-8a1f3867 {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }
    
    .cs-left-panel-8a1f3867 {
        align-self: auto;
    }
    
    .cs-avatar-container-8a1f3867 {
        width: 100px;
        height: 100px;
    }
    
    .cs-stat-num-8a1f3867 {
        font-size: 90px;
    }
    
    .cs-stat-label-8a1f3867 {
        font-size: 20px;
    }
}
