@import url('forms.css');

.container::after {
    content: none;
}

/* Body
----------------------------------------------------------------------------------------------------*/
body {
	margin: 0;
	background: #fff top center no-repeat;
	background-attachment: fixed;
    letter-spacing: 1px;
    font-size: 16px;

}


/*
logo colors: #eb5d25 (red), #f8b518 (yellow), #f18822 (orange)
*/


body, h1, h2, h3, h4, h5, h6 {

    font-family: 'Titillium Web', 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'Tahoma', sans-serif;
}

    h1 {
        font-size: clamp(26px, 4vw, 36px);
        font-weight: bold;
        color: #f8b518;
        margin: 0 0 20px 0;
        }
	
	 h2 {
		font-size: clamp(19px, 2.4vw, 24px);
		font-weight: bold;
		color: #f18822;
        margin: 0 0 16px 0;
        }

    h3 {
            font-size: 16px;
            font-weight: bold;
            color: #111;
            margin: 0 0 16px 0;
    }

a:link {text-decoration:none;}      /* unvisited link */
a:visited {text-decoration:none;}  /* visited link */
a:hover {text-decoration:none;}  /* mouse over link */
a:active {text-decoration:none;}  /* selected link */

blockquote {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 500;
    letter-spacing: 2px;
    color: #111;
    margin: 0 0 20px 0;
}



/* Containers
----------------------------------------------------------------------------------------------------*/
.full-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	text-align: left;
	position: relative;
}

.container {
    width: 100%;
    max-width: 1280px;   /* Choose the maximum width you like */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Header
----------------------------------------------------------------------------------------------------*/
header {
	width: 100%;
    position: relative;
	height: auto;
	text-align: center;
	background: #fff;
    color: #fff;
    z-index: 1000;
}

    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .logo {
        position: relative;
        margin: 15px 0;
    }

        header .logo a {
            display: block;
            width: 160px;
            height: 49px;
            text-decoration: none;
            background: url(../img/general/logo.png) no-repeat left top;
            background-size: 160px 49px;

        }


            header .logo a:focus {
                -moz-outline: none;
                outline: none;
            }

	nav {
		position: relative;
		height: auto;
	}

		nav ul {
			    list-style: none;
			    margin: 0;
			    padding: 0;
			    font-size: 20px;
			    line-height: 35px;
			    display: flex;
			    align-items: center;
			    font-weight: 300;
			}

			nav ul li {
				display: block;
				margin: 0 0 0 10px;
			}

/* Hamburger toggle button (mobile only - see media query near the end of this file) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #111;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav link styling shared by the header and footer navigation */
header nav ul li a,
footer nav ul li a {
	display: block;
	padding: 10px 16px;
	color: #000;
}

header nav ul li a:hover, header nav ul li a.active,
footer nav ul li a:hover, footer nav ul li a.active {
	text-decoration: none;
	color: #000;
	background-color: transparent;
	font-weight: 600;
}


/* Banner
----------------------------------------------------------------------------------------------------*/
.banner {
    position: relative;
    width: 100%;
    min-height: 575px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.home .banner {
    background-image: url("../img/visuals/banner.png");
}

.contact .banner {
    background-image: url("../img/visuals/banner-c.png");
}

.what .banner {
        background-image: url("../img/visuals/banner-w.png");
}

.fields .banner {
        background-image: url("../img/visuals/banner-f.png");
}

.about .banner {
        background-image: url("../img/visuals/banner-a.png");
}


.banner .container {
    position: relative;
    min-height: 575px;
    overflow: hidden;
}



/* White fade overlay */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        #fff 0%,
        #fff 25%,
        rgba(255,255,255,.95) 40%,
        rgba(255,255,255,.6) 60%,
        rgba(255,255,255,0) 100%
    );

    z-index: 1;
}

.banner a {
    display: inline-block;
    padding: 8px 20px;
    margin: 5px 10px 5px 0;
    text-decoration: none;   /* Remove underline */
    color: #111;             /* Remove default blue */
    font-weight: 500;
}

.banner .text {
    position: relative;
    width: 50%;
    height: auto;
    margin: 50px 0;
    z-index: 2;
    padding-right: 20px;
}


.banner a.dark {
    background: #f8b518;
    color: #fff;
        border: 1px solid #f8b518;
}

