/* ──────────────────────────────────────────────
   Abonnementen overzichtspagina — mobiel-first
────────────────────────────────────────────── */

/* ── Intro ── */
.abbos-overzicht-intro {
    margin-bottom: 2rem;
}

.abbos-overzicht-intro h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.abbos-overzicht-intro p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* ── Grid ── */
.abbos-overzicht-section {
    margin-bottom: 2rem;
}

.abbos-overzicht-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* ── Card ── */
.abbos-overzicht-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    min-height: 140px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.abbos-overzicht-card:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    text-decoration: none;
    color: inherit;
}

.abbos-overzicht-card-icoon {
    font-size: 36px;
    line-height: 1;
}

.abbos-overzicht-card-titel {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.abbos-overzicht-card-count {
    font-size: 13px;
    color: #6b7280;
    display: block;
    flex: 1;
}

.abbos-overzicht-card-link {
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

/* ──────────────────────────────────────────────
   Tablet (≥ 480px)
────────────────────────────────────────────── */
@media (min-width: 480px) {
    .abbos-overzicht-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ──────────────────────────────────────────────
   Desktop (≥ 768px)
────────────────────────────────────────────── */
@media (min-width: 768px) {
    .abbos-overzicht-intro h1 {
        font-size: 2rem;
    }

    .abbos-overzicht-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
