/**
 * Elementor President Info Widget Styles
 * 
 * Styles for the LU President Info Elementor widget
 * Matching the design from the provided image
 *
 * @package Lebanese_University
 * @since 1.0.0
 */

/* President Info Section */
.lu-president-info-section {
    width: 100%;
    background-color: #ffffff;
}

.lu-president-info-container {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

/* Image Wrapper */
.lu-president-image-wrapper {
    flex: 0 0 auto;
    width: 33.333%;
    position: relative;
    overflow: hidden;
}

.lu-president-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Separator Line */
.lu-president-separator {
    width: 1px;
    background-color: #e5e7eb;
    flex-shrink: 0;
    align-self: stretch;
    margin: 0;
}

/* Content Wrapper */
.lu-president-content-wrapper {
    flex: 1 1 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* President Name */
.lu-president-name {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* President Subtitle */
.lu-president-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #182F61;
    margin: 0;
    line-height: 1.4;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
}

/* President Description */
.lu-president-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.lu-president-description p {
    margin: 0 0 16px 0;
}

.lu-president-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .lu-president-content-wrapper {
        padding: 0 32px;
    }
    
    .lu-president-name {
        font-size: 32px;
    }
    
    .lu-president-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .lu-president-info-container {
        flex-direction: column;
    }
    
    .lu-president-image-wrapper {
        width: 100%;
    }
    
    .lu-president-separator {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
    
    .lu-president-content-wrapper {
        padding: 0 24px;
        width: 100%;
    }
    
    .lu-president-name {
        font-size: 28px;
    }
    
    .lu-president-subtitle {
        font-size: 16px;
    }
    
    .lu-president-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .lu-president-content-wrapper {
        padding: 0 16px;
    }
    
    .lu-president-name {
        font-size: 24px;
    }
    
    .lu-president-subtitle {
        font-size: 15px;
    }
    
    .lu-president-description {
        font-size: 14px;
    }
}