.banner a.dark:hover {

    color: #f8b518;
    background: none;
}

.banner a.light {
    background: #fff;
    border: 1px solid #f8b518;
    color: #111;
}

.banner a.light:hover {
    background: #f8b518;
    border: 1px solid #f8b518;
    color: #fff;
}

.banner h1 {
    font-size: clamp(30px, 5vw, 52px);
    letter-spacing: 2px;
    margin: 40px 0;
    font-weight: normal;
    color: #f8b518;
}


/* Content
----------------------------------------------------------------------------------------------------*/
.content-container.clear {
	position: relative;
	width: 100%;
}

    .content table p, .content table ul, .content table ol {
        margin-bottom: 0;
    }

        .content table p + ul, .content table p + ol {
            margin-top: 0;
        }

section ul{
    list-style: disc;
 
}
section ul li{
   margin-left: 15px; 
}


section {
    padding: 40px 0 20px;
}

.wat {
    width: 100%;
    background: #F7F7F7;
    padding-top: 40px;
}

/* Shared card-slider component: used by both the "Wat we doen" slider
   below and the "Maatschappelijke opgaven" slider further down. Each
   section only overrides the sizing that makes it look "compact" vs "wide". */
.slider {
    margin: 20px auto;
    display: flex;
    justify-content: center; /* center the slides */
    flex-wrap: wrap;         /* wraps on smaller screens */
}

.slider .slide {
    height: 225px;
    background: #fff;
    display: flex;
    box-sizing: border-box;
    border: 1px solid #f8b518;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.slider .slide:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.slider .slide a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #111;
    text-decoration: none;
}

.slider .slide .image {
    height: 100%;
    flex-shrink: 0;
}

.slider .slide .image img {
    width: 100%;
    object-fit: cover;
}

.slider .slide .text {
    padding: 10px 10px 20px 10px;
    box-sizing: border-box;
}

.slider .slide .text h2 {
    margin-top: 0;
}

/* "Wat we doen" slider: compact cards */
.wat .slider {
    width: 95%;
    gap: 20px;
}

.wat .slider .slide {
    width: 350px;
}

.wat .slider .slide .image {
    width: 50px;
    margin: 10px 10px 0 10px;
}

.wat .slider .slide .text {
    width: 230px;
}

.wat .slider .slide .text h2 {
    font-size: 18px;
}

.focus {
    width: 100%;
    background: #fff;
    padding: 25px 0 0 0;
}

/* Left column */

.focus .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.focus .content p {
    line-height: 1.6;
    font-size: 16px;
}

/* Right column */

.focus .tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
    column-gap: 30px;
    border-left: 2px solid #ddd; 
    padding-left: 20px;
}

/* Individual tile */

.focus .tile {
    display: flex;
    background: #fff;
    padding: 20px;
    min-height: 180px;
    box-sizing: border-box;
        transition: border-color .3s ease, box-shadow .3s ease;
    border-right: none;
}

.focus .tile.top {
    border-bottom: 1px solid #ddd;
}

.focus .tile.bottom {
    border-top: 1px solid #ddd;
}


.focus .tile a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #111;
    text-decoration: none;
}



.focus .tile.top a:hover {
    border-top: 1px solid #ddd;
}


.focus .tile.bottom a:hover {
    border-bottom: 1px solid #ddd;
    
}


/* Icon/image */

.focus .tile .image {
    width: 40px;
    flex-shrink: 0;
    padding-top:  20px;
}

.focus .tile .image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Text */

.focus .tile .text {
    padding: 15px;
    font-size: 12px;
}

.focus .tile .text h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.focus .tile .text p {
    margin: 0;
    line-height: 1.5;
}

.sector {
    width: 100%;
    padding-top: 40px;
    background: #FAFAFA;
}


/* "Maatschappelijke opgaven" slider: wide cards */
.sector .slider {
    width: 90%;
    gap: 50px;
}

.sector .slider .slide {
    width: 500px;
}

.sector .slider .slide .image {
    width: 150px;
    background: #ddd;
}

.sector .slider .slide .image img {
    height: 100%;
}

.sector .slider .slide .text {
    width: 350px;
    padding: 20px;
}

.sector .slider .slide .text h2 {
    font-size: 20px;
    line-height: 1.2;
}


.blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 50px auto;
}

