.hopmans-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hopmans-team-afdeling {
    margin-bottom: 40px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hopmans-team-afdeling.active {
    display: block;
    opacity: 1;
}

.hopmans-team-afdeling-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.hopmans-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hopmans-team-lid {
    text-align: center;
}

.hopmans-team-lid-foto {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Maakt de container vierkant */
    margin-bottom: 15px;
    overflow: hidden;
}

.hopmans-team-lid-foto img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hoekje uit de foto */
.hopmans-team-lid-foto:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 50px 50px 0 0;
    border-style: solid;
    border-color: transparent #fff #fff transparent;
    z-index: 1;
}

.hopmans-team-lid-info {
    text-align: left;
}

.hopmans-team-lid-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--e-global-color-primary);
}

.hopmans-team-lid-info p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

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

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

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

.hopmans-team-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.hopmans-team-filter-btn {
    padding: 8px 16px !important;
    border: 2px solid var(--e-global-color-primary) !important;
    background: #fff !important;
    border-radius: 4px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--e-global-color-primary) !important;
    text-decoration: none !important;
    line-height: 1.2em !important;
}

.hopmans-team-filter-btn:hover {
    background: var(--e-global-color-primary) !important;
    color: #fff !important;
}

.hopmans-team-filter-btn.active {
    background: var(--e-global-color-primary) !important;
    color: #fff !important;
    border-color: var(--e-global-color-primary) !important;
} 