.faculty-container {
    max-width: 1600px;
    margin: 0 auto 60px auto;
    padding: 40px 20px 0 20px;
    background: #fff;
}

.faculty-hero-section {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 48px;
    margin-bottom: 40px;
}

.faculty-hero-left {
    flex: 1.2;
    min-width: 320px;
}

.faculty-hero-left h1 {
    font-size: 2rem;
    color: #c75a1b;
    margin-bottom: 18px;
    font-weight: bold;
}

.faculty-hero-left p {
    font-size: 1.5rem;
    color: #333;
    line-height: 2;
}

.faculty-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-hero-right img {
    max-width: 470px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background: #f6f6f6;
}

.faculty-list-section {
    width: 100%;
}

.faculty-list-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 32px;
}

.faculty-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 18px 10px 10px 10px;
    box-shadow: 0 2px 10px rgba(199, 90, 27, 0.04);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faculty-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    background: #f7f7f7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0a96c;
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-photo-placeholder {
    background: #fff;
    border: 2px dashed #e0a96c;
}

.faculty-name {
    font-size: 1.3rem;
    color: #c75a1b;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 2px;
}

.faculty-desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    min-height: 48px;
}

@media (max-width: 1100px) {
    .faculty-hero-section {
        flex-direction: column;
        gap: 24px;
    }

    .faculty-list-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .faculty-card {
        min-width: 140px;
        flex: 1 1 40%;
    }
}

@media (max-width: 700px) {
    .faculty-container {
        padding: 18px 4px 0 4px;
    }

    .faculty-hero-left h1 {
        font-size: 1.3rem;
    }

    .faculty-list-row {
        flex-direction: column;
        gap: 18px;
    }

    .faculty-card {
        width: 100%;
        min-width: unset;
    }
}