/**
*     0. CSS Reset
*/
@import url('https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/**
 *    1. Base Rules
 */

html
{
    font-size: 100%;
}
body
{
    font-family: Merriweather, Garamond, Georgia, Times, 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.625rem;

    color: #1d1e1f;
    background-color: #fffde0;
}
h1,
h2,
h3,
h4,
h5,
h6
{
    margin: 0;
}
h1
{
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 3.25rem;
}
h2
{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.625rem;
}
h3
{
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.625rem;
}
h4
{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
}
h5
{
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.625rem;
}
h6
{
    font-size: .75rem;
    font-weight: 300;
    line-height: 1.625rem;
}
a
{
    -webkit-transition: color .5s ease, text-shadow .5s ease;
       -moz-transition: color .5s ease, text-shadow .5s ease;
         -o-transition: color .5s ease, text-shadow .5s ease;
            transition: color .5s ease, text-shadow .5s ease;
    text-decoration: none;

    color: #0763aa;
}
p,
ul,
ol,
dl,
pre,
table,
blockquote
{
    margin: 0 0 1.625rem 0;
}
ul,
ol,
dl
{
    padding: 0;

    list-style-position: inside;
}
button,
button:active,
button:focus
{
    padding: 0;

    border: none;
    outline: none;
    box-shadow: none;
}
nav li
{
    display: inline-block;

    list-style-type: none;
}
article
{
    margin-bottom: 1rem;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
/**
 *    2. Modules
 */


/* Wrapper */

.wrapper
{
    position: relative;

    width: 66.5rem;
    margin: 1.625rem auto;

    background-image: url('../images/seamless_paper_texture.png');
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

/* Header */

header h1,
header nav
{
    clear: both;

    margin: 0 1.625rem;
}
.banner-image
{
    width: 100%;
    margin-right: -1px;

    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

/* Language Switcher */

.mod-languages
{
    float: right;

    height: 1.625rem;
    margin-right: 1.625rem;
}
.lang-inline
{
    list-style-type: none;
}
.lang-inline li
{
    display: inline-block;
}

/* Top Navigation Bar */

.menu-top
{
    display: inline-block;
    width:    -moz-max-content;
    width: -webkit-max-content;
    width: -o-max-content
    width: -ms-max-content
    width: max-content;
    padding: 0;
}
.menu-top ul
{
    margin: 0;

    background-color: #fffef0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
.menu-top a
{
    display: inline-block;

    margin-left: -.25rem;
    padding: 0 1.625rem;

    border-left: #1a73b5 .75rem solid;
}
.menu-top a:first-child
{
    margin-left: 0;
}

/* Main */

main
{
    display: block;
    
    width: 36rem;
    margin: 1.625rem 1.625rem 1.625rem 15.25rem;
    padding-bottom: 1.625rem;
    min-height: 32rem;
}

/* Sidebars */

aside
{
    width: 12rem;
    margin: 1.625rem;
}
aside.left {
  position: absolute;
}
aside.right {
  position: absolute;
  right: 0px;
}

/* Side Navigation */

.menu-side
{
    font-size: .75rem;

    background-color: #fffef0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
.menu-side h4
{
    color: #fffef0;
    border: none;
    background-color: #0763aa;
    background-image: none;
}
.menu-side h4,
.menu-side li
{
    padding: 0 1.625rem;
}
.menu-side a
{
    display: block;

    border-top: #1a73b5 1px dotted;
}
.menu-side a:first-child
{
    border-top: none;
}

/* Articles */

.blog-post
{
    width: 34rem;
    padding: 1rem;
    left: 13.625rem;
    text-align: justify;

    background-color: #f7e82e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
.items-more
{
    padding: 1rem;

    background-color: #f7e82e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

/* Article images */

figure
{
    position: relative;

    width: 11.1875rem;
    margin: .625rem 0 1.625rem 0;

    background-color: #fffef0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
a.dia:nth-of-type(odd) figure
{
    float: left;

    margin-right: 1.625rem;
}
a.dia:nth-of-type(even) figure
{
    float: right;

    margin-left: 1.625rem;
}
figure img
{
    display: block;

    width: 9.9375rem;
    margin: .625rem;
}
figcaption
{
    font-size: .75rem;
    line-height: 1.21875rem;
    text-align: center;

    width: 10.75rem;
    margin: 0 .625rem .625rem .625rem;
}

.gallerij a.dia figure, a.dia + a.dia figure {
  display: inline-block;
  float: left;
  width: 15rem;
}
.gallerij a.dia figure img, a.dia + a.dia figure img {
  width: 13.75rem;
}
.gallerij a.dia:nth-child(odd) figure{
  clear: left;
}
/* pagination */

.pagination
{
    font-size: .75rem;
}
.pagination .counter
{
    margin: 0;
}
.pagination li
{
    margin-right: 1rem;
}

/**
 *     3. States
 */

.current,
.current:hover,
.current:active
{
    color: #fffef0;
    border: none !important;
    background-color: #2380c5;
    box-shadow: none;
    text-shadow: none;
}
a:hover,
a:active
{
    color: #1a73b5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
.menu-top a:hover,
.menu-top a:active,
.menu-side a:hover,
.menu-side a:active
{
    -webkit-transition: box-shadow .5s ease;
       -moz-transition: box-shadow .5s ease;
         -o-transition: box-shadow .5s ease;
            transition: box-shadow .5s ease;

    box-shadow: 0 3px 16px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    text-shadow: none;
}

/**
* Image rebox minimum width
*/
img.rebox-content {
  min-width: 45%;
}
img.rebox-content {
  max-height: 90%;
}

/* Button */
button, button:active {
  padding: .8125rem;
  font-size: 1rem;
  line-height: 1.625rem;
  background-color: #086AB3;
  color: #F7E82E;
}
button {
  -webkit-transition: box-shadow .5s ease;
       -moz-transition: box-shadow .5s ease;
         -o-transition: box-shadow .5s ease;
            transition: box-shadow .5s ease;
  
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
button:active {
  box-shadow: none;
}
/**
 *     4. Helpers
 */

.left
{
    float: left;

    margin-right: 1.625rem;
}
.right
{
    float: right;

    margin-left: 1.625rem;
}
.block
{
    display: block;
}

/* clearfix http://nicolasgallagher.com/micro-clearfix-hack/ */

.clearfix:before,
.clearfix:after
{
    display: table;
    /* 2 */

    content: ' ';
    /* 1 */
}
.clearfix:after
{
    clear: both;
}

/**
 *    5. Media Queries
 */

@media (min-width: 1256px)
{
    html
    {
        /* 18px */
        font-size: 112.5%;
    }
}
@media (max-width: 1255px) and (min-width: 1116px)
{
    html
    {
        /* 16px */
        font-size: 100%;
    }
}
@media (max-width: 1115px) and (min-width: 1047px)
{
    html
    {
        /* 15px */
        font-size: 93.75%;
    }
}
@media (max-width: 1046px) and (min-width: 977px)
{
    html
    {
        /* 14px */
        font-size: 87.5%;
    }
}
@media (max-width: 976px)
{
    html
    {
        /* 13px */
        font-size: 81.25%;
    }
}
@media (max-width: 906px) and (min-width: 750px)
{
    .wrapper
    {
        width: 62.5rem;
    }
    main
    {
        width: 34rem;
        margin-left: 14.25rem;
    }
    aside
    {
        width: 11rem;
    }
}
@media (min-width: 855px)
{
    /* No hamburgers here */
    .hamburger
    {
        display: none !important;
    }
}
@media (max-width: 854px)
{
    /* Hamburger Time */
    .wrapper
    {
        margin-top: 3.25rem;
    }
    .menu-top
    {
        position: fixed;
        top: 0;
        right: -1.625rem;

        width: 100%;
    }
    .menu-top a
    {
        display: block;

        border-bottom: #1a73b5 1px dotted;
    }
    .menu-top .hamburger
    {
        width: 100%;
        padding-right: 1.625rem;

        text-align: right;

        opacity: .67;
        border-bottom: #1a73b5 1px dotted;
        background-color: #fffef0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    }
    .menu-top .hamburger:active,
    .menu-top .hamburger:focus
    {
        -webkit-transition: opacity .5s ease;
           -moz-transition: opacity .5s ease;
             -o-transition: opacity .5s ease;
                transition: opacity .5s ease;

        opacity: 1;
    }
    .menu-top .menu-items
    {
        display: block;
        float: right;
        clear: both;

        width: fit-content;
    }
}
@media (max-width: 854px) and (min-width: 750px)
{
    .wrapper
    {
        width: 54.5rem;
    }
    main
    {
        width: 30rem;
        margin-left: 12.25rem;
    }
    aside
    {
        width: 11rem;
    }
}
@media (max-width: 749px)
{
    .wrapper
    {
        width: 95%;
    }
    main,
    aside
    {
        position: static;

        width: 95%;
        margin: 1.625rem auto;
    }
    .left,
    .right
    {
        float: none;
    }
    figure
    {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
    }
    figure img {
      width: 100%;
      max-width: 100%;
    }
}

/**
 *    6. Modern Redesign (2026) — Broeders van O.-L.-V. van Barmhartigheid
 *    Full-bleed hero met "bollen", compacte navigatie, lichte kaarten in svalsemberg-stijl.
 *    Eén gedeeld stijlbestand -> geldt voor alle pagina's en talen.
 */

:root {
    --navy-900: #0c2340;
    --navy-800: #133054;
    --navy-700: #1a4577;
    --navy-500: #2870b5;
    --navy-300: #6aa0d4;
    --gold:      #f5b50a;
    --gold-dark: #cf9100;
    --gold-soft: #fdf4d9;
    --ink:       #22303f;
    --muted:     #5d6b7a;
    --surface:   #ffffff;
    --page:      #eef2f7;
    --line:      #e6ebf1;
    --shadow-sm: 0 1px 2px rgba(12, 35, 64, .04), 0 4px 14px rgba(12, 35, 64, .07);
    --shadow-md: 0 10px 28px rgba(12, 35, 64, .10), 0 3px 10px rgba(12, 35, 64, .06);
    --shadow-lg: 0 24px 60px rgba(12, 35, 64, .20), 0 8px 20px rgba(12, 35, 64, .10);
}

@keyframes svUp  { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes svIn  { from { opacity:0; } to { opacity:1; } }
@keyframes svPop { from { opacity:0; transform:scale(.85); } to { opacity:1; transform:scale(1); } }

/* ---- Basis ---- */
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.72;
    background-color: var(--page);
    background-image: radial-gradient(1100px 520px at 50% 380px, #f7fafd 0%, var(--page) 60%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; }
p { margin-bottom: 1rem; }
img { max-width: 100%; height: auto; }
::selection { background: var(--gold); color: var(--navy-900); }
a { color: var(--navy-500); text-decoration: none; transition: color .2s ease; }
a:hover, a:active { color: var(--gold-dark); text-shadow: none; }

/* ---- Volledige-breedte layout (geen omsluitend blok meer) ---- */
.wrapper {
    position: relative;
    display: grid;
    grid-template-columns: minmax(1.25rem, 1fr) 250px minmax(0, 690px) 250px minmax(1.25rem, 1fr);
    grid-template-areas:
        "hd hd hd hd hd"
        ".  lt mn rt  .";
    column-gap: 1.5rem;
    row-gap: 2.2rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 3.5rem;
    background: none;
    background-image: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

/* ---- Hero (full-bleed, compact, logo links · tekst rechts) ---- */
.banner-image { display: none !important; }

header {
    grid-area: hd;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.3rem 1.5rem;
    margin: 0;
    padding: 1.5rem clamp(1.25rem, 5vw, 4rem) 0;
    color: #fff;
    background-color: var(--navy-900);
    background-image:
        repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 26px),
        repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 13px),
        linear-gradient(160deg, rgba(245,181,10,.10), transparent 42%),
        linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 46%, var(--navy-700) 105%);
    overflow: hidden;
    animation: svIn .5s ease both;
}
/* gouden afwerkingslijn onderaan de hero */
header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
    z-index: 2;
}

/* Embleem-medaillon (links) */
header::before {
    content: '';
    flex: 0 0 auto;
    width: 82px; height: 82px;
    border-radius: 50%;
    background: #fff url('../../../images/wapenschild.jpg') center 46% / 74% no-repeat;
    box-shadow: 0 8px 22px rgba(0,0,0,.32), 0 0 0 3px rgba(255,255,255,.88);
    animation: svPop .6s .05s ease both;
}

/* Taalvlaggen — rechtsboven in pill */
.mod-languages {
    position: absolute;
    top: 14px; right: 16px;
    float: none; height: auto; margin: 0;
    display: flex; align-items: center; z-index: 4;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    padding: 4px 7px; border-radius: 999px;
    backdrop-filter: blur(4px);
}
.lang-inline { display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.lang-inline li { display: inline-flex; }
.lang-inline a { display: inline-flex; padding: 2px; border-radius: 5px; opacity: .6; transition: opacity .2s, transform .2s; }
.lang-inline a:hover { opacity: 1; transform: translateY(-1px); }
.lang-inline .lang-active a { opacity: 1; box-shadow: 0 0 0 2px var(--gold); }
.lang-inline img { display: block; width: 20px; height: auto; border-radius: 3px; }

/* Hero-tekstblok (rechts van het logo) */
header h1 {
    flex: 0 1 auto;
    clear: none;
    display: flex; flex-direction: column; align-items: flex-start;
    margin: 0; padding: .3rem 0;
    text-align: left;
    color: #fff;
    font-size: clamp(1.35rem, 2.6vw, 2.05rem);
    font-weight: 700; line-height: 1.16;
    letter-spacing: .2px;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
    animation: svUp .6s .1s ease both;
}
header h1::before {
    content: 'Congregatie';
    margin-bottom: .5rem;
    padding: .26rem .68rem;
    background: var(--gold); color: var(--navy-900);
    border-radius: 999px;
    font-family: 'Inter', sans-serif; font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    box-shadow: 0 3px 10px rgba(245,181,10,.35);
}
header h1::after {
    content: 'Honor Deo, labor mihi, utilitas proximo';
    margin-top: .45rem;
    font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
    font-size: clamp(.8rem, 1.4vw, 1.05rem);
    letter-spacing: .3px; color: var(--gold); text-shadow: none;
}

/* ---- Hoofdnavigatie (compacte, full-bleed balk onderaan de hero) ---- */
.menu-top {
    flex: 1 1 100%;
    order: 5;
    width: auto;
    margin: 1.25rem clamp(-4rem, -5vw, -1.25rem) 0;
    padding: 0;
    animation: svUp .6s .18s ease both;
}
.menu-top ul {
    display: flex; flex-wrap: wrap; justify-content: center;
    margin: 0; padding: 0 .5rem;
    background: rgba(0,0,0,.22);
    border-top: 1px solid rgba(255,255,255,.12);
    border-radius: 0; box-shadow: none;
}
.menu-top a {
    display: inline-block; margin: 0;
    padding: .72rem 1.15rem;
    border-left: none;
    color: #d6e4f3; font-family: 'Inter', sans-serif;
    font-size: .9rem; font-weight: 500; letter-spacing: .2px;
    position: relative;
    transition: color .22s ease, background-color .22s ease;
}
.menu-top a li { display: inline; list-style: none; }
.menu-top a::after {
    content: ''; position: absolute;
    left: 1.15rem; right: 1.15rem; bottom: .42rem; height: 2px; border-radius: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .26s ease;
}
.menu-top a:hover { color: #fff; background: rgba(255,255,255,.08); box-shadow: none; }
.menu-top a:hover::after { transform: scaleX(1); }
.menu-top a.current, .menu-top a.active, .menu-top .current {
    color: #fff !important; background: rgba(245,181,10,.18) !important;
    box-shadow: none; text-shadow: none; border: none !important;
}
.menu-top a.current::after, .menu-top a.active::after { transform: scaleX(1); }

/* ---- Zijbalken — lichte, luchtige kaarten (svalsemberg-stijl) ---- */
aside { width: auto; margin: 0; float: none; }
aside.left  { grid-area: lt; position: static; }
aside.right { grid-area: rt; position: static; right: auto; }

.menu-side {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: .35rem .45rem .6rem;
    margin-bottom: 1.3rem;
    font-size: .85rem;
    animation: svUp .6s ease both;
    transition: box-shadow .25s ease, transform .25s ease;
}
.menu-side:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* Sectielabel als goud pill */
.menu-side h4 {
    display: inline-block;
    margin: .7rem .55rem .55rem;
    padding: .3rem .7rem;
    color: var(--navy-900); background: var(--gold);
    background-image: none;
    border: none; border-radius: 999px;
    font-family: 'Inter', sans-serif; font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
}
.menu-side li { padding: 0; }
.menu-side a {
    display: block;
    margin: 1px .3rem;
    padding: .5rem .65rem;
    border: none; border-radius: 9px;
    color: var(--ink); font-size: .85rem; line-height: 1.4;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.menu-side a li { display: block; list-style: none; }
.menu-side a:first-child { border-top: none; }
.menu-side a:hover { background: var(--gold-soft); color: var(--navy-900); transform: translateX(3px); }
.menu-side a.current, .menu-side a.active {
    background: var(--navy-700) !important; color: #fff !important;
    box-shadow: none; border: none !important;
}

/* ---- Hoofdinhoud ---- */
main {
    grid-area: mn;
    display: block; position: static;
    width: auto; margin: 0; padding: 0; min-height: 0;
    animation: svUp .6s .05s ease both;
}
.blog, .blog.clearfix { width: auto; }

.blog-post, .items-more {
    position: static; left: auto; width: auto;
    margin: 0 0 1.5rem; padding: 1.7rem 1.9rem;
    text-align: left;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    animation: svUp .55s ease both;
}
.blog-post { border-top: 3px solid var(--gold); }

.page-header { margin-bottom: 1rem; }
.page-header h1, .page-header h2,
.blog-post h1, .blog-post h2, .blog-post h3,
.items-more h1, .items-more h2 {
    color: var(--navy-900); line-height: 1.25; margin-bottom: .5rem;
}
.blog-post a, .items-more a { color: var(--navy-500); font-weight: 500; }
.blog-post a:hover, .items-more a:hover { color: var(--gold-dark); }

/* ---- Afbeeldingen / galerij ---- */
figure {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
figure img { display: block; border-radius: 6px; transition: transform .45s ease; }
figure:hover img { transform: scale(1.04); }
figcaption { color: var(--muted); }
.blog-post img, .items-more img { border-radius: 8px; }

/* ---- Paginering ---- */
.pagination ul { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; list-style: none; margin: 1.4rem 0 0; padding: 0; }
.pagination li { margin: 0; }
.pagination a, .pagination span {
    display: inline-block; padding: .42rem .8rem; border-radius: 9px;
    border: 1px solid var(--line); background: var(--surface); color: var(--navy-700);
    font-size: .85rem; transition: all .2s ease;
}
.pagination a:hover { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.pagination .active span, .pagination .current span { background: var(--gold); color: var(--navy-900); border-color: var(--gold); font-weight: 600; }

/* ---- Knoppen ---- */
button, button:active {
    padding: .7rem 1.1rem; background-color: var(--navy-700); color: var(--gold);
    border: none; border-radius: 10px; font-family: 'Inter', sans-serif; font-weight: 600; cursor: pointer;
    transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
button:hover { background-color: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.hamburger { display: none !important; }

/* ---- Responsief ---- */
@media (max-width: 900px) {
    .wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: "hd" "mn" "lt" "rt";
        column-gap: 0; row-gap: 1.6rem;
        padding-bottom: 2.5rem;
    }
    aside.left, aside.right, main { padding: 0 1.1rem; }
    header { padding: 1.3rem 1.1rem 0; gap: 1rem; }
    header::before { width: 66px; height: 66px; }
    header h1 { font-size: 1.35rem; }
    .menu-top { margin: 1.1rem -1.1rem 0; }
}
@media (max-width: 560px) {
    header { justify-content: flex-start; }
    header h1 { font-size: 1.2rem; }
    .mod-languages { top: 10px; right: 10px; padding: 3px 5px; }
    .lang-inline img { width: 18px; }
    .menu-top ul { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
    .menu-top a { white-space: nowrap; }
    .blog-post, .items-more { padding: 1.2rem 1.1rem; }
}

/* Respecteer reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
