/* * assets/css/faculty-v2.css 
 * Final Unified Version for UON Faculty Cards
 */

/* --- Main Card Container --- */
.team-block {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.team-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #106934;
}

/* --- Image Section --- */
.team-image {
    height: 220px; /* Standardized for 4-column grid */
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
}

/* --- Content Section --- */
.team-info {
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center; /* Centered as per your perfect example */
}

.faculty-name-link {
    font-weight: 800;
    color: #1a1a1a !important;
    font-size: 17px;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
    line-height: 1.2;
}

.team-position {
    font-size: 14px;
    font-weight: 600;
    color: #106934; /* UON Green */
    line-height: 1.3;
    margin-bottom: 10px;
}

.team-email {
    font-size: 12px;
    color: #666;
    word-break: break-all;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto; /* Keeps email/buttons aligned at bottom */
    margin-bottom: 15px;
}

.team-email i {
    margin-right: 5px;
}

/* --- Social Icons --- */
.social-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-links-wrapper a {
    font-size: 20px;
    color: #333;
    transition: 0.3s;
}

.social-links-wrapper a:hover {
    color: #106934;
}

/* --- Download CV Button System --- */
.download-cv-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    margin: 0 5px 5px 5px; /* Margin to keep it inside the padding */
    transition: 0.3s;
}

/* Active State */
.btn-success-uon {
    background-color: #106934;
    color: white !important;
}

.btn-success-uon:hover {
    background-color: #0b4d26;
}

/* Faded "No CV" State */
.btn-disabled-uon {
    background-color: #8fb89e; 
    color: white !important;
    cursor: default;
}

/* Specific styling for the Sidebar HOD to fix the vertical gap */
.hod-sidebar-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    display: block;
    height: auto !important;
}
.hod-sidebar-card .team-image {
    height: 400px !important; /* Enlarged HOD Image */
    border-bottom: 1px solid #eee;
}

.hod-info-content {
    padding: 20px 25px; /* Tighter padding */
    text-align: center;
}

.hod-info-content .faculty-name-link {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

.hod-info-content .team-position {
    font-size: 16px;
    color: #106934;
    font-weight: 700;
    margin-bottom: 2px;
}

.hod-info-content .team-sub-position {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Fixes the space around the email and social area */
.hod-info-content .team-email {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin: 10px 0; /* Fixed margin instead of auto */
    font-size: 13px;
}

.hod-info-content .social-links-wrapper {
    margin: 15px 0;
    gap: 20px;
}