/* ==========================================================
   Win met Casper - Blog Modern v2
   ========================================================== */


/* ==========================================================
   ROOT
========================================================== */

:root{

    --primary:#0d6efd;
    --primary-dark:#0b5ed7;

    --success:#198754;
    --danger:#dc3545;
    --warning:#ffc107;

    --text:#333;
    --text-light:#666;

    --white:#fff;

    --bg:#f5f7fb;

    --border:#e9ecef;

    --shadow-sm:0 2px 10px rgba(0,0,0,.05);
    --shadow:0 10px 35px rgba(0,0,0,.08);

    --radius:18px;

    --container:1320px;

}


/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img{
    max-width:100%;
    display:block;
}

body{

    background:var(--bg);

    color:var(--text);

    line-height:1.8;

}

a{

    color:var(--primary);

    text-decoration:none;

    transition:.25s;

}

a:hover{

    color:var(--primary-dark);

}

h1,h2,h3,h4{

    color:#222;

    line-height:1.3;

    margin-bottom:20px;

}

p{

    margin-bottom:22px;

}


/* ==========================================================
   PAGE
========================================================== */

.blog-page{

    max-width:var(--container);

    margin:50px auto;

    padding:0 20px;

}


/* ==========================================================
   GRID
========================================================== */

.blog-layout{

    display:grid;

    grid-template-columns:minmax(0,1fr) 340px;

    gap:45px;

    align-items:start;

}


/* ==========================================================
   MAIN
========================================================== */

.blog-main{

    min-width:0;

}


/* ==========================================================
   SIDEBAR
========================================================== */

.blog-sidebar{

    position:relative;

}

.blog-sidebar-inner{

    position:sticky;

    top:25px;

}


/* ==========================================================
   CARD
========================================================== */

.blog-card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    padding:28px;

    margin-bottom:30px;

}


/* ==========================================================
   HERO
========================================================== */

.blog-hero{

    background:#fff;

    border-radius:24px;

        padding:30px 35px;

    margin-bottom:30px;


    box-shadow:var(--shadow-sm);

}

.blog-badge{

    display:inline-block;

    padding:7px 14px;

    background:#0d6efd;

    color:#fff;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:20px;

}

.blog-hero h1{

    font-size:36px;

    line-height:1.25;

    margin-bottom:20px;

    color:#222;

}

.blog-intro{

    font-size:18px;

    line-height:1.8;

    color:#666;

    margin-bottom:20px;

}

.blog-meta{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:35px;

}

.blog-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    background:#f5f7fb;

    border-radius:30px;

    color:#555;

    font-size:14px;

}

.blog-meta i{

    color:var(--primary);

}

.blog-hero-image{

    overflow:hidden;

    border-radius:20px;

}

.blog-hero-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.4s;

}

.blog-hero-image:hover img{

    transform:scale(1.03);

}
/* ==========================================================
   ARTIKEL
========================================================== */

.blog-article{

    background:#fff;

    border-radius:20px;

    padding:50px;

    box-shadow:var(--shadow-sm);

    margin-bottom:40px;

}

.blog-article>*:last-child{

    margin-bottom:0;

}

.blog-article h2{

    font-size:36px;

    margin-top:55px;

}

.blog-article h3{

    font-size:30px;

    margin-top:45px;

}

.blog-article h4{

    font-size:24px;

    margin-top:35px;

}

.blog-article p{

    font-size:18px;

    color:#444;

    line-height:1.9;

}

.blog-article strong{

    color:#222;

}

.blog-article img{

    border-radius:18px;

    margin:40px 0;

}

.blog-article ul,
.blog-article ol{

    margin:30px 0 30px 25px;

}

.blog-article li{

    margin-bottom:12px;

    font-size:18px;

}

.blog-article blockquote{

    border-left:5px solid var(--primary);

    background:#f8fbff;

    padding:25px 30px;

    margin:40px 0;

    border-radius:12px;

    font-style:italic;

}


/* ==========================================================
   TABLE OF CONTENTS
========================================================== */

.blog-toc{

    background:#fff;

    border-radius:20px;

    padding:25px 30px;

    margin-bottom:35px;

    box-shadow:var(--shadow-sm);

    border:1px solid var(--border);

}

.blog-toc h3{

    font-size:24px;

    margin-bottom:20px;

    color:#222;

    position:relative;

}

.blog-toc h3::after{

    content:"";

    display:block;

    width:60px;

    height:3px;

    background:var(--primary);

    border-radius:5px;

    margin-top:10px;

}

.blog-toc ul{

    list-style:none;

    margin:0;

    padding:0;

}

.blog-toc li{

    margin:0;

}

.blog-toc a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 0;

    color:#444;

    border-bottom:1px solid #f0f0f0;

    transition:.25s;

}

