/* ──────────────────────────────────────────────
   Abbos Categorie Page — mobiel-first
────────────────────────────────────────────── */

/* ── Breadcrumb ── */
.abbos-breadcrumb {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 1rem;
}
.abbos-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}
.abbos-breadcrumb a:hover {
    text-decoration: underline;
}

/* ── Intro Header ── */
.abbos-cat-header {
    background: #eff6ff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
}
.abbos-cat-titel {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.25;
}
.abbos-cat-intro {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.abbos-cat-intro p {
    margin: 0 0 0.75rem;
}
.abbos-cat-intro p:last-child {
    margin-bottom: 0;
}

/* ── Statistics ── */
.abbos-cat-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.abbos-cat-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.abbos-cat-stat-waarde {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}
.abbos-cat-stat-label {
    font-size: 0.85rem;
    color: #4b5563;
}

/* ── Newsletter CTA ── */
.abbos-newsletter-cta {
    background: #fef3c7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.abbos-newsletter-kop {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
}
.abbos-newsletter-sub {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}
.abbos-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.abbos-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.6rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #fff;
}
.abbos-newsletter-form input[type="email"]:focus {
    outline: 2px solid #2563eb;
    outline-offset: 1px;
    border-color: #2563eb;
}
.abbos-newsletter-form button {
    padding: 0.6rem 1.25rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.abbos-newsletter-form button:hover {
    background: #1d4ed8;
}

/* ── Provider Listing ── */
.abbos-provider-listing {
    margin-bottom: 2rem;
}
.abbos-provider-listing-titel {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0 0 1rem;
}
.abbos-provider-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.abbos-provider-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.abbos-provider-card:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    text-decoration: none;
    color: inherit;
}
.abbos-provider-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.abbos-provider-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 4px;
}
.abbos-provider-logo-placeholder {
    width: 56px;
    height: 56px;
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #6b7280;
    text-transform: uppercase;
}
.abbos-provider-info {
    flex: 1;
    min-width: 0;
}
.abbos-provider-naam {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}
.abbos-provider-beschrijving {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.abbos-provider-link {
    flex-shrink: 0;
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 500;
}

/* ── SEO Content ── */
.abbos-seo-content {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    color: #1a1a1a;
    line-height: 1.7;
}
.abbos-seo-content h2 {
    font-size: 1.3rem;
    margin: 0 0 1rem;
}
.abbos-seo-content h3 {
    font-size: 1.05rem;
    margin: 1.5rem 0 0.5rem;
    color: #1a1a1a;
}
.abbos-seo-content p {
    color: #4b5563;
    margin: 0 0 0.75rem;
}

/* ──────────────────────────────────────────────
   Desktop (≥ 640px)
────────────────────────────────────────────── */
@media (min-width: 640px) {
    .abbos-cat-titel {
        font-size: 2rem;
    }
    .abbos-cat-stats {
        flex-direction: row;
        gap: 2rem;
    }
    .abbos-newsletter-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .abbos-newsletter-text {
        flex: 1;
    }
    .abbos-newsletter-form {
        flex-wrap: nowrap;
    }
    .abbos-provider-beschrijving {
        white-space: normal;
    }
}
