/* CSS Document */

.employees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .employees-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.employee-card {
    text-align: center;
	display: block;
    text-decoration: none;
    color: inherit;
}

.employee-image img {
    width: 100%;
    height: auto;
    display: block;
}