.blog-toc li:last-child a{

    border-bottom:none;

}

.blog-toc a:hover{

    color:var(--primary);

    padding-left:8px;

}

.toc-icon{

    color:var(--primary);

    font-size:18px;

    font-weight:bold;

    width:18px;

    text-align:center;

}
/* ==========================================================
   SHARE
========================================================== */

.blog-share{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:15px;

}

.share-intro{

    color:#666;

    margin:10px 0 18px;

    line-height:1.6;

}

.share-button{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    border:none;

    border-radius:50px;

    background:#f5f7fb;

    color:#333;

    font-weight:600;

    text-decoration:none;

    cursor:pointer;

    transition:.25s;

}

.share-button{

    font-family:inherit;

}

.share-button:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

.share-button i{

    font-size:18px;

}


/* ==========================================================
   NAVIGATIE
========================================================== */

.blog-navigation{

    display:flex;

    justify-content:space-between;

    gap:25px;

    margin:50px 0;

}

.blog-navigation a{

    flex:1;

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:var(--shadow-sm);

    color:#333;

    font-weight:600;

}

.blog-navigation a:hover{

    background:var(--primary);

    color:#fff;

}

.blog-next{

    text-align:right;

}


/* ==========================================================
   CTA BLOK
========================================================== */

.blog-cta{

    background:linear-gradient(135deg,#0d6efd,#4f9cff);

    color:#fff;

    border-radius:20px;

    padding:45px;

    text-align:center;

    margin:60px 0;

}

.blog-cta h2{

    color:#fff;

    margin-bottom:15px;

}

.blog-cta p{

    color:rgba(255,255,255,.92);

    margin-bottom:25px;

}

.blog-cta .btn-blog{

    background:#fff;

    color:var(--primary);

    font-weight:700;

}

.blog-cta .btn-blog:hover{

    background:#f4f4f4;

}
/* ==========================================================
   SIDEBAR
========================================================== */

.blog-sidebar{
    position:relative;
}

.blog-sidebar-inner{
    position:sticky;
    top:30px;
}


/* ==========================================================
   WIDGET
========================================================== */

.sidebar-widget{

    background:#fff;

    border-radius:20px;

    padding:28px;

    margin-bottom:30px;

    box-shadow:var(--shadow-sm);

    border:1px solid var(--border);

}

.sidebar-widget:last-child{

    margin-bottom:0;

}

.sidebar-widget h3{

    font-size:22px;

    margin-bottom:22px;

    color:#222;

    position:relative;

    padding-bottom:12px;

}

.sidebar-widget h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:55px;

    height:3px;

    background:var(--primary);

    border-radius:10px;

}


/* ==========================================================
   TAGS
   ========================================================== */

.blog-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:5px;
}

.blog-tag{
    display:inline-flex;
    align-items:center;
    padding:7px 13px;
    background:#eef4ff;
    color:var(--primary) !important;
    border:1px solid #d9e6ff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    line-height:1.2;
    text-decoration:none !important;
    transition:.25s ease;
}

.blog-tag:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff !important;
    transform:translateY(-2px);
    box-shadow:0 4px 10px rgba(13,110,253,.18);
}


.blog-tags-section{
    background:#fff;
    border-radius:20px;
    padding:28px;
    margin:40px 0;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border);
}

.blog-tags-section .section-title{
    font-size:28px;
    margin-bottom:25px;
    padding-bottom:12px;
}

.blog-tags-section .blog-tags{
    margin-top:0;
}


.blog-section{
    background:#fff;
    border-radius:20px;
    padding:28px;
    margin:40px 0;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border);
}

.blog-section-title{
    font-size:28px;
    margin-bottom:30px;
    padding-bottom:12px;
    position:relative;
    color:#222;
}

.blog-section-title::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    margin-top:12px;
    border-radius:10px;
    background:var(--primary);
}
/* ==========================================================
   SEARCH
========================================================== */

.blog-search{

    position:relative;

}

.blog-search input{

    width:100%;

    border:1px solid #ddd;

    border-radius:50px;

    padding:16px 55px 16px 22px;

    font-size:15px;

    transition:.25s;

}

.blog-search input:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(13,110,253,.12);

}

.blog-search button{

    position:absolute;

    right:6px;

    top:6px;

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    transition:.25s;

}

.blog-search button:hover{

    background:var(--primary-dark);

}


/* ==========================================================
   BLOG LIJST
========================================================== */

.sidebar-post{

    display:flex;

    gap:15px;

    margin-bottom:18px;

    align-items:flex-start;

}

.sidebar-post:last-child{

    margin-bottom:0;

}

.sidebar-post img{

    width:95px;

    height:75px;

    object-fit:cover;

    border-radius:12px;

    flex-shrink:0;

}

