.socials-hero {
    background: linear-gradient(135deg, var(--primair-rood), var(--secundair-blauw));
    color: var(--primair-wit);
    text-align: center;
    padding: 60px 0;
}

.socials-hero h1 {
    font-family: var(--lettertype-speciaal);
    font-size: 48px;
    margin-bottom: 16px;
}

.socials-hero p {
    font-size: 19px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.socials-intro {
    padding: 40px 0 10px;
    text-align: center;
}

.socials-intro p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--donker-grijs);
}

.socials-overzicht {
    padding: 30px 0 50px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.social-card {
    background: var(--primair-wit);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 200ms ease, box-shadow 200ms ease;
    height: 100%;
    min-height: 600px;
    max-width: 100%;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.social-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primair-wit);
    flex-shrink: 0;
}

.social-card--youtube .social-card__icon {
    background: #ff0000;
}

.social-card--instagram .social-card__icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-card--facebook .social-card__icon {
    background: #1877f2;
}

.social-card--spotify .social-card__icon {
    background: #1db954;
}

.social-card h2 {
    font-size: 22px;
    margin: 0;
}

.social-card__handle {
    margin: 4px 0 0;
    font-size: 15px;
    color: var(--donker-grijs);
    opacity: 0.8;
}

.social-card__beschrijving {
    font-size: 16px;
    color: var(--donker-grijs);
    margin: 0;
}

.social-card__embed {
    border-radius: 14px;
    overflow: hidden;
    background: var(--licht-grijs);
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.social-card__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    max-width: 100%;
}

.social-card__embed--ratio-16x9 {
    aspect-ratio: 16 / 9;
    min-height: 300px;
    max-height: 350px;
}

.social-card__embed--instagram {
    overflow-y: auto;
    max-height: 350px;
    min-height: 350px;
}

.social-card__embed--instagram iframe {
    min-height: 500px;
}

.facebook-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.facebook-preview a {
    text-decoration: none;
    color: var(--primair-wit);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.facebook-preview img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.facebook-preview__content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--primair-wit);
}

.facebook-preview__content p {
    font-size: 16px;
    margin: 0 0 12px 0;
    opacity: 0.95;
    line-height: 1.5;
}

.facebook-preview__cta {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-weight: 600;
    transition: background 200ms ease;
    backdrop-filter: blur(10px);
}

.facebook-preview a:hover .facebook-preview__cta {
    background: rgba(255, 255, 255, 0.3);
}


.social-card__embed--spotify {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    overflow-y: auto;
    max-height: 350px;
}

.social-card__embed--spotify iframe {
    height: 152px;
    border-radius: 14px;
    flex-shrink: 0;
}

.spotify-fallback {
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    text-align: center;
    color: var(--donker-grijs);
    font-size: 0.95rem;
}

.social-card__cta {
    margin-top: auto;
    padding-top: 8px;
}

.social-card__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--secundair-blauw);
    border-radius: 999px;
    color: var(--primair-wit);
    font-weight: 600;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.social-card__button:hover {
    background: var(--primair-rood);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.socials-cta {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(120deg, rgba(247, 86, 109, 0.12), rgba(65, 105, 225, 0.12));
    margin-bottom: -20px;
}

.socials-cta h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.socials-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--donker-grijs);
}

@media (max-width: 768px) {
    .socials-hero {
        padding: 50px 0;
    }

    .socials-hero h1 {
        font-size: 40px;
    }

    .social-card {
        padding: 24px 20px;
        min-height: auto;
    }

    .social-card__embed--ratio-16x9 {
        min-height: 250px;
        max-height: 280px;
    }

    .social-card__embed--instagram {
        max-height: 280px;
        min-height: 280px;
    }

    .social-card__embed--instagram iframe {
        min-height: 400px;
    }

    .social-card__embed--spotify {
        max-height: 280px;
    }

    .facebook-preview img {
        width: 80px;
        height: 80px;
    }

    .facebook-preview__content h3 {
        font-size: 20px;
    }

    .facebook-preview__content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .socials-hero h1 {
        font-size: 32px;
    }

    .socials-hero p {
        font-size: 17px;
    }

    .social-card {
        padding: 20px 16px;
    }

    .social-card__icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .social-card h2 {
        font-size: 20px;
    }

    .social-card__handle {
        font-size: 13px;
    }

    .social-card__beschrijving {
        font-size: 15px;
    }

    .social-card__embed--ratio-16x9 {
        min-height: 220px;
        max-height: 250px;
    }

    .social-card__embed--instagram {
        max-height: 250px;
        min-height: 250px;
    }

    .social-card__embed--instagram iframe {
        min-height: 350px;
    }

    .social-card__embed--spotify {
        max-height: 250px;
        gap: 10px;
    }

    .facebook-preview {
        padding: 16px;
    }

    .facebook-preview img {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .facebook-preview__content h3 {
        font-size: 18px;
    }

    .facebook-preview__content p {
        font-size: 13px;
    }

    .facebook-preview__cta {
        padding: 8px 20px;
        font-size: 14px;
    }

    .social-card__button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .socials-cta h2 {
        font-size: 28px;
    }

    .socials-cta p {
        font-size: 16px;
    }
}

@media (min-width: 900px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }
}