.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-161b4461 *//* ===================================
   ALUMNI PAGE STYLING
   =================================== */

/* Main Container */
.alumni-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
}

/* Page Header */
.alumni-page-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #720000;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.alumni-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #720000 0%, #d39b00 100%);
    border-radius: 2px;
}

.alumni-page-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin: 0 0 60px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

/* Alumni Card */
.alumni-card {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    border-left: 6px solid #720000;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out both;
}

.alumni-card:nth-child(3) { animation-delay: 0.2s; }
.alumni-card:nth-child(4) { animation-delay: 0.4s; }
.alumni-card:nth-child(5) { animation-delay: 0.6s; }

/* Background decoration */
.alumni-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(211, 155, 0, 0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.alumni-card:hover .alumni-card-bg {
    top: -25%;
    right: -25%;
}

.alumni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(114, 0, 0, 0.15);
    border-left-width: 8px;
}

/* Alumni Photo */
.alumni-photo {
    flex-shrink: 0;
    width: 220px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(114, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #720000 0%, #d39b00 100%);
}

.alumni-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.alumni-card:hover .alumni-photo img {
    transform: scale(1.05);
}

/* Alumni Content */
.alumni-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.alumni-name {
    font-size: 28px;
    font-weight: 700;
    color: #720000;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 15px;
}

.alumni-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #720000 0%, #d39b00 100%);
    border-radius: 2px;
}

.alumni-description {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

.alumni-content p:last-child {
    margin-bottom: 0;
}

/* Degree Badge */
.degree-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(114, 0, 0, 0.1) 0%, rgba(211, 155, 0, 0.1) 100%);
    border: 2px solid rgba(114, 0, 0, 0.3);
    border-radius: 20px;
    color: #720000;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 15px;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 1024px) {
    .alumni-container {
        padding: 40px 15px;
    }
    
    .alumni-page-title {
        font-size: 40px;
    }
    
    .alumni-card {
        padding: 35px;
        gap: 30px;
    }
    
    .alumni-photo {
        width: 200px;
        height: 260px;
    }
}

@media screen and (max-width: 768px) {
    .alumni-page-title {
        font-size: 32px;
    }
    
    .alumni-page-subtitle {
        font-size: 18px;
    }
    
    .alumni-card {
        flex-direction: column;
        padding: 30px 25px;
        gap: 25px;
    }
    
    .alumni-photo {
        width: 100%;
        max-width: 300px;
        height: 320px;
        margin: 0 auto;
    }
    
    .alumni-name {
        font-size: 24px;
    }
    
    .alumni-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .alumni-container {
        padding: 30px 10px;
    }
    
    .alumni-page-title {
        font-size: 26px;
    }
    
    .alumni-page-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .alumni-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .alumni-photo {
        height: 280px;
    }
    
    .alumni-name {
        font-size: 20px;
    }
    
    .alumni-description {
        font-size: 14px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .alumni-container {
        padding: 20px;
    }
    
    .alumni-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 30px;
    }
    
    .alumni-card-bg {
        display: none;
    }
}/* End custom CSS */