.site-logo {
    margin-top: -20px;
    margin-bottom: -20px;
    margin-left: -40px;
    padding: 20px 2.5rem;
    display: flex !important;
    align-items: center;
    border-bottom: 1px solid var(--wytbeat-white);
    background: var(--wytbeat-black);
}

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    color: #fff;
    padding: 20px;
    box-shadow: 10px 10px 0 #000;
    z-index: 9999;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-inner p {
    margin: 0 0 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

#cookie-accept {
    background: var(--wytbeat-pink);
    color: #000;
}

#cookie-decline {
    background: #222;
    color: #fff;
}

.site-header:not(.home):not(.front-page) {
	border-bottom: var(--wytbeat-border);
}

/* =========================
   HEADER CTA BUTTON
========================= */

.main-navigation .menu-item-cta a,
.menu-item-cta a {
    background: var(--wytbeat-pink) !important;
    color: var(--wytbeat-black) !important;

    font-family: Bebas Neue, display;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;

    padding: .3em .7em !important;
    border-radius: 0;

    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    transition: all .2s ease;
    box-shadow: 5px 5px 0 #000;
    margin-left: 10px;
}

/* arrow */
.main-navigation .menu-item-cta a::after,
.menu-item-cta a::after {
    content: "→";
    font-size: 1em;
    transition: transform .2s ease;
}

/* hover */
.main-navigation .menu-item-cta a:hover,
.menu-item-cta a:hover {
    transform: translate(-2px, -2px);
    text-decoration: none;
    box-shadow: 7px 7px 0 #000;
}

.main-navigation .menu-item-cta a:hover::after,
.menu-item-cta a:hover::after {
    transform: translateX(3px);
}

/* =========================
   HERO TYPOGRAPHY
========================= */

.wytbeat-hero-title {
    font-size: clamp(3rem, 5vw, 6rem);
    color: var(--wytbeat-white);
    line-height: .9;
    letter-spacing: -.02em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
	
}

.hero-slogan {
/* 	padding-top: 0; */
    padding-top: 1rem;
	padding-left: .5em;
}

.hero-container {
    padding: 0;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: var(--wytbeat-black);
}

.site-main .wp-block-group__inner-container {
	padding: 40px 0 0!important;
}
.hero-container img,
.hero-container figure {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* =========================
   HERO INFO BLOCK
========================= */

.hero-info {
    background: var(--wytbeat-white) !important;
    color: var(--wytbeat-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
	/*border-top: 1px solid var(--wytbeat-black);*/
}

.hero-list {
    margin: 0;
    padding: 0;
}

.hero-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1em 0;
}

.hero-item i {
    font-size: clamp(2rem, 3vw, 4rem);
}

.hero-item-content {
    display: flex;
    flex-direction: column;
}

.hero-item-content h2,
.hero-item-content h3 {
    font-size: clamp(1rem, 6vw, 2rem);
    margin: 0;
}

.hero-item-content h2 {
    font-weight: 400;
    line-height: 1.1;
}

.hero-item-content h3 {
    color: var(--wytbeat-pink);
    font-weight: 500;
    letter-spacing: .08em;
}

/* =========================
   HERO BUTTON (CONSISTENT)
========================= */

.hero-button {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.hero-button a {
    font-family: Bebas Neue, display;
    font-size: 2rem !important;
    font-weight: 400;
    letter-spacing: .08em;

    color: var(--wytbeat-black) !important;
    background: var(--wytbeat-pink) !important;

    padding: 16px 40px !important;
    border-radius: 0;

    display: inline-flex;
    align-items: center;
    gap: 1rem;

    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 8px 8px 0 #000;
}

.hero-button a:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 #000;
}

.hero-button a::after {
    transition: transform .2s ease;
}

.hero-button a:hover::after {
    transform: translateX(4px);
}

/* =========================
   LINEUP BLOCK
========================= */

.lineup-block .wp-block-cover {
    overflow: hidden;
    align-items: start;
    border: 1px solid var(--wytbeat-black);
}

.lineup-block .wp-block-post-template > * {
    position: relative;
    cursor: pointer;
}

/* image zoom */
.lineup-block .wp-block-cover img {
    transform: scale(1);
    transition: transform .6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.lineup-block .wp-block-post-template > *:hover .wp-block-cover img {
    transform: scale(1.08);
}

/* click layer */
.lineup-block .wp-block-post-template > *::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* typography */
.lineup-block .wp-block-post-title a {
    color: var(--wytbeat-white);
    font-size: clamp(4rem, 6vw, 5rem);
	line-height: .8em;
    position: relative;
    z-index: 20;
}

.lineup-block .act-time {
    color: var(--wytbeat-pink);
    font-size: clamp(1rem, 8vw, 3rem);
}

.lineup-block ul {
    gap: 0;
}

.lineup-carousel,.lineup-carousel-nav {
	display: none;
}

/* =========================
   TIMETABLE / ACT CARDS
========================= */

.wytbeat-stage-title {
    display: inline-block;
    background: var(--wytbeat-pink);
    color: var(--wytbeat-black);
    padding: 12px 24px;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.wytbeat-stage-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wytbeat-act-card {
    display: flex;
    min-height: 180px;

    background: var(--wytbeat-panel);
    color: var(--wytbeat-white);
    text-decoration: none;

    transition: transform .2s ease, box-shadow .2s ease;
}

.wytbeat-act-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--wytbeat-pink);
}

.wytbeat-act-image {
    width: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.wytbeat-act-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.wytbeat-act-card:hover img {
    transform: scale(1.08);
}

.wytbeat-act-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wytbeat-act-time {
    color: var(--wytbeat-pink);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.wytbeat-act-content h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
}

/* =========================
   SINGLE ACT
========================= */

body.single-act .site-content {
/*     background: var(--wytbeat-black);
    color: var(--wytbeat-white); */
}

body.single-act .inside-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

body.single-act .featured-image,
body.page:not(.home):not(.front-page):not(.page-id-372) .featured-image,
body.blog .post-image,
body.archive .post-image,
.post .featured-image {
    overflow: hidden;
    margin-bottom: 40px;
    border: 2px solid #000;
    box-shadow: 10px 10px 0 #000;
}

body.single-act .featured-image img,
body.page:not(.home):not(.front-page):not(.page-id-372) .featured-image img,
body.blog .post-image img,
body.archive .post-image img,
.post .featured-image img {
    width: 100%;
    height: auto;
    transform: scale(1.02);
    transition: transform .5s ease;
}

body.single-act .featured-image:hover img,
body.page:not(.home):not(.front-page):not(.page-id-372) .featured-image:hover img,
body.blog article:hover .post-image img,
body.archive article:hover .post-image img,
.post article:hover .featured-image img {
    transform: scale(1.08);
}

body.single-act .entry-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--wytbeat-pink);
}

