/*
Theme Name: Broadcast24
Theme URI: https://broadcast24.nl
Author: Jouw Naam
Description: Een modern, app-like, next-gen broadcast magazine thema.
Version: 1.0.0
Text Domain: broadcast24
*/

/* ==========================================================================
   1. ROOT VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-page: #F3F4F6;
    --card-bg: #FFFFFF;
    --primary-blue: #38BDF8; 
    --primary-blue-hover: #0EA5E9; 
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1EBE5C;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --border-radius: 24px; 
    --border-color: #E5E7EB;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   2. CORE LAYOUT (HET 'DASHBOARD' FRAME)
   ========================================================================== */
.app-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    column-gap: 24px; 
    row-gap: 0;       
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.app-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    background-color: var(--primary-blue);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 0.95;
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 24px; 
    box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.4);
    transition: var(--transition);
}

/* Standaard desktop marges */
.app-logo span:first-child {
    margin-left: -10px;
}

.app-logo span:last-child {
    margin-left: -5px;
}

.app-logo:hover { 
    transform: scale(0.98); 
}

.app-header {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-color: var(--card-bg);
    border-radius: var(--border-radius) var(--border-radius) 0 0; 
    padding: 1.5rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* De organische inverted curve */
.app-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -24px; 
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-bottom-right-radius: 24px; 
    box-shadow: 12px 12px 0 0 var(--card-bg); 
    pointer-events: none;
    z-index: 10;
    border-radius: 100px;
}

.app-main {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    background-color: var(--card-bg);
    border-radius: var(--border-radius) 0 var(--border-radius) var(--border-radius);
    padding: 4rem 2.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    min-height: 60vh;
}

/* ==========================================================================
   3. HEADER & NAVIGATIE
   ========================================================================== */
