.tm-team-grid {
    display: grid;
    grid-template-columns: repeat(var(--tm-columns, 4), 1fr);
    gap: 28px;
    margin: 24px 0;
}

@media (max-width: 900px) {
    .tm-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tm-team-grid {
        grid-template-columns: 1fr;
    }
}

.tm-team-member {
    text-align: center;
}

.tm-team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    background: #f0f0f1;
}

.tm-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tm-team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e2e2;
}

.tm-team-name {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
}

.tm-team-designation {
    margin: 0;
    font-size: 14px;
    color: #666;
	font-family: "Noto Serif Bengali";
}