.sidebar-post-content{

    flex:1;

}

.sidebar-post-title{

    display:block;

    font-size:15px;

    font-weight:700;

    line-height:1.45;

    color:#222;

    margin-bottom:6px;

}

.sidebar-post-title:hover{

    color:var(--primary);

}

.sidebar-post-date{

    font-size:13px;

    color:#888;

}

.sidebar-thumb-placeholder{

    width:90px;

    height:70px;

    border-radius:12px;

    background:#eef4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

/* ==========================================================
   POPULAIRE BLOGS
========================================================== */

.sidebar-ranking{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

}

.sidebar-ranking:last-child{

    margin-bottom:0;

}

.sidebar-ranking-number{

    width:34px;

    height:34px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    flex-shrink:0;

}

.sidebar-ranking-content{

    flex:1;

}


/* ==========================================================
   WINACTIES
========================================================== */

.sidebar-campaign{

    padding:18px 0;

    border-bottom:1px solid #ececec;

}

.sidebar-campaign:last-child{

    border-bottom:none;

}

.sidebar-campaign-title{

    display:block;

    font-size:16px;

    font-weight:700;

    line-height:1.5;

    color:#222;

    margin-bottom:10px;

}

.sidebar-campaign-title:hover{

    color:var(--primary);

}

.sidebar-campaign-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:13px;

    color:#777;

    margin-bottom:15px;

}

.sidebar-campaign-button{

    display:inline-block;

    padding:9px 18px;

    background:var(--primary);

    color:#fff !important;

    border-radius:30px;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    transition:.25s;

}

.sidebar-campaign-button:hover{

    background:var(--primary-hover);

    color:#fff !important;

    text-decoration:none;

}
/* ==========================================================
   GOOGLE AD
========================================================== */

.blog-ad{

    min-height:320px;

    border:2px dashed #ddd;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fafafa;

    color:#999;

    text-align:center;

    padding:25px;

}


/* ==========================================================
   NEWSLETTER (voor later)
========================================================== */

.newsletter-box{

    background:linear-gradient(135deg,#0d6efd,#4b9dff);

    color:#fff;

    border-radius:20px;

    padding:30px;

    text-align:center;

}

.newsletter-box h3{

    color:#fff;

}

.newsletter-box p{

    color:rgba(255,255,255,.92);

}
/* ==========================================================
   GERELATEERDE BLOGS
========================================================== */

.related-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.related-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.25s;

}

.related-card:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.related-card-image{

    height:200px;

    overflow:hidden;

}

.related-card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.related-card:hover img{

    transform:scale(1.05);

}

.related-thumb-placeholder{

    width:100%;

    height:200px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef4ff;

    font-size:60px;

}

.related-card-body{

    padding:22px;

}

.related-card-body h3{

    font-size:20px;

    margin-bottom:15px;

    line-height:1.4;

}

.related-card-body h3 a{

    color:#222;

}

.related-card-body h3 a:hover{

    color:var(--primary);

}

.related-card-body p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}

.related-card-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.related-card-footer small{

    color:#888;

}
/* ==========================================================
   WINACTIES
========================================================== */

.campaign-section{

    margin:80px 0;

}

.campaign-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.campaign-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:.3s;

}

.campaign-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.campaign-image{

    height:220px;

    overflow:hidden;

}

.campaign-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.campaign-card:hover img{

    transform:scale(1.05);

}

.campaign-content{

    padding:28px;

}

.campaign-content h3{

    font-size:24px;

    margin-bottom:15px;

}

.campaign-content p{

    color:#666;

    margin-bottom:25px;

}

.campaign-content .btn-blog{

    width:100%;

}


/* ==========================================================
   SECTION TITELS
========================================================== */

.section-title{

    font-size:34px;

    margin-bottom:35px;

    position:relative;

    padding-bottom:15px;

}

.section-title::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    border-radius:10px;

    background:var(--primary);

}


/* ==========================================================
   DIVIDER
========================================================== */

.blog-divider{

    height:1px;

    background:#ececec;

    margin:70px 0;

}


/* ==========================================================
   BUTTONS
========================================================== */

.btn-blog{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 30px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    transition:.3s;

}

.btn-blog:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-2px);

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1200px){

    .blog-layout{

        grid-template-columns:1fr 320px;

    }

}

