.ragunda-blog-template {
    width: 100%;
    background: #f5f5dc; /* Beige achtergrond */
    position: relative;
}

.ragunda-blog-template__hero {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    margin-top: -120px; /* Verhoog negatieve margin om gap te elimineren */
    z-index: 1; /* Zet achter het menu */
}

.ragunda-blog-template__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Breadcrumbs styling - exact zoals hero sectie */
.ragunda-blog-template__breadcrumb-wrap {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100vw;
    display: flex;
    justify-content: flex-start;
    pointer-events: none;
    z-index: 30;
}

.ragunda-blog-template__breadcrumb {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    font-size: 12px;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.ragunda-blog-template__breadcrumb-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s, transform 0.2s;
}

.ragunda-blog-template__breadcrumb-link:hover {
    color: #ffbd00;
    transform: translateX(2px);
}

.ragunda-blog-template__breadcrumb-sep {
    margin: 0 1.2rem;
    color: #ffbd00;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.ragunda-blog-template__breadcrumb-sep svg {
    color: #ffbd00;
    font-size: 1em;
    vertical-align: middle;
}

.ragunda-blog-template__breadcrumb-current {
    color: #ffbd00;
    font-weight: 600;
}

.ragunda-blog-template {
    width: 100%;
    background: #f5f5dc; /* Beige achtergrond */
    position: relative;
    padding: 80px 0; /* Voeg standaard module padding toe */
}

.ragunda-blog-template__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3.5rem;
    width: 100%;
}

.ragunda-blog-template__content {
    padding: 4rem 0 2rem 0; /* Verhoog top padding voor meer ruimte */
    position: relative;
    z-index: 2; /* Zet boven de hero image */
}

.ragunda-blog-template__main-content {
    margin: 0 auto;
    max-width: 100%;
}

.ragunda-blog-template__title {
    font-family: 'Gotkin', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.ragunda-blog-template__meta {
    margin-bottom: 2rem;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    color: #666;
}

.ragunda-blog-template__date,
.ragunda-blog-template__author {
    color: #1d1d1d;
    font-weight: 500;
}

.ragunda-blog-template__meta-separator {
    margin: 0 0.5rem;
    color: #999;
}

.ragunda-blog-template__content-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1d1d1d;
}

.ragunda-blog-template__content-text h1,
.ragunda-blog-template__content-text h2,
.ragunda-blog-template__content-text h3,
.ragunda-blog-template__content-text h4,
.ragunda-blog-template__content-text h5,
.ragunda-blog-template__content-text h6 {
    font-family: 'Gotkin', Arial, sans-serif;
    font-weight: 700;
    color: #1d1d1d;
    margin: 2rem 0 1rem 0;
}

.ragunda-blog-template__content-text h1 {
    font-size: 2rem;
}

.ragunda-blog-template__content-text h2 {
    font-size: 1.75rem;
}

.ragunda-blog-template__content-text h3 {
    font-size: 1.5rem;
}

.ragunda-blog-template__content-text h4 {
    font-size: 1.25rem;
}

.ragunda-blog-template__content-text h5 {
    font-size: 1.1rem;
}

.ragunda-blog-template__content-text h6 {
    font-size: 1rem;
}

.ragunda-blog-template__content-text p {
    margin: 0 0 1.5rem 0;
}

.ragunda-blog-template__content-text ul,
.ragunda-blog-template__content-text ol {
    margin: 0 0 1.5rem 0;
    padding-left: 2rem;
}

.ragunda-blog-template__content-text li {
    margin-bottom: 0.5rem;
}

.ragunda-blog-template__content-text blockquote {
    margin: 2rem 0;
    padding: 1rem 2rem;
    border-left: 4px solid #1d1d1d;
    background: rgba(29, 29, 29, 0.05);
    font-style: italic;
}

.ragunda-blog-template__content-text img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ragunda-blog-template__content-text a {
    color: #1d1d1d;
    text-decoration: underline;
    transition: color 0.2s;
}

.ragunda-blog-template__content-text a:hover {
    color: #666;
}

.ragunda-blog-template__error {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-family: 'Inter', Arial, sans-serif;
}

/* Responsive design */
@media (max-width: 768px) {
    .ragunda-blog-template {
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-blog-template__container {
        padding: 0 3.5rem;
    }

    .ragunda-blog-template__hero {
        height: 40vh;
        margin-top: -100px; /* Aangepaste negatieve margin voor tablet */
    }

    .ragunda-blog-template__content {
        padding: 3rem 0 1.5rem 0; /* Aangepaste padding voor tablet */
    }

    .ragunda-blog-template__main-content {
        width: 100% !important;
        padding: 0 3.5rem;
        max-width: none;
    }
    
    .ragunda-blog-template__title {
        font-size: 2rem;
    }
    
    .ragunda-blog-template__content-text {
        font-size: 15px;
    }
    
    .ragunda-blog-template__content-text h1 {
        font-size: 1.75rem;
    }
    
    .ragunda-blog-template__content-text h2 {
        font-size: 1.5rem;
    }
    
    .ragunda-blog-template__content-text h3 {
        font-size: 1.25rem;
    }
    
    .ragunda-blog-template__breadcrumb {
        left: 20px;
        bottom: 20px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ragunda-blog-template {
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-blog-template__container {
        padding: 0 3.5rem;
    }

    .ragunda-blog-template__hero {
        height: 30vh;
        margin-top: -80px; /* Aangepaste negatieve margin voor mobiel */
    }

    .ragunda-blog-template__content {
        padding: 2.5rem 0 1rem 0; /* Aangepaste padding voor mobiel */
    }

    .ragunda-blog-template__main-content {
        width: 100% !important;
        padding: 0 3.5rem;
        max-width: none;
    }
    
    .ragunda-blog-template__title {
        font-size: 1.75rem;
    }
    
    .ragunda-blog-template__content-text {
        font-size: 14px;
    }
    
    .ragunda-blog-template__meta {
        font-size: 12px;
    }
} 