body.single-act .entry-content {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* =========================
   SIDEBAR NEWS WIDGET
========================= */

.sidebar-related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-related-posts h2 {
    font-size: 1.5rem;
    color: var(--wytbeat-pink);
    margin-bottom: 10px;
}

.sidebar-related-item {
    background: var(--wytbeat-panel);
    border: 1px solid #222;
    padding: 12px;
    transition: transform .2s ease;
}

.sidebar-related-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #000;
}

.sidebar-related-date {
    font-size: .8rem;
	color: var(--wytbeat-white);
    opacity: .7;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sidebar-related-title a {
    color: var(--wytbeat-white);
    text-decoration: none;
    font-weight: 700;
}

.sidebar-related-title a:hover {
    color: var(--wytbeat-pink);
}

/* =========================
   GENERIC SIDEBAR WIDGETS
========================= */

.inside-right-sidebar .widget {
    background: var(--wytbeat-panel);
    border: 1px solid #222;
    box-shadow: 6px 6px 0 #000;
    padding: 20px;
    margin-bottom: 20px;
}

.inside-right-sidebar .widget h2,
.inside-right-sidebar .widget h3 {
    font-size: 1.5rem;
    color: var(--wytbeat-pink);
    margin-bottom: 10px;
}

/* =========================
   RELATED ACTS
========================= */

.wytbeat-related-acts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wytbeat-related-acts .related-title {
    font-size: 1.5rem;
    color: var(--wytbeat-pink);
    margin-bottom: 10px;
}

.related-act {
    display: flex;
    gap: 12px;
    background: #111;
    color: var(--wytbeat-white);
    text-decoration: none;
    padding: 10px;
    border: 1px solid #222;
    transition: transform .2s ease;
}

.related-act:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #000;
}

.related-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.related-time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.related-name {
	font-weight: 700;
}

.act .wp-block-cover {
    min-height: 24em;
}


/* =========================
   NEWS OVERVIEW - WYTBEAT STYLE
========================= */

.blog .site-main,
.archive .site-main {
    background:var(--wytbeat-white);
    color:var(--wytbeat-black);
}

body.category-nieuws .site-main article .inside-article {
    color: var(--wytbeat-white);
    background-color: var(--wytbeat-black);
}

.blog .site-main article,
.archive .site-main article {
    background:var(--wytbeat-panel);
    border:var(--wytbeat-border);
    box-shadow:var(--wytbeat-shadow);
}

