﻿:root {
    --department-maroon: #8B1A1A;
    --background-light: #F8F9FA;
    --text-dark: #343A40;
}

/* Using a unique prefix 'cde-' for all custom classes */
.cde-page-wrapper {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cde-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--department-maroon);
    letter-spacing: 1px;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.cde-main-content {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.cde-faculty-photo {
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 5px solid var(--background-light);
}

.cde-content-section p {
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cde-main-content {
        padding: 1.5rem;
    }

    .cde-header h1 {
        font-size: 1.8rem;
    }
}
