.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for shortcode, class: .elementor-element-c89b49b *//* ==========================================================================
   Faculty Section - Redesign with Centered Cards, Premium Accents & Animations
   ========================================================================== */

/* Outer Section Layout */
.eventms-faculty {
    padding: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
}

/* Search Area Setup */
.eventms-faculty__search {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
}

.eventms-faculty__search-input {
    width: 100%;
    max-width: 360px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.eventms-faculty__search-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
}

/* Base list column container */
.eventms-faculty__grid {
    display: flex;
    flex-direction: column;
    gap: 32px; /* Breathing room between rows */
}

/* Faculty Row Wrapper
   CHANGED: align-items: center keeps the Image Card perfectly centered 
   vertically, regardless of how long the text info card grows.
*/
.eventms-faculty__card {
    display: flex;
    flex-direction: row;
    align-items: center; 
    gap: 28px; /* Slightly wider spacing for modern breathing room */
    background: transparent;
}

/* Sub-Card 1: Image Card 
   Does not stretch; handles subtle elevation animation independently on hover.
*/
.eventms-faculty__img,
.eventms-faculty__img--placeholder {
    width: 220px;
    min-width: 220px;
    height: 260px; /* Locked height to preserve aspect ratio layout */
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    
    /* Smooth transition for the hover state */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.eventms-faculty__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sub-Card 2: Information Card
   Handles full biography length and smooth lift transitions.
*/
.eventms-faculty__body {
    flex-grow: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    
    /* Smooth transition matching the image card */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 
   Hover States: Slight scale out, smooth upward translation ("lift"), 
   and a rich, diffused modern drop shadow.
*/
.eventms-faculty__card:hover .eventms-faculty__img,
.eventms-faculty__card:hover .eventms-faculty__body {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 45, 98, 0.08);
}

/* Faculty Name Heading */
.eventms-faculty__name {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* DESIGN UPGRADE: Lecture Topic Accent 
   Adds a stylish left border accent to frame the presentation title nicely.
*/
.eventms-faculty__topic {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 14px 0;
    padding-left: 12px;
    border-left: 3px solid #002d62; /* Sharp, authoritative accent marker */
    line-height: 1.4;
}

/* DESIGN UPGRADE: Time Badge 
   Transformed into a sleek pill badge with a subtle clock/schedule design feel.
*/
.eventms-faculty__time {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #b45309; /* Deep warm amber text */
    background-color: #fef3c7; /* Soft amber background */
    border: 1px solid #fde68a;
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
    margin: 0 0 20px 0;
    letter-spacing: 0.2px;
}

/* Prepend a subtle clock icon directly through CSS pseudo-elements */
.eventms-faculty__time::before {
    content: "🕒";
    margin-right: 6px;
    font-size: 12px;
}

/* Full Biography Text */
.eventms-faculty__bio {
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
    word-break: break-word;
    white-space: normal;
}

/* No Results fallback text */
.eventms-faculty__no-results {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
    font-size: 16px;
    font-style: italic;
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    /* Stack components cleanly for mobile viewports */
    .eventms-faculty__card {
        flex-direction: column;
        align-items: center; 
        gap: 16px;
    }

    /* Clear individual scales on responsive stack layout */
    .eventms-faculty__card:hover .eventms-faculty__img,
    .eventms-faculty__card:hover .eventms-faculty__body {
        transform: translateY(-3px); /* Simplified lift for mobile performance */
    }

    .eventms-faculty__img,
    .eventms-faculty__img--placeholder {
        width: 100%;
        max-width: 320px;
        height: 320px;
    }

    .eventms-faculty__body {
        width: 100%;
        box-sizing: border-box;
        padding: 24px;
    }

    .eventms-faculty__search {
        justify-content: center;
    }

    .eventms-faculty__search-input {
        max-width: 100%;
    }
}/* End custom CSS */