/* page title */
.blog .page-title,
.archive .page-title {
    color: var(--wytbeat-black);
    font-size: 3rem;
    font-weight: 900;
    margin: 40px 0;
}

/* article card */
.blog .site-main article,
.archive .site-main article {
    background: #111;
    margin: 0 0 30px 0;
    border: 1px solid #222;
    box-shadow: 8px 8px 0 #000;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

/* hover effect */
.blog .site-main article:hover,
.archive .site-main article:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0 var(--wytbeat-pink);
}

/* inner spacing */
.blog .inside-article,
.archive .inside-article {
    padding: 0;
}

/* featured image wrapper */
.blog .post-image,
.archive .post-image {
    max-height: 320px;
    overflow: hidden;
}

/* image fix (kill giant visuals) */
.blog .post-image img,
.archive .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .4s ease;
}

/* hover zoom */
.blog article:hover .post-image img,
.archive article:hover .post-image img {
    transform: scale(1.05);
}

/* title */
.blog .entry-title,
.archive .entry-title {
    font-size: 2rem;
    margin: 20px;
    line-height: 1.1;
}

.blog .entry-title a,
.archive .entry-title a {
    color: var(--wytbeat-pink);
    text-decoration: none;
}

/* meta */
.blog .entry-meta,
.archive .entry-meta {
    margin: 0 20px;
    font-size: .9rem;
    opacity: .7;
}

/* excerpt */
.blog .entry-summary,
.archive .entry-summary {
    margin: 20px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .85;
}

/* read more */
.blog .read-more,
.archive .read-more {
    color: var(--wytbeat-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* remove WP default spacing chaos */
.blog .site-main > article,
.archive .site-main > article {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   RESPONSIVE FIXES
========================= */

@media (max-width: 1024px) {

    /* =========================
       HERO FIXES
    ========================= */
	.wytbeat-hero-title {
		margin-top: 2em;
	}
    .hero-container .wp-block-column {
        flex-basis: 100% !important;
/*         margin-left: 0 !important; */
    }

    .hero-slogan {
        padding-top: 0;
		margin-left:1em!important;
    }

    .hero-image {
        display: none;
    }

    .site-logo {
        background: var(--wytbeat-white);
        border-bottom: 0;
    }

    /* =========================
       REMOVE WP GRID CONFLICTS
    ========================= */
    .lineup-block .columns-3 {
        display: block;
    }

    .site-main .wp-block-group__inner-container {
        padding: 0 !important;
    }

    /* =========================
       CAROUSEL CORE (ONLY ONE VERSION)
    ========================= */
    .lineup-block {
        position: relative;
        max-width: 100%;
    }

    .lineup-block ul.wp-block-post-template {
        display: flex !important;
        flex-wrap: nowrap !important;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;

        list-style: none;

        scrollbar-width: none;
    }

    .lineup-block ul.wp-block-post-template::-webkit-scrollbar {
        display: none;
    }

    /* =========================
       CARD = EXACT VIEWPORT SLIDE
    ========================= */
    .lineup-block ul.wp-block-post-template > li {
        flex: 0 0 100%;
        max-width: 100%;

        scroll-snap-align: start;

        position: relative;

        height: 30vh; /* BELANGRIJK: stabiele hoogte */
        box-sizing: border-box;
    }

    /* =========================
       COVER FIX (IMAGE BEHAVIOUR)
    ========================= */
    .lineup-block .wp-block-cover {
        height: 100%;
        width: 100%;

        min-height: unset !important;
        overflow: hidden;

        position: relative;
    }

    .lineup-block .wp-block-cover__image-background {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    /* =========================
       OPTIONAL VISUAL TWEAK
    ========================= */
    .lineup-block ul.wp-block-post-template > li {
        padding: 0;
    }

    /* =========================
       NAV OVERLAY (if JS enabled)
    ========================= */
    .lineup-carousel-nav {
        position: absolute;
        inset: 0;

        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 0 12px;

        z-index: 50;
        pointer-events: none;
    }

    .lineup-carousel-nav button {
        pointer-events: all;

        width: 40px;
        height: 40px;

        border: none;
        cursor: pointer;

        background: rgba(255, 46, 147, 0.9);
        color: #000;

        font-size: 22px;
        font-weight: 900;
        padding: 2px 6px;

        box-shadow: 6px 6px 0 #000;
    }

    .lineup-carousel-nav button:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0 #000;
    }
}

@media (max-width: 781px) {
	.wytbeat-hero-title {
		margin-top: 0.4em;
	}
	
/* 	.act-block-info{
		padding: 0 2em!important;
	} */
}