.nav-content-desktop { display: flex; flex-direction: column; width: 100%; }
.nav-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; }
.nav-primary { display: flex; gap: 1rem; align-items: center; }
.nav-primary a { text-decoration: none; color: #0F172A; font-weight: 800; font-size: 1.15rem; padding: 0.5rem 1rem; border-radius: 100px; text-transform: uppercase; letter-spacing: -0.5px; transition: var(--transition); }
.nav-primary a.active { background-color: #E0F2FE; color: var(--primary-blue); }
.nav-primary a:hover:not(.active) { color: var(--primary-blue); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }

/* Zoekbalk */
.search-box { display: flex; align-items: center; background-color: var(--bg-page); padding: 0.6rem 1rem; border-radius: 100px; width: 250px; transition: var(--transition); }
.search-box:focus-within { background-color: #fff; box-shadow: 0 0 0 2px var(--primary-blue); }
.search-box input { border: none; background: transparent; outline: none; width: 100%; color: var(--text-dark); font-family: inherit; font-size: 0.95rem; }
.search-icon { color: #9CA3AF; cursor: pointer; }

/* Submenu */
.nav-bottom { padding-top: 1rem; display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.nav-bottom a { text-decoration: none; color: #111827; font-weight: 700; font-size: 0.95rem; transition: var(--transition); }
.nav-bottom a:hover, .nav-bottom a.active { color: var(--primary-blue); }

/* Mobiele header balk (verborgen op desktop) */
.mobile-header-bar { display: none; }


/* --- RESET VOOR WORDPRESS MENU LIJSTEN --- */
.nav-primary ul, 
.nav-bottom ul, 
.mobile-menu-primary ul, 
.mobile-menu-bottom ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

/* --- DESKTOP HOOFDMENU (.nav-primary) --- */
.nav-primary ul { gap: 1rem; align-items: center; }
.nav-primary ul li a { 
    text-decoration: none; color: #0F172A; font-weight: 800; font-size: 1.15rem; 
    padding: 0.5rem 1rem; border-radius: 100px; text-transform: uppercase; 
    letter-spacing: -0.5px; transition: var(--transition); display: block;
}
/* De actieve pagina / hover state */
.nav-primary ul li.current-menu-item a,
.nav-primary ul li.current-category-ancestor a { background-color: #E0F2FE; color: var(--primary-blue); }
.nav-primary ul li a:hover { color: var(--primary-blue); }


/* --- DESKTOP CATEGORIE MENU (.nav-bottom) --- */
.nav-bottom ul { gap: 2rem; flex-wrap: wrap; align-items: center; padding-top: 1rem; }
.nav-bottom ul li a { 
    text-decoration: none; color: #111827; font-weight: 700; 
    font-size: 0.95rem; transition: var(--transition); display: block;
}
.nav-bottom ul li.current-menu-item a, 
.nav-bottom ul li.current-category-ancestor a,
.nav-bottom ul li a:hover { color: var(--primary-blue); }


/* --- MOBIEL HOOFDMENU (.mobile-menu-primary) --- */
.mobile-menu-primary ul { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.mobile-menu-primary ul li a { 
    text-decoration: none; color: var(--text-dark); font-size: 1.5rem; 
    font-weight: 700; letter-spacing: -0.5px; display: block; transition: var(--transition);
}
.mobile-menu-primary ul li.current-menu-item a { color: var(--primary-blue); }


/* --- MOBIEL CATEGORIE MENU (.mobile-menu-bottom) --- */
.mobile-menu-bottom ul { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.mobile-menu-bottom ul li a { 
    text-decoration: none; color: var(--text-dark); font-size: 1.1rem; 
    font-weight: 600; letter-spacing: -0.5px; display: block; transition: var(--transition);
}
.mobile-menu-bottom ul li.current-menu-item a { color: var(--primary-blue); }

/* ==========================================================================
   4. ALGEMENE COMPONENTEN
   ========================================================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    padding-top: 2.5rem;
    position: relative;
}

.bekijk-meer {
    color: var(--primary-blue); text-decoration: none; font-weight: 700; font-size: 0.95rem; position: absolute; left: 0; bottom: -20px;
}

.alle-vacatures {
    color: var(--primary-blue); text-decoration: none; font-weight: 700; font-size: 0.95rem; position: absolute; left: 0; bottom: -20px;
}

.section-title { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; }

.badge {
    display: inline-flex;
    width: fit-content;
    align-self: flex-start;
    background-color: rgba(56, 189, 248, 0.1); 
    color: var(--primary-blue); 
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.breadcrumbs { font-size: 0.85rem; font-weight: 600; color: var(--text-gray); margin-bottom: 2rem; }
.breadcrumbs a { color: var(--text-gray); text-decoration: none; transition: var(--transition); }
.breadcrumbs a:hover { color: var(--primary-blue); }
.breadcrumbs span { color: var(--text-dark); }

.pagination-area { margin-top: 4rem; text-align: center; }
.btn-load-more {
    display: inline-block;
    background-color: var(--bg-page);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}
.btn-load-more:hover { border-color: var(--primary-blue); color: var(--primary-blue); background-color: #F0F9FF; }

/* ==========================================================================
   5. GRIDS & POST CARDS (Gedeeld)
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.post-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.post-card:hover { border-color: var(--primary-blue); transform: translateY(-5px); box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05); }
.post-img { height: 220px; background-color: #E5E7EB; background-size: cover; background-position: center; }
.post-content-card { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-content-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; line-height: 1.4; color: var(--text-dark); }
.post-content-card p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.5; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.post-meta-small { font-size: 0.85rem; color: var(--text-gray); font-weight: 600; }

.horizontal-list { display: flex; flex-direction: column; gap: 1.5rem; }
.horizontal-card { display: flex; background-color: var(--card-bg); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); text-decoration: none; color: inherit; }
.horizontal-card:hover { border-color: var(--primary-blue); transform: translateX(5px); }
.horizontal-card .post-img { width: 300px; height: auto; }
.horizontal-card .post-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem; }

.asym-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.asym-large { grid-row: span 2; }
.asym-large .post-img { height: 350px; }

/* ==========================================================================
   6. HOMEPAGE SPECIFIEK
   ========================================================================== */
.top-overview { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-bottom: 4rem; }

.hero-main {
    background-image: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.05)); /* Pas inline style aan in PHP indien nodig */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    min-height: 450px;
    text-decoration: none;
}
.hero-main .badge { background-color: var(--primary-blue); color: white; }
.hero-main h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; }

.latest-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-list { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-item { background-color: var(--card-bg); border-radius: 16px; padding: 1.25rem; display: flex; gap: 1rem; align-items: center; border: 1px solid var(--border-color); transition: var(--transition); text-decoration: none; }
.sidebar-item:hover { border-color: var(--primary-blue); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.sidebar-img-container { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.sidebar-img { width: 100%; height: 100%; background-size: cover; background-position: center; }
.sidebar-content { flex: 1; }
.sidebar-content h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-dark); line-height: 1.4; }
.time-label { font-size: 0.75rem; color: var(--primary-blue); font-weight: 700; margin-bottom: 0.3rem; display: block; }

.highlight-section { background-color: #F0F9FF; padding: 3rem; border-radius: 16px; margin-bottom: 6rem; }
.highlight-section .section-header { border-color: rgba(0,0,0,0.1); }
.highlight-section .post-card { border: 1px solid rgba(0,0,0,0.05); }

/* ==========================================================================
   7. SINGLE POST
   ========================================================================== */
.single-post-container { max-width: 800px; margin: 0 auto; }
.post-header { margin-bottom: 2.5rem; }
.post-title { font-size: 3rem; font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin: 1rem 0 2rem 0; color: var(--text-dark); }
.post-meta { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background-color: var(--border-color); }
.meta-text { display: flex; flex-direction: column; }
.meta-text strong { font-size: 1rem; color: var(--text-dark); }
.meta-text span { font-size: 0.85rem; color: var(--text-gray); }

.post-featured-image { width: 100%; height: 450px; border-radius: var(--border-radius); background-size: cover; background-position: center; margin-bottom: 3rem; box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1); }

.post-content { font-size: 1.15rem; line-height: 1.8; color: #374151; }
.post-content p { margin-bottom: 1.5rem; }
.post-content .lead { font-size: 1.4rem; font-weight: 600; line-height: 1.6; color: var(--text-dark); margin-bottom: 2.5rem; }
.post-content h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text-dark); margin: 3rem 0 1rem 0; }
.post-content h3 { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin: 2rem 0 1rem 0; }
.post-content ul, .post-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }

.post-content blockquote {
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 4rem 0;
    padding: 0 2rem;
    letter-spacing: -0.5px;
    z-index: 1;
}
.post-content blockquote::before {
    content: '“';
    position: absolute;
    left: -0.5rem;
    top: -2.5rem;
    font-family: Georgia, serif; 
    font-size: 8rem;
    color: var(--primary-blue);
    opacity: 0.15;
    z-index: -1;
    line-height: 1;
}

.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.tag { background-color: var(--bg-page); color: var(--text-gray); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: var(--transition); }
.tag:hover { background-color: #E0F2FE; color: var(--primary-blue); }

.author-box { display: flex; gap: 1.5rem; background-color: #F8FAFC; border: 1px solid var(--border-color); padding: 2rem; border-radius: 16px; margin-top: 3rem; align-items: center; }
.author-box-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 4px solid var(--card-bg); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.author-box-info { flex: 1; }
.author-box-label { font-size: 0.75rem; text-transform: uppercase; font-weight: 800; color: var(--primary-blue); letter-spacing: 0.5px; margin-bottom: 0.25rem; display: block; }
.author-box-name { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.2;}
.author-box-bio { font-size: 0.95rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 1rem; }
.author-box-link { font-size: 0.9rem; font-weight: 700; color: var(--primary-blue); text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.3rem; }
.author-box-link:hover { color: var(--primary-blue-hover); transform: translateX(3px); }

.related-posts-section { margin-top: 5rem; padding-top: 4rem; border-top: 2px solid var(--border-color); }

/* ==========================================================================
   8. CATEGORIE & ARCHIEF
   ========================================================================== */
.category-header { margin-bottom: 3rem; }
.category-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; color: var(--text-dark); margin-bottom: 0.5rem; }
.category-description { font-size: 1.15rem; color: var(--text-gray); max-width: 600px; margin-bottom: 2rem; }

.featured-category-post {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.featured-category-post:hover { border-color: var(--primary-blue); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08); transform: translateY(-3px); }
.featured-img { background-size: cover; background-position: center; min-height: 350px; }
.featured-content { padding: 3rem 3rem 3rem 0; display: flex; flex-direction: column; justify-content: center; }
.featured-content h2 { font-size: 2rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 1rem; color: var(--text-dark); }
.featured-content p { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ==========================================================================
   9. VACATURES (JOB BOARD)
   ========================================================================== */

   /* --- JOB CARDS (Modern & Strak) --- */

.job-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 24px -8px rgba(56, 189, 248, 0.25); /* Zachte blauwe schaduw glow */
    border-color: var(--primary-blue); /* Rand licht op */
    background-color: #F8FAFC; /* Heel lichte tint verschil */
}

.job-card h4 { 
    font-size: 1.15rem; 
    margin-bottom: 1.2rem; 
    color: var(--text-dark);
    line-height: 1.3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* De geanimeerde externe-link pijl - Nu ZONDER emoji weergave */
.job-card h4::after {
    content: '\2197\FE0E'; /* Die \FE0E voorkomt de emoji-styling op telefoons */
    font-family: sans-serif; /* Forceert een strak webfont */
    font-size: 1.2rem;
    color: var(--primary-blue);
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: var(--transition);
}

.job-card:hover h4::after {
    opacity: 1;
    transform: translate(0, 0);
}

.job-details { 
    display: flex; 
    gap: 0.5rem; /* Ruimte tussen de pills */
    flex-wrap: wrap;
}

/* Details omtoveren tot moderne 'pills' */
.job-details span {
    background-color: var(--bg-page);
    color: var(--text-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.job-card:hover .job-details span {
    background-color: #E0F2FE; /* Pills kleuren zacht mee on hover */
    color: var(--primary-blue);
}

.jobs-section { margin-bottom: 4rem; background: linear-gradient(321deg, #e0f2fe, #eff9ff); padding: 3rem; border-radius: 16px; color: var(--text-dark); padding-top: 0rem; }
.jobs-section .section-header { border-color: rgba(0,0,0,0.1); }
.jobs-grid { 
    display: flex; 
    flex-wrap: nowrap; /* Voorkomt dat het een rommeltje wordt op mobiel */
    gap: 1.5rem; 
    overflow-x: auto; 
    
    /* De truc tegen het afsnijden van de laatste kaart en schaduwen: */
    padding: 1rem 1.5rem 2rem 1.5rem; 
    margin: -1rem -1.5rem; 
    
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
}

.jobs-grid::-webkit-scrollbar {
    display: none; 
}

.job-card { 
    /* Je bestaande styling blijft hier staan... */
    background-color: var(--card-bg); 
    padding: 1.5rem; 
    border-radius: 16px; 
    border: 1px solid var(--border-color);
    transition: var(--transition); 
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    /* DE NIEUWE RESPONSIVE SLIDER LOGICA: */
    width: 80vw; /* Neemt 80% van het scherm in, zodat je de volgende kaart ziet */
    max-width: 340px; /* Zorgt dat ze op desktop niet belachelijk breed worden */
    flex: 0 0 auto; 
    scroll-snap-align: center; /* Center voelt vaak soepeler aan dan start op mobiel */
}

.jobs-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari en Edge */
}

/* Verticaal overzicht voor page-vacatures.php */
.job-filters { display: flex; gap: 1rem; margin-bottom: 3rem; background-color: #F8FAFC; padding: 1.5rem; border-radius: 20px; border: 1px solid var(--border-color); }
.job-filter-input, .job-filter-select { padding: 0.8rem 1.2rem; border-radius: 12px; border: 1px solid var(--border-color); background-color: white; font-family: inherit; font-size: 0.95rem; color: var(--text-dark); font-weight: 600; outline: none; transition: var(--transition); }
.job-filter-input:focus, .job-filter-select:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2); }
.job-filter-input { flex: 2; }
.job-filter-select { flex: 1; cursor: pointer; }

.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job-list-item { display: flex; align-items: center; gap: 1.5rem; background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 1.5rem; border-radius: 16px; transition: var(--transition); text-decoration: none; color: inherit; }
.job-list-item:hover { border-color: var(--primary-blue); transform: translateX(5px); box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.job-logo { width: 70px; height: 70px; border-radius: 12px; background-color: var(--bg-page); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--text-gray); font-size: 1rem; flex-shrink: 0; border: 1px solid var(--border-color); overflow: hidden; }
.job-logo img { width: 100%; height: 100%; object-fit: cover; }
.job-info { flex: 1; }
.job-title { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.25rem; }
.job-company { font-size: 0.95rem; color: var(--text-gray); font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.job-tag { background-color: #F3F4F6; color: var(--text-gray); font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 100px; }
.job-action { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; }
.job-date { font-size: 0.8rem; color: var(--text-gray); font-weight: 600; }
.btn-apply { background-color: #F0F9FF; color: var(--primary-blue); padding: 0.6rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: 0.9rem; transition: var(--transition); }
.job-list-item:hover .btn-apply { background-color: var(--primary-blue); color: white; }

/* ==========================================================================
   10. CONTACT PAGINA
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }
.contact-intro { display: flex; flex-direction: column; justify-content: center; }
.contact-intro p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 2.5rem; line-height: 1.7; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.8rem; background-color: var(--whatsapp-green); color: white; font-weight: 800; font-size: 1.1rem; padding: 1rem 2rem; border-radius: 100px; text-decoration: none; width: fit-content; box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4); transition: var(--transition); }
.btn-whatsapp:hover { background-color: var(--whatsapp-green-hover); transform: translateY(-3px); box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.5); }
.btn-whatsapp svg { width: 24px; height: 24px; fill: currentColor; }
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1.5rem; background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 2rem; border-radius: 16px; transition: var(--transition); }
.contact-card:hover { border-color: var(--primary-blue); box-shadow: 0 4px 15px rgba(0,0,0,0.03); transform: translateX(5px); }
.contact-icon-wrapper { background-color: #E0F2FE; color: var(--primary-blue); width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-details h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.25rem; }
.contact-details p { color: var(--text-gray); font-size: 1rem; margin-bottom: 0.5rem; }
.contact-link { color: var(--primary-blue); font-weight: 700; text-decoration: none; transition: var(--transition); }
.contact-link:hover { color: var(--primary-blue-hover); text-decoration: underline; }

/* ==========================================================================
   11. JURIDISCH & OVERIGE PAGINA'S
   ========================================================================== */
.legal-container { max-width: 800px; margin: 0 auto; }
.page-header { margin-bottom: 3rem; border-bottom: 1px solid var(--border-color); padding-bottom: 2rem; }
.page-title { font-size: 3rem; font-weight: 800; line-height: 1.15; letter-spacing: -1px; color: var(--text-dark); margin-bottom: 1rem; }
.last-updated { font-size: 0.9rem; color: var(--text-gray); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }
.last-updated svg { width: 16px; height: 16px; }
.toc-box { background-color: #F8FAFC; border: 1px solid var(--border-color); border-radius: 16px; padding: 2rem; margin-bottom: 3rem; }
.toc-title { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.toc-list a { color: var(--primary-blue); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: var(--transition); display: inline-flex; align-items: center; }
.toc-list a::before { content: '↓'; margin-right: 0.5rem; font-size: 1.1rem; }
.toc-list a:hover { color: var(--primary-blue-hover); transform: translateX(3px); }
.legal-content a { color: var(--primary-blue); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: var(--transition); }
.legal-content a:hover { border-bottom-color: var(--primary-blue); }
.info-panel { background-color: #E0F2FE; border-left: 4px solid var(--primary-blue); padding: 1.5rem; border-radius: 0 12px 12px 0; margin: 2rem 0; font-size: 0.95rem; }

/* ==========================================================================
   12. OFF-CANVAS MENU (MOBIEL)
   ========================================================================== */
.mobile-menu-overlay { position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background-color: var(--card-bg); z-index: 9999; padding: 1.5rem 2rem; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); overflow-y: auto; }
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mobile-menu-logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-blue); text-decoration: none; letter-spacing: -0.5px; }
.btn-close { background: none; border: none; font-size: 2rem; color: var(--text-dark); cursor: pointer; line-height: 1; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu-links a { text-decoration: none; color: var(--text-dark); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.mobile-menu-links a.active { color: var(--primary-blue); }
.mobile-menu-divider { height: 1px; background-color: var(--border-color); margin: 2rem 0; }
/* ==========================================================================
   13. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1024px) {
    /* Layout Reset - Terug naar de Grid! */
    .app-layout { 
        display: grid; 
        grid-template-columns: 110px 1fr; /* Logo blok is nu 110px breed ipv 160px */
        column-gap: 16px; /* Iets krappere gap voor mobiel */
        row-gap: 0;
        padding: 0 1rem; 
    }
    
    .app-logo { 
        display: flex; /* Logo is terug zichtbaar! */
        font-size: 1.3rem; /* Tekst iets kleiner */
        padding: 1rem 0.8rem; 
        margin-bottom: 16px; /* Gelijk aan de column-gap */
        min-width: unset;
        border-radius: 16px;
    }

   .app-logo span:first-child {
        margin-left: 0px;
    }

    .app-logo span:last-child {
        margin-left: 5px;
    }
    
    .app-header { 
        border-radius: 16px 16px 0 0; 
        padding: 1rem; 
        display: flex;
        align-items: center;
    }
    
    /* De Cutout voor mobiel herschaald */
    .app-header::before { 
        display: block; /* Cutout is terug zichtbaar! */
        left: -16px; 
        width: 16px; 
        height: 16px; 
        border-bottom-right-radius: 16px; 
        box-shadow: 8px 8px 0 0 var(--card-bg); 
    } 
    
    .app-main { 
        border-radius: 16px 0 16px 16px; 
        padding: 2rem 1.25rem; 
    }
    
    /* Navigatie Switch */
    .nav-content-desktop { display: none; }
    
    /* Zorg dat de hamburger knop netjes rechts staat */
    .mobile-header-bar { 
        display: flex; 
        justify-content: flex-end; 
        align-items: center; 
        width: 100%; 
    }
    
    /* Verberg de extra tekst-logo in de mobiele balk, want de blauwe is terug */
    .mobile-logo { display: none; } 
    
    /* Mooiere styling voor de menu-knop */
    .btn-hamburger { 
        background: var(--bg-page); 
        border: 1px solid var(--border-color); 
        color: var(--text-dark); 
        cursor: pointer; 
        display: flex; 
        align-items: center; 
        gap: 0.5rem; 
        font-weight: 700; 
        font-size: 0.9rem; 
        padding: 0.5rem 0.8rem; 
        border-radius: 12px; 
    }
    
    /* Layout Componenten */
    .top-overview { grid-template-columns: 1fr; }
    .hero-main { min-height: 400px; padding: 2rem; justify-content: flex-end; }
    .hero-main h1 { font-size: 2rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .horizontal-card { flex-direction: column; }
    .horizontal-card .post-img { width: 100%; height: 200px; }
    .asym-grid { grid-template-columns: 1fr; }
    
    /* Pagina Specifiek */
    .featured-category-post { grid-template-columns: 1fr; }
    .featured-img { min-height: 250px; }
    .featured-content { padding: 2rem; }
    .job-filters { flex-wrap: wrap; }
    .job-filter-input { flex: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-card:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
    /* Op extra smalle telefoons schalen we de header layout nog een fractie kleiner */
    .app-layout {
        grid-template-columns: 90px 1fr;
        column-gap: 12px;
    }
    .app-logo {
        font-size: 1.1rem;
        padding: 1rem 0.5rem;
        margin-bottom: 12px;
    }
    .app-header::before {
        left: -12px;
        width: 12px;
        height: 12px;
        border-bottom-right-radius: 12px;
        box-shadow: 6px 6px 0 0 var(--card-bg);
    }

    /* Algemeen */
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .jobs-section, .highlight-section { padding: 1.5rem; }
    
    /* Typografie */
    .hero-main h1 { font-size: 1.6rem; }
    .hero-main p { font-size: 0.9rem; }
    .post-title { font-size: 2rem; }
    .category-title { font-size: 2.5rem; }
    .page-title { font-size: 2.2rem; }
    
    /* Single Post */
    .post-featured-image { height: 250px; margin-bottom: 2rem; }
    .post-content { font-size: 1.05rem; }
    .post-content .lead { font-size: 1.2rem; }
    .post-content blockquote { font-size: 1.3rem; padding: 0 1rem; margin: 3rem 0; }
    .author-box { flex-direction: column; text-align: center; padding: 1.5rem; }
    
    /* Categorie & Juridisch */
    .featured-content h2 { font-size: 1.5rem; }
    .legal-content h2 { font-size: 1.5rem; }
    .toc-box { padding: 1.5rem; }
    
    /* Jobs */
    .job-list-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .job-logo { width: 50px; height: 50px; }
    .job-action { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; margin-top: 0.5rem; border-top: 1px solid var(--border-color); padding-top: 1rem; }
    
    /* Contact */
    .contact-intro p { font-size: 1.05rem; }
    .btn-whatsapp { width: 100%; justify-content: center; }
    .contact-card { padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
}