.fhl-agents-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.fhl-agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.fhl-agent-card {
    background: #fff;
    transition: all 0.4s ease;
    text-align: left;
}

.agent-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: #fafafa;
    margin-bottom: 25px;
    border-bottom: 3px solid #eee;
    transition: border-color 0.4s ease;
}

.agent-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Geeft een rustige, uniforme look */
    transition: all 0.5s ease;
}

.fhl-agent-card:hover .agent-image-wrapper {
    border-bottom-color: #c5a46d;
}

.fhl-agent-card:hover .agent-image-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.agent-role {
    display: block;
    color: #c5a46d;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.agent-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #111;
}

.agent-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.agent-contact {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #c5a46d;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.agent-contact:hover {
    color: #c5a46d;
    padding-left: 5px;
}

@media (max-width: 600px) {
    .fhl-agents-grid { grid-template-columns: 1fr; }
}