/* Individual tile */

.blocks .block {
    display: flex;

    background: #fff;
    border: 1px solid #ddd;
    /*border-radius: 8px; */

    overflow: hidden;

    min-height: 400px;
}

.blocks .block .image {
    width: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.blocks .block .image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.blocks .block .text {
    flex: 1;
    padding: 30px;
}


.blocks .block.top {
    border-bottom: 1px solid #ddd;
}

.blocks .block.bottom {
    border-top: 1px solid #ddd;
}

.blocks .block.left.top img {
   object-position: 15% 50%; 
}

.blocks .block.right.top img {
   object-position: 18% 50%; 
}

.blocks .block.left.bottom img {
   object-position: 75% 50%; 
}

.blocks .block.right.bottom img {
   object-position: 40% 50%; 
}




.page {
    width: 100%;
    background: #f7f7f7;
    padding: 40px 0;
}

/* Four-column value tiles (e.g. "Waar wij voor staan" on the About page) */
.tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 45px;
}

.tile {
    display: flex;
    align-items: flex-start;
    background: none;
    padding: 0 10px;
    min-height: 100px;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
}

.tile.last {
    border-right: none;
}

.tile .image {
    width: 60px;
    flex-shrink: 0;
    margin-top: 5px;
    margin-right: 10px;
}

.tile .image img {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tile .text h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #111;
}

.tile .text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


.about .tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about .tile .image {
    width: 100%;
    margin: 0 0 20px;
    height: 70px;
}

.about .tile .image img {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about .tile .text {
    width: 100%;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px; 
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ccc;
}

.section-title h2 {
    margin: 0;
    white-space: nowrap;
    /* text-transform: uppercase; */
}

.section-title h2::before {
    margin-right: 20px;
}

.section-title h2::after {
    margin-left: 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 60px;
}

.contact-content {
    line-height: 1.8;
    padding: 40px 0;
}

.contact-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.contact-content li {
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background: none;
    padding: 40px;
    box-sizing: border-box;
}

.contact-content .people {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-content .people figure {
    margin: 0;
    text-align: center;
}

.contact-content .people img {
    width: 200px;
    display: block;
    margin: 0 auto;
}

.contact-content .people figcaption {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

.no {
    background: #f7f7f7;
    
}
.rows {
    /* margin: 60px 0; */
}

.rows .row {
    display: grid;
    grid-template-columns: 12% 48% 40%;
    border-bottom: 1px solid #eee;
    min-height: 350px;
    overflow: hidden;
}

.rows .row .icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 25px 20px;
    background: #f7f7f7;
}

.rows .row .icon img {
    width: 80px;
    height: auto;
}

.rows .row .text {
    padding: 20px;
    border-left: 2px solid #f8b518;

}

.rows .row .image {
    overflow: hidden;
    padding: 20px;
}

.rows .row .image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
       object-position: 15% 50%; 
}


.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image text";
    gap: 40px;
    align-items: center;
    background: #F7F7F7;
    padding: 40px 0;
}

.about-row .image {
    grid-area: image;
}

.about-row .text {
    grid-area: text;
    padding: 20px 0;
}

.about-row .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-row.reverse .image {
    grid-column: 2;
}

.about-row.reverse .text {
    grid-column: 1;
}


/* Form
----------------------------------------------------------------------------------------------------*/

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #f8b518;
    /*border-radius: 4px;*/
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ee7c2d;
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form button {
    background: #f8b518;
    color: #fff;
    padding: 14px 24px;
    /*border-radius: 4px;*/
    border: 1px solid #f8b518;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background: #fff;
    border: 1px solid #f8b518;
    color: #f8b518;
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid {
    border-color: #c62828;
}

.contact-form input:valid,
.contact-form textarea:valid {
    border-color: #2e7d32;
}

/* Honeypot */
.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}


.form-message {
            padding: 12px 16px;
            margin-bottom: 20px;
            border-radius: none;
            border: 1px solid transparent;
            font-weight: 500;
        }

        .form-message--success {
            color: #1e7e34;
            background-color: #eafaf0;
            border-color: #b7e4c7;
        }
        .form-message--error {
            color: #c0392b;
            background-color: #fdecea;
            border-color: #f5c6cb;
        }



