
/*
 * Optionele front-end styling voor de shortcode [nlb_related_act_card].
 * Pas paars eventueel aan op de definitieve NL Bookings huisstijlkleur.
 */
.nlb-related-act-card{
    display:grid;
    grid-template-columns:minmax(180px,32%) 1fr;
    gap:28px;
    align-items:stretch;
    padding:22px;
    border-radius:18px;
    background:#111;
    color:#fff;
    overflow:hidden;
}
.nlb-related-act-image{
    min-height:210px;
    border-radius:12px;
    overflow:hidden;
}
.nlb-related-act-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.nlb-related-act-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
}
.nlb-related-act-kicker{
    margin-bottom:8px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
    opacity:.7;
}
.nlb-related-act-content h3{
    margin:0 0 18px;
    color:#fff;
}
.nlb-related-act-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 18px;
    border-radius:999px;
    background:#7A1BFF;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:600;
}
.nlb-related-act-button:hover{
    transform:translateY(-1px);
}
@media(max-width:767px){
    .nlb-related-act-card{
        grid-template-columns:1fr;
        gap:18px;
        padding:16px;
    }
    .nlb-related-act-image{
        min-height:190px;
    }
}


/* Optionele nieuwsblokken: shortcode geeft niets terug als veld leeg is. */
.nlb-news-intro{
    font-size:1.2em;
    line-height:1.55;
    font-weight:500;
}
.nlb-extra-image{
    margin:0;
}
.nlb-extra-image img{
    display:block;
    width:100%;
    height:auto;
    border-radius:16px;
}
.nlb-video{
    width:100%;
}
.nlb-video iframe{
    display:block;
    width:100%;
    max-width:100%;
    aspect-ratio:16/9;
    height:auto;
    border:0;
    border-radius:16px;
}
.nlb-news-cta{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
}
.nlb-cta-heading{
    margin:0;
}
.nlb-news-cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 18px;
    border-radius:999px;
    background:#7A1BFF;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:600;
}


/* Single nieuwsbericht – meta */
.nlb-news-meta{
    font-family:Poppins,sans-serif;
    font-size:15px;
    line-height:1.5;
    font-weight:400;
    color:rgba(255,255,255,.82);
}

/* Intro */
.nlb-news-intro{
    font-family:Poppins,sans-serif;
    font-size:21px;
    line-height:1.6;
    font-weight:400;
    color:#171717;
}

/* CTA sluit aan op NL Bookings buttonstijl */
.nlb-news-cta-button,
.nlb-related-act-button{
    border-radius:10px;
    background:linear-gradient(135deg,#DD191C 0%,#5808FB 100%);
    padding:15px 22px;
    font-family:Poppins,sans-serif;
    font-size:16px;
    font-weight:600;
}

/* Gerelateerde act */
.nlb-related-act-card{
    background:#F6F6F7;
    color:#171717;
    border-radius:18px;
}
.nlb-related-act-kicker{
    color:#5808FB;
}
.nlb-related-act-content h3{
    color:#171717;
    font-family:Poppins,sans-serif;
    font-weight:700;
}

/* Meer nieuws */
.nlb-more-news-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    width:100%;
}
.nlb-news-card{
    overflow:hidden;
    background:#FFFFFF;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    min-width:0;
}
.nlb-news-card-image{
    display:block;
    aspect-ratio:16/9;
    overflow:hidden;
}
.nlb-news-card-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .25s ease;
}
.nlb-news-card:hover .nlb-news-card-image img{
    transform:scale(1.025);
}
.nlb-news-card-body{
    padding:26px 26px 28px;
}
.nlb-news-card-meta{
    margin-bottom:10px;
    font-family:Poppins,sans-serif;
    font-size:13px;
    line-height:1.5;
    font-weight:500;
    color:#737373;
}
.nlb-news-card-title{
    margin:0 0 12px;
    font-family:Poppins,sans-serif;
    font-size:22px;
    line-height:1.12;
    font-weight:700;
}
.nlb-news-card-title a{
    color:#171717;
    text-decoration:none;
}
.nlb-news-card-intro{
    margin:0 0 18px;
    font-family:Poppins,sans-serif;
    font-size:16px;
    line-height:1.6;
    font-weight:300;
    color:#555;
}
.nlb-news-card-link{
    font-family:Poppins,sans-serif;
    font-size:15px;
    font-weight:600;
    color:#5808FB;
    text-decoration:none;
}
@media(max-width:1024px){
    .nlb-more-news-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:767px){
    .nlb-news-intro{
        font-size:18px;
    }
    .nlb-more-news-grid{
        grid-template-columns:1fr;
    }
    .nlb-news-card-body{
        padding:22px 20px 24px;
    }
    .nlb-news-card-title{
        font-size:24px;
    }
}

