
.mot-team-section {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    /* color: #fff; */
    padding: 50px 100px 100px 100px;
    background: linear-gradient(180deg, #fff5e4, #de490d);
}

.mot-team-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #de490d;
    text-transform: uppercase;
}

.mot-team-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    
}

.mot-team-card {
    text-align: center;
    background-color: #de490d;
    box-shadow: 1px 1px 10px #fff5e4;
    color: #fff5e4;
    transition: 0.3s ease-in-out;
}

.mot-team-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mot-img-box {
    width: 220px;
    height: 260px;
    margin: auto;
    border: 8px solid #fff5e4;
    overflow: hidden;
    /* background: #de490d; */
}

.mot-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mot-teacher-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-top: 15px;
    font-style: italic;
}

.mot-designation {
    font-weight: 600;
    margin-top: 10px;
}

.mot-line {
    width: 80px;
    height: 2px;
    background: #c8a76a;
    margin: 15px auto;
}

.mot-desc {
    font-size: 0.9rem;
    color: #e0e0e0;
    padding: 0 10px;
}

/* Tablet */
@media (min-width: 768px) {
    .mot-team-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mot-team-card {
        width: 45%;
    }
}

/* Laptop */
@media (min-width: 992px) {
    .mot-team-card {
        width: 30%;
    }

    .mot-team-title {
        font-size: 3rem;
    }
}