/* Footer
----------------------------------------------------------------------------------------------------*/
footer {
    position: relative;
	width: 100%;
	background: #eb5d25;
	min-height: 300px;
	height: auto !important;
}

/* The logo + nav row (the second .container inside footer, a direct child) */
footer > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .contact {
    background: #ee7c2d;
    padding: 30px 0;
}

footer .contact .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

footer .contact .group {
    width: 112px;
    height: 55px;
    flex: 0 0 112px;
    background: url(../img/general/samen.png) no-repeat left top;
    background-size: 112px 55px;
}


footer .contact .intro {
    flex: 2;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
			
footer .contact .description {
    flex: 3;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

footer .contact .cta a {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

footer .contact .cta a:hover {
    background: #fff;
    color: #ee7c2d;
}

footer .contact .anwser {
    color: #fff;
    font-size: 14px;
    flex: 1;
    white-space: normal;   /* Let it wrap */
}


footer .logo {
    position: relative;
    margin: 35px 0;
    }
	
    footer .logo a {
        display: block;
        width: 128px;
        height: 39px;
        text-decoration: none;
        background: url(../img/general/logo-2.png) no-repeat left top;
        background-size: 128px 39px;

    }

footer .footer-cta {
    display: none;
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

footer .footer-cta:hover {
    background: #fff;
    color: #ee7c2d;
}


footer nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    width: 800px;
	}

		footer nav ul {
            display: flex;
            gap: 20px;
            list-style: none;
            margin: 0;
            font-size: 18px;
            padding: 0;
			}
			
			footer nav ul li {
                margin: 0 0 0 10px;
                display: block;
                line-height: 18px;
			}

                footer nav li.linkedin a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 34px;
                    height: 34px;
                    padding: 0;
                    color: #111;
                }

                footer nav li.linkedin a:hover {
                    color: #0A66C2;
                }


/* Device
----------------------------------------------------------------------------------------------------*/

/* ====================================================================
   Responsive breakpoints
   Tablet:  max-width 1100px  (nav stays inline, tighter to the logo)
   Mobile:  max-width 768px   (hamburger nav, everything stacks)
   Small:   max-width 480px   (small-phone fine-tuning)
   ==================================================================== */

@media (max-width: 1100px) {
    .container {
        padding: 0 24px;
    }

    /* Header nav: pull it in closer to the logo and shrink it a notch,
       so it still fits comfortably on one row. */
    header .container {
        justify-content: space-between; /* was flex-start — this was the bug */
    }

    header nav ul {
        font-size: 20px;
    }

    header nav ul li {
        margin: 0 0 0 4px;
    }

    header nav ul li a {
        padding: 8px 10px;
    }

    footer > .container {
        justify-content: space-between; /* was flex-start — same bug */
    }

    footer nav {
        width: auto;
    }

    footer nav ul {
        font-size: 18px;
        gap: 10px;
    }

    footer nav ul li a {
        padding: 8px 10px;
    }

    /* Banner: a bit shorter */
    .banner,
    .banner .container {
        min-height: 460px;
    }

    /* wat.php icon/text/image rows: smaller icon */
    .rows .row .icon img {
        width: 55px;
    }

    /* werkvelden.php blocks: a little more compact */
    .blocks .block {
        min-height: 320px;
    }

    .blocks .block .image {
        width: 110px;
    }
}

@media (max-width: 868px) {
    header nav ul {
        font-size: 16px;
    }
    
    footer nav ul {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    /* ---- Header: hamburger menu ---- */
    .nav-toggle {
        display: flex;
    }

    header .container {
        justify-content: space-between;
    }

    header nav {
        position: static;
        margin-left: auto;
    }

    header nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        box-shadow: 0 12px 24px rgba(0,0,0,.15);
        padding: 10px 0;
        z-index: 999;
        font-size: 18px;
    }

    header nav.nav-open ul {
        display: flex;
    }

    header nav ul li {
        margin: 0;
    }

    header nav ul li a {
        padding: 12px 24px;
    }

    /* ---- Footer: logo + LinkedIn only on phones; hide the link list
       and the orange "In gesprek" strip entirely ---- */
    footer nav {
        position: static;
        margin-left: auto;
    }
    
    footer .contact {
        display: none;
    }

    footer nav ul li:not(.linkedin) {
        display: none;
    }
    
    footer > .container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    footer .footer-cta {
        display: inline-block;
        justify-self: center;
    }

    /* ---- Banner: shorter, a lighter gradient so more of the photo
       shows, and shifted to crop in on a different part of the image ---- */
    .banner,
    .banner .container {
        min-height: 340px;
    }

    .banner {
        background-position: 70% center;
    }

    .banner::before {
        background: linear-gradient(
            to right,
            #fff 0%,
            #fff 55%,
            rgba(255,255,255,.95) 75%,
            rgba(255,255,255,.85) 100%
        );
    }

    .banner .text {
        width: 85%;
        margin: 30px 0;
    }

    /* ---- index.php: every tile/card grid drops to a single column ---- */
    .wat .slider,
    .sector .slider {
        gap: 16px;
    }

    .wat .slider .slide,
    .sector .slider .slide {
        width: 100%;
        max-width: 420px;
        height: auto;
    }

    .focus .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .focus .tiles {
        grid-template-columns: 1fr;
        border-left: none;
        padding-left: 0;
        row-gap: 0;
    }

    .focus .tile {
        border-top: none;
        border-bottom: 1px solid #ddd;
    }

    .focus .tile:last-child {
        border-bottom: none;
    }

    /* ---- wat.php: smaller icon, image dropped once it no longer
       fits beside the text ---- */
    .rows .row {
        grid-template-columns: 60px 1fr;
    }

    .rows .row .icon img {
        width: 40px;
    }

    .rows .row .image {
        display: none;
    }

    /* ---- werkvelden.php: tiles stack 4x1 ---- */
    .blocks {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 30px auto;
    }

    .blocks .block {
        min-height: 0;
        flex-direction: column;
    }

    .blocks .block .image {
        width: 100%;
        height: 160px;
    }

    .blocks .block .text {
        padding: 20px;
    }
    
    .blocks .block.left.top img {
        object-position: 50% 24%;
    }
    
    .blocks .block.right.top img {
        object-position: 50% 77%;
    }
    
    .blocks .block.left.bottom img {
        object-position: 50% 77%;
    }
    
    .blocks .block.right.bottom img {
        object-position: 50% 34%;
    }

    /* ---- over.php: row images disappear once they no longer fit;
       "Waar wij voor staan" tiles go 2x2 ---- */
    .about-row {
        grid-template-columns: 1fr;
        padding: 24px 0;
    }

    .about-row .image {
        display: none;
    }

    .about-row .text,
    .about-row.reverse .text {
        grid-column: 1;
    }

    .tiles {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .tile {
        border-right: none;
        padding: 0 10px 20px;
        border-bottom: 1px solid #ddd;
        height: auto;
    }

    .tile.last {
        border-bottom: 1px solid #ddd;
    }

    /* ---- contact.php: form moves below the text/photos ---- */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-content .people img {
        width: 140px;
    }

    .contact-form-wrapper {
        padding: 20px 0;
    }
    
            .contact-content  {
            padding: 0;
    }
    
    .no {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    h3 {
        font-size: 14px;
    }
    
    .wat, .sector {
        padding: 40px 0 20px;
    }
    
    .wat .slider .slide .text {
        max-width: 200px;
    }
    .wat .slider .slide .text h2 {
        font-size: 14px;
    }
    
    .banner .text {
        width: 100%;
        margin: 24px 0;

    }

    /* The wide "Maatschappelijke opgaven" cards stack icon-over-text
       instead of squeezing side by side */
    .sector .slider .slide {
        height: auto;
    }

    .sector .slider .slide a {
        flex-direction: column;
    }

    .sector .slider .slide .image {
        width: 100%;
        height: 140px;
    }

    .sector .slider .slide .text {
        width: 100%;
    }

    .rows .row {
        grid-template-columns: 1fr;
    }

    .rows .row .icon {
        justify-content: flex-start;
        padding: 16px 16px 0;
    }

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

    .tile {
        border-bottom: 1px solid #ddd;
    }
    
        .contact-content  {
            padding: 0;
}
    
    
    .contact-content .people {
    grid-template-columns: 1fr;
    gap: 20px;
}

    .contact-content .people img {
        width: 160px;
    }
}



@media (max-width: 400px) {
    
    footer .footer-cta {
        display: none;
    }
    
    footer > .container {
        display: flex;
        justify-content: space-between;
    }
}
