/* ========================================
   ARTICLE HERO (image-bg + dark overlay)
   ======================================== */
#article-hero {
    position: relative;
    min-height: 480px;
    height: 55vh;
    background-color: #161616;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .45) 50%, rgba(0, 0, 0, .85) 100%);
    pointer-events: none;
    z-index: 1;
}
.article-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cb1517 0%, #f00 60%, #cb1517 100%);
    z-index: 2;
}
.article-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 3;
    color: #fff;
}
.article-hero-content .container {
    max-width: 900px;
}
.article-hero-eyebrow {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #f00;
    padding-left: 38px;
    position: relative;
    margin-bottom: 14px;
}
.article-hero-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 2px;
    background-color: #f00;
    transform: translateY(-50%);
}
#article-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.15;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
    max-width: 820px;
}
.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 18px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #d8d8d8;
}
.article-hero-meta .meta-item {
    display: inline-flex;
    align-items: center;
}
.article-hero-meta svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    color: #cb1517;
}

@media only screen and (max-width: 991.98px) {
    #article-hero h1 {
        font-size: 2rem;
    }
    #article-hero {
        min-height: 380px;
        height: 45vh;
    }
}
@media only screen and (max-width: 767.88px) {
    #article-hero h1 {
        font-size: 1.6rem;
    }
    .article-hero-content {
        bottom: 30px;
    }
    .article-hero-eyebrow {
        font-size: 0.75rem;
    }
}

/* ========================================
   ARTICLE BODY (card met leestypografie)
   ======================================== */
#article-wrap,
#job-wrap {
    background-color: #f5f5f5;
    padding: 50px 0 60px 0;
}
.article-body-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 40px 50px;
    margin: 0 auto;
    max-width: 760px;
}
.article-intro-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0 0 24px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}
.article-body-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}
.article-body-content h2,
.article-body-content h3,
.article-body-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #111;
    margin: 28px 0 12px 0;
}
.article-body-content h2 { font-size: 1.6rem; }
.article-body-content h3 { font-size: 1.3rem; }
.article-body-content h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .03em; }
.article-body-content p {
    margin: 0 0 16px 0;
}
.article-body-content ul,
.article-body-content ol {
    margin: 0 0 18px 0;
    padding-left: 22px;
}
.article-body-content li {
    margin-bottom: 6px;
}
.article-body-content a {
    color: #cb1517;
    text-decoration: underline;
}
.article-body-content a:hover {
    color: #f00;
}
.article-body-content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: 3px;
}
.article-body-content strong {
    color: #111;
}

/* "Terug naar overzicht" knop */
.article-back-wrap {
    max-width: 760px;
    margin: 30px auto 0 auto;
    text-align: center;
}
.article-back-btn {
    display: inline-flex;
    align-items: center;
    background-color: #cb1517;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 12px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color ease-in-out .15s, transform ease-in-out .15s;
}
.article-back-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.article-back-btn:hover,
.article-back-btn:focus {
    background-color: #f00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ========================================
   GALERIJ (article)
   ======================================== */
#article-gallery {
    background-color: #eaeaea;
    padding: 40px 0 50px 0;
}
#article-gallery h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 8px 0;
    color: #111;
}
.article-gallery-divider {
    height: 3px;
    width: 60px;
    background-color: #f00;
    margin: 12px auto 28px auto;
}
.article-thumb {
    margin-bottom: 16px;
}
.article-thumb a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    transition: transform ease-in-out .15s;
}
.article-thumb a:hover {
    transform: translateY(-2px);
}
.article-thumb img {
    width: 100%;
    height: auto;
    transition: transform ease-in-out .25s;
}
.article-thumb a:hover img {
    transform: scale(1.03);
}

/* ========================================
   JOB DETAIL (2-koloms layout)
   ======================================== */
#job-wrap .container {
    max-width: 1080px;
}
.job-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}
.job-body-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 35px 40px;
}
.job-body-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}
.job-body-content h2,
.job-body-content h3,
.job-body-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #111;
    margin: 28px 0 12px 0;
}
.job-body-content h2 { font-size: 1.5rem; }
.job-body-content h3 { font-size: 1.25rem; }
.job-body-content h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .03em; }
.job-body-content p {
    margin: 0 0 14px 0;
}
.job-body-content ul,
.job-body-content ol {
    margin: 0 0 16px 0;
    padding-left: 22px;
}
.job-body-content li {
    margin-bottom: 5px;
}
.job-body-content a {
    color: #cb1517;
    text-decoration: underline;
}
.job-body-content a:hover {
    color: #f00;
}
.job-body-content strong {
    color: #111;
}

/* Sticky apply-sidebar */
.job-sidebar {
    position: sticky;
    top: 110px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 26px 24px;
}
.job-sidebar-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.job-sidebar-divider {
    height: 2px;
    width: 36px;
    background-color: #cb1517;
    margin-bottom: 18px;
}
.job-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}
.job-meta-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: #444;
}
.job-meta-list li:last-child {
    margin-bottom: 0;
}
.job-meta-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    color: #cb1517;
    margin-top: 2px;
    margin-right: 10px;
}
.job-meta-list strong {
    color: #111;
}

.job-apply-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #cb1517;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 13px 18px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color ease-in-out .15s, transform ease-in-out .15s;
}
.job-apply-cta svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.job-apply-cta:hover,
.job-apply-cta:focus {
    background-color: #f00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.job-apply-secondary {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
}
.job-apply-secondary:hover {
    color: #cb1517;
    text-decoration: none;
}

/* Repeated apply-CTA aan einde van body */
.job-apply-footer {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    text-align: center;
}
.job-apply-footer .job-apply-cta {
    display: inline-flex;
    width: auto;
    padding: 13px 28px;
}

@media only screen and (max-width: 991.98px) {
    .job-grid {
        grid-template-columns: 1fr;
    }
    .job-sidebar {
        position: static;
        top: auto;
    }
    .job-body-card {
        padding: 28px 25px;
    }
}
@media only screen and (max-width: 767.88px) {
    .article-body-card {
        padding: 28px 25px;
    }
    #article-wrap,
    #job-wrap {
        padding: 30px 0 40px 0;
    }
}