/* v1.3 compact/redactioneel */
.nlb-news-meta{font-size:14px;color:rgba(255,255,255,.78)}
.nlb-news-intro{font-size:20px;line-height:1.55;font-weight:500;color:#171717}
.nlb-media-grid{display:grid;gap:18px;margin:8px 0 30px}
.nlb-media-grid.has-two{grid-template-columns:repeat(2,minmax(0,1fr))}
.nlb-media-grid.has-one{grid-template-columns:1fr}
.nlb-media-image,.nlb-media-video{margin:0;overflow:hidden;border-radius:14px;background:#F4F4F5}
.nlb-media-image img{display:block;width:100%;height:100%;max-height:420px;object-fit:cover}
.nlb-media-video iframe{display:block;width:100%;aspect-ratio:16/9;height:auto;border:0}
.nlb-related-act-compact{display:grid;grid-template-columns:72px 1fr auto;gap:16px;align-items:center;margin-top:10px;padding:12px;border:1px solid #E7E7EA;border-radius:14px;background:#fff;text-decoration:none!important;color:#171717!important}
.nlb-related-act-compact-image{width:72px;height:72px;border-radius:10px;overflow:hidden}
.nlb-related-act-compact-image img{width:100%;height:100%;object-fit:cover;display:block}
.nlb-related-act-compact-copy{display:flex;flex-direction:column;gap:2px;min-width:0}
.nlb-related-act-compact-kicker{font-family:Poppins,sans-serif;font-size:12px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:#6B6B72}
.nlb-related-act-compact-copy strong{font-family:Poppins,sans-serif;font-size:17px;line-height:1.25}
.nlb-related-act-compact-arrow{font-size:22px;padding:0 8px}
.nlb-more-news-grid{gap:16px}
.nlb-news-card{border-radius:14px}
.nlb-news-card-body{padding:20px 20px 22px}
.nlb-news-card-title{font-size:19px}
.nlb-news-card-intro{font-size:14px;line-height:1.55}
@media(max-width:767px){
.nlb-news-intro{font-size:18px}
.nlb-media-grid.has-two{grid-template-columns:1fr}
.nlb-related-act-compact{grid-template-columns:58px 1fr auto;gap:12px}
.nlb-related-act-compact-image{width:58px;height:58px}
}

/* v1.4 – video over volledige artikelbreedte, zonder extra kader */
.nlb-media-grid,.nlb-media-image{display:none!important}
.nlb-video-full{
    width:100%;
    margin:10px 0 32px;
    overflow:hidden;
    border-radius:14px;
    background:transparent;
    line-height:0;
}
.nlb-video-full iframe{
    display:block;
    width:100%!important;
    max-width:100%!important;
    height:auto!important;
    aspect-ratio:16/9;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:14px;
}
.nlb-video-full > *{
    max-width:100%!important;
    margin-top:0!important;
    margin-bottom:0!important;
}

/* v1.5 – dynamisch nieuws op homepage */
.nlb-home-news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;width:100%;margin-top:8px}
.nlb-home-news-card{background:#FBFAFD;border:1px solid #ECECF1;border-radius:18px;overflow:hidden;min-width:0}
.nlb-home-news-image{display:block;aspect-ratio:16/9;overflow:hidden}
.nlb-home-news-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .25s ease}
.nlb-home-news-card:hover .nlb-home-news-image img{transform:scale(1.025)}
.nlb-home-news-body{padding:24px 26px 26px}
.nlb-home-news-meta{font-family:Poppins,sans-serif;font-size:13px;font-weight:500;color:#777;margin-bottom:9px}
.nlb-home-news-body h3{font-family:Poppins,sans-serif;font-size:22px;line-height:1.12;font-weight:700;margin:0 0 10px}
.nlb-home-news-body h3 a{color:#171717;text-decoration:none}
.nlb-home-news-body p{font-family:Poppins,sans-serif;font-size:15px;line-height:1.6;font-weight:300;color:#555;margin:0 0 16px}
.nlb-home-news-link,.nlb-home-news-all a{font-family:Poppins,sans-serif;font-size:15px;font-weight:600;color:#5808FB;text-decoration:none}
.nlb-home-news-all{margin-top:22px;text-align:left}
@media(max-width:1024px){.nlb-home-news-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.nlb-home-news-card:nth-child(3){display:none}}
@media(max-width:767px){.nlb-home-news-grid{grid-template-columns:1fr}.nlb-home-news-card:nth-child(3){display:block}.nlb-home-news-body{padding:21px 20px 23px}.nlb-home-news-body h3{font-size:21px}}

/* v1.6 – homepage nieuwssectie verfijnd */
.nlb-home-news-grid{gap:22px;align-items:stretch}
.nlb-home-news-card{
display:flex;flex-direction:column;height:100%;
background:rgba(255,255,255,.88);
border:1px solid rgba(23,23,23,.06);
border-radius:18px;
box-shadow:0 12px 32px rgba(37,20,78,.06);
overflow:hidden}
.nlb-home-news-image{aspect-ratio:16/9;background:#EEEAF7}
.nlb-home-news-body{display:flex;flex-direction:column;flex:1;padding:24px 24px 26px}
.nlb-home-news-meta{margin-bottom:8px;color:#7A7483}
.nlb-home-news-body h3{margin:0 0 10px;font-size:21px;line-height:1.16}
.nlb-home-news-body p{margin:0 0 18px;color:#59545F}
.nlb-home-news-link{margin-top:auto}
.nlb-home-news-all{margin-top:26px;text-align:left}
.nlb-home-news-all a{
display:inline-flex;align-items:center;min-height:44px;padding:12px 18px;
border-radius:10px;background:#171717;color:#fff!important}
@media(max-width:1024px){
.nlb-home-news-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.nlb-home-news-card:nth-child(3){display:none}}
@media(max-width:767px){
.nlb-home-news-grid{grid-template-columns:1fr;gap:16px;margin-top:2px}
.nlb-home-news-card,.nlb-home-news-card:nth-child(3){display:flex;width:100%}
.nlb-home-news-image{aspect-ratio:1.6/1}
.nlb-home-news-body{padding:20px 18px 22px}
.nlb-home-news-meta{font-size:12px;line-height:1.45}
.nlb-home-news-body h3{font-size:20px;line-height:1.18;margin-bottom:8px}
.nlb-home-news-body p{font-size:14px;line-height:1.55;margin-bottom:15px}
.nlb-home-news-link{font-size:14px}
.nlb-home-news-all{margin-top:20px;text-align:left}
.nlb-home-news-all a{width:100%;justify-content:center;min-height:46px}}
