/* Faculty Members Professional Styling - Conservative Design */

/* Faculty table styling */
.faculty-table {
    width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #FFFFFF;
}

/* Page title row */
.faculty-title-row {
    height: 38px;
}

.faculty-title-cell {
    font-size: 24px;
    font-weight: bold;
    color: #1a365d;
    text-align: center;
    padding: 15px;
}

/* Subtitle row */
.faculty-subtitle-row {
    height: 35px;
}

.faculty-subtitle-cell {
    font-size: 16px;
    font-weight: bold;
    color: #2d3748;
    text-align: left;
    padding: 10px 15px;
    background: #f7fafc;
    border-bottom: 2px solid #1a365d;
}

/* Section header rows */
.section-header-row {
    height: 30px;
}

.section-header-cell {
    background: linear-gradient(to right, #1a365d 0%, #2c5282 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    padding: 12px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Faculty name rows */
.faculty-name-row {
    height: 30px;
}

.faculty-name-cell {
    background: #e2e8f0;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    color: #1a365d;
}

/* Faculty details rows */
.faculty-details-row {
    height: 50px;
}

.faculty-photo-cell {
    width: 150px;
    padding: 15px;
    vertical-align: top;
}

.faculty-photo-cell img {
    width: 130px;
    height: 130px;
    border: 2px solid #1a365d;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.15);
}

.faculty-info-cell {
    padding: 15px 20px;
    vertical-align: top;
    line-height: 1.8;
}

.faculty-interests {
    color: #2d3748;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: normal;
}

.faculty-contact-info {
    font-size: 14px;
    font-weight: normal;
    color: #4a5568;
}

.contact-line {
    margin: 8px 0;
}

.contact-label {
    font-weight: bold;
    color: #1a365d;
}

.faculty-email {
    color: #2b6cb0;
    text-decoration: none;
}

.faculty-email:hover {
    color: #1a365d;
    text-decoration: underline;
}

.cv-link {
    color: #FFFFFF !important;
    background: #4a7ba7;
    padding: 6px 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    margin-top: 8px;
    transition: background 0.2s ease;
}

.cv-link:hover {
    background: #1e3a8a;
}

/* Spacing cell */
.spacing-cell {
    height: 10px;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .faculty-table {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .faculty-photo-cell {
        display: block;
        width: 100%;
        text-align: center;
        padding-bottom: 0;
    }

    .faculty-info-cell {
        display: block;
        width: 100%;
        text-align: center;
    }

    .faculty-photo-cell img {
        width: 120px;
        height: 120px;
    }
}