/* ==========================================================================
   Block: Diensten Grid
   ========================================================================== */

.regio-diensten__intro {
    font-size: 17px;
    color: var(--rb-text-muted);
    max-width: 720px;
    margin: 0 0 32px;
}

.regio-diensten__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--rb-gap);
    margin-bottom: 32px;
}

.regio-diensten__item {
    background: var(--rb-white);
    border: 1px solid var(--rb-gray-200);
    border-radius: var(--rb-radius);
    padding: 28px 24px;
    transition: box-shadow .25s ease, border-color .25s ease;
}

.regio-diensten__item:hover {
    border-color: var(--rb-blue);
    box-shadow: 0 4px 16px rgba(0, 110, 183, .10);
}

.regio-diensten__icoon {
    display: inline-block;
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1;
}

.regio-diensten__item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.regio-diensten__item h3 a {
    color: var(--rb-text);
    text-decoration: none;
    transition: color .2s ease;
}

.regio-diensten__item h3 a:hover {
    color: var(--rb-blue);
}

.regio-diensten__item p {
    font-size: 15px;
    color: var(--rb-text-muted);
    margin: 0 0 12px;
    line-height: 1.6;
}

.regio-diensten__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--rb-blue);
    text-decoration: none;
    transition: color .2s ease;
}

.regio-diensten__link:hover {
    color: var(--rb-blue-dark);
    text-decoration: none;
}

.regio-diensten__cta {
    margin: 0;
}

.regio-diensten__cta a {
    font-weight: 700;
    font-size: 16px;
    color: var(--rb-blue);
    text-decoration: none;
    transition: color .2s ease;
}

.regio-diensten__cta a:hover {
    color: var(--rb-blue-dark);
}

/* ── Even-section override: cards stay white on gray bg ───────────────── */

.regio-block:nth-child(even) .regio-diensten__item {
    background: var(--rb-white);
}

@media (max-width: 576px) {
    .regio-diensten__grid {
        grid-template-columns: 1fr;
    }
}
