/* TEAM GRID - Desktop = 3 Members */
.mtm-team-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 Members in One Row */
}

/* TEAM CARD */
.mtm-team-card {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
}

.mtm-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* IMAGE - Square (300x300) */
.mtm-team-card .mtm-img {
    border-radius: 0px; /* Square Shape */
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* DESIGNATION */
.mtm-designation {
    color: #777;
    font-size: 15px;
}

/* SHORT BIO */
.mtm-bio {
    color: #555;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
    padding: 0 10px;
}

/* 📌 Responsive for Tablets (2 Members) */
@media (max-width: 992px) {
    .mtm-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 📱 Responsive for Mobile (1 Member) */
@media (max-width: 600px) {
    .mtm-team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


.column-title a,
.check-column {
    cursor: move !important;
}