@media (max-width:992px){

    .blog-layout{

        grid-template-columns:1fr;

    }

    .blog-sidebar{

        margin-top:40px;

    }

    .blog-sidebar-inner{

        position:relative;

        top:auto;

    }

    .related-grid,
    .campaign-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media (max-width:768px){

    .blog-page{

        padding:0 15px;

    }

    .blog-hero{

        min-height:360px;

    }

    .blog-hero-content{

        padding:35px;

    }

.blog-hero h1{

    font-size:34px;
    max-width:900px;

}
.blog-intro{

    font-size:18px;
    max-width:850px;

}

    .blog-article{

        padding:30px;

    }

    .related-grid,
    .campaign-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:576px){

    .blog-meta{

        flex-direction:column;

        align-items:flex-start;

    }

    .blog-navigation{

        flex-direction:column;

    }

    .blog-hero{

        min-height:300px;

    }

    .blog-hero h1{

        font-size:28px;

    }

    .section-title{

        font-size:28px;

    }

}

/* ==========================================================
   BLOG OVERZICHT - HEADER
   ========================================================== */

.blog-overview-header {
    background:#fff;
    border-radius:24px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:var(--shadow-sm);
    text-align:center;
}

.blog-overview-header h1 {
    font-size:42px;
    line-height:1.25;
    margin-bottom:15px;
    color:#222;
}

.blog-overview-header p {
    font-size:18px;
    color:#666;
    margin:0;
}

.blog-search-wrapper {
    max-width:650px;
    margin:0 auto 35px;}

}

/* ==========================================================
   BLOG OVERZICHT - BLOGKAARTEN
   ========================================================== */

.blog-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:25px;
}

.blog-overview-card {
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
    display:flex;
    flex-direction:column;
    transition:.25s ease;
}

.blog-overview-card:hover {
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.blog-overview-image {
    height:220px;
    overflow:hidden;
}

.blog-overview-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.blog-overview-card:hover .blog-overview-image img {
    transform:scale(1.05);
}

.blog-overview-placeholder {
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef4ff;
    font-size:55px;
}

.blog-overview-body {
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-overview-body h2 {
    font-size:22px;
    line-height:1.4;
    margin-bottom:12px;
    color:#222;
}

.blog-overview-meta {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:15px;
    font-size:13px;
    color:#888;
}

.blog-overview-body p {
    color:#666;
    line-height:1.7;
    margin-bottom:22px;
    flex:1;
}

.blog-overview-body .btn-blog {
    align-self:flex-start;
}

.blog-empty {
    grid-column:1 / -1;
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
}

.blog-empty h2 {
    margin-bottom:10px;
}

.blog-empty p {
    margin:0;
    color:#666;
}

@media (max-width:992px) {

    .blog-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

@media (max-width:768px) {

    .blog-grid {
        grid-template-columns:1fr;
    }

}
/* ==========================================================
   BLOG OVERZICHT - UITGELICHT
   ========================================================== */

.blog-featured-card{
    padding:0;
    overflow:hidden;
}

.blog-featured-layout{
    display:grid;
    grid-template-columns:1fr;
    align-items:stretch;
}

.blog-featured-layout .blog-hero-image{
    height:320px;
    min-height:0;
    border-radius:0;
    overflow:hidden;
}

.blog-featured-layout .blog-hero-image img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.blog-featured-content{
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.blog-featured-content h2{
    font-size:32px;
    line-height:1.3;
    margin-bottom:20px;
}

.blog-featured-content .blog-meta{
    margin-bottom:20px;
}

.blog-featured-content .blog-intro{
    margin-bottom:25px;
}

@media (max-width:768px){

    .blog-featured-layout{
        grid-template-columns:1fr;
    }

    .blog-featured-layout .blog-hero-image,
    .blog-featured-layout .blog-hero-image img{
        min-height:280px;
    }

    .blog-featured-content{
        padding:30px;
    }

    .blog-featured-content h2{
        font-size:28px;
    }

}
/* ==========================================================
   BLOG PAGINERING
   ========================================================== */

.blog-main .blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 35px 0 10px;
    padding: 0;
}

.blog-main .blog-pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-main .blog-pagination a,
.blog-main .blog-pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 40px;

    padding: 0 12px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;
    line-height: 1;

    box-sizing: border-box;
}

.blog-main .blog-pagination-pages a {
    color: #333;
    background: #fff;
    border: 1px solid var(--border);
}

.blog-main .blog-pagination-pages a:hover {
    color: #fff;
    background: #0d6efd;
    border-color: #0d6efd;
}

.blog-main .blog-pagination-current {
    color: #fff;
    background: #0d6efd;
    border: 1px solid #0d6efd;
}

.blog-main .blog-pagination-prev,
.blog-main .blog-pagination-next {
    min-width: auto;
    height: 40px;

    color: #333 !important;
    background: transparent !important;

    border: 0 !important;

    padding: 0 6px !important;
}

.blog-main .blog-pagination-prev:hover,
.blog-main .blog-pagination-next:hover {
    color: #0d6efd !important;
    background: transparent !important;
    }

}