/*
Theme Name: reoptimize
Theme URI: http://reoptimize.space
Author: ReOptimize
Author URI: http://reoptimize.ca/
Description: T
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reo
*/

/* ── TEAM GRID ─────────────────────────────── */
.team .team-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1.5rem;
}

.team .team-photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

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

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