/* ============================================================================
   KLAAS PUUL - SINGLE EVENT / ARTICLE PAGE
   Mobile-first approach. Desktop breakpoint: 1024px.
   Fonts: "sofia-pro" (headings), "acumin-pro" (body)
   Primary: #0D1C38, Accent: #6BABD3, Light bg: #EBF1F8
   ============================================================================ */

/* ============================================================================
   BREADCRUMBS (override for single event)
   ============================================================================ */
.single-kp_evenement .kp-pd-breadcrumbs {
    padding-top: 16px;
    padding-bottom: 16px;
}

/* ============================================================================
   ACCENT BAR (under breadcrumbs)
   ============================================================================ */
.kp-se-accent-bar {
    position: relative;
    width: 100%;
    height: 4px;
    overflow: hidden;
}
.kp-se-accent-bar__full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #6babd3;
}
.kp-se-accent-bar__fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 4px;
    background: linear-gradient(to left, rgba(107,171,211,0.25), rgba(107,171,211,0.25)), #ffffff;
}

/* ============================================================================
   HERO SECTION
   Mobile: padding 64px 16px 40px 16px
   Desktop: padding 64px 100px 64px 309px
   ============================================================================ */
.kp-se-hero {
    background: #ebf1f8;
    padding: 64px 16px 40px 16px;
    width: 100%;
}
.kp-se-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

/* Back link */
.kp-se-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}
.kp-se-hero__back:hover {
    opacity: 0.7;
}
.kp-se-hero__back svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Category badge pill */
.kp-se-hero__badge {
    display: inline-block;
    border-radius: 52px;
    border: 1px solid #6babd3;
    padding: 6px 10px 4px 10px;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: #6babd3;
    background: rgba(107, 171, 211, 0.15);
}

/* Content block */
.kp-se-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}
.kp-se-hero__titles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Title: mobile H5 (24px), desktop H3 (40px) */
.kp-se-hero__title {
    color: #1d1d1f;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
}

/* Subtitle */
.kp-se-hero__subtitle {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}

/* Meta row */
.kp-se-hero__meta {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}
.kp-se-hero__meta-item {
    color: rgba(13, 28, 56, 0.5);
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
}
.kp-se-hero__meta-sep {
    color: rgba(13, 28, 56, 0.5);
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
}

/* ============================================================================
   ARTICLE + SIDEBAR BODY
   Mobile: single column, full width
   Desktop: two columns (828px article + 390px sidebar, gap 80px)
   ============================================================================ */
.kp-se-body {
    width: 100%;
    background: #ffffff;
}
.kp-se-body__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* ============================================================================
   ARTICLE CONTENT
   Mobile: padding 40px 16px 64px 16px
   Desktop: width 828px, padding 64px 0 0 0
   ============================================================================ */
.kp-se-article {
    padding: 40px 16px 64px 16px;
    width: 100%;
}

/* Article content typography */
.kp-se-article__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/* Section headings (H2 in content) */
.kp-se-article__content h2,
.kp-se-article__content h3,
.kp-se-article__content h4 {
    color: #0d1c38;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-weight: 400;
    margin: 0;
}
/* H2 sections get extra space above (except first child) */
.kp-se-article__content h2 + * { margin-top: 0; }
.kp-se-article__content * + h2 { margin-top: 16px; }
.kp-se-article__content h2 {
    font-size: 24px;
    line-height: 140%;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(13, 28, 56, 0.25);
    margin-bottom: 0;
}
.kp-se-article__content h3 {
    font-size: 20px;
    line-height: 150%;
}
.kp-se-article__content h4 {
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
    font-family: var(--font-main, "acumin-pro", sans-serif);
}

/* Body text */
.kp-se-article__content p {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}

/* Subheadings within content */
.kp-se-article__content h5,
.kp-se-article__content h6 {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
    margin: 0;
}

/* Lists */
.kp-se-article__content ul,
.kp-se-article__content ol {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    padding-left: 24px;
    margin: 0;
}
.kp-se-article__content li {
    margin-bottom: 8px;
}
.kp-se-article__content li:last-child {
    margin-bottom: 0;
}

/* Images in article */
.kp-se-article__content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Links */
.kp-se-article__content a {
    color: #6babd3;
    text-decoration: underline;
}
.kp-se-article__content a:hover {
    color: #0d1c38;
}

/* Blockquotes */
.kp-se-article__content blockquote {
    border-left: 3px solid #6babd3;
    padding-left: 24px;
    margin: 0;
    font-style: italic;
    color: rgba(13, 28, 56, 0.75);
}

/* ============================================================================
   SIDEBAR
   Mobile: full width, padding 0 16px 16px 16px
   Desktop: width 390px, gap 24px between items
   ============================================================================ */
.kp-se-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px 16px 16px;
    width: 100%;
}

/* ============================================================================
   TABLE OF CONTENTS
   bg #EBF1F8, padding 24px, gap 24px
   Hidden on mobile (TOC only shows on desktop)
   ============================================================================ */
.kp-se-toc {
    background: #ebf1f8;
    padding: 24px;
    display: none; /* Hidden on mobile, shown on desktop */
    flex-direction: column;
    gap: 24px;
}
.kp-se-toc__title {
    color: #0d1c38;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
}
.kp-se-toc__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.kp-se-toc__item {
    display: flex;
    align-items: center;
    padding: 12px 8px 8px 8px;
    height: 40px;
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    text-decoration: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}
.kp-se-toc__item:hover {
    background: rgba(13, 28, 56, 0.05);
}
.kp-se-toc__item.is-active {
    background: #0d1c38;
    color: #ffffff;
}

/* ============================================================================
   SIDEBAR CTA (dark blue box)
   padding 24px, gap 24px
   ============================================================================ */
.kp-se-sidebar-cta,
.kp-se-sidebar-download {
    background: #0d1c38;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

/* Product image in CTA */
.kp-se-sidebar-cta__image,
.kp-se-sidebar-download__image {
    position: relative;
    width: 111px;
    height: 111px;
    flex-shrink: 0;
    overflow: hidden;
}
.kp-se-sidebar-cta__image img,
.kp-se-sidebar-download__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kp-se-sidebar-cta__shape {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}
.kp-se-sidebar-cta__shape--tl { top: 0; left: 0; }
.kp-se-sidebar-cta__shape--tr { top: 0; right: 0; }
.kp-se-sidebar-cta__shape--bl { bottom: 0; left: 0; }
.kp-se-sidebar-cta__shape--br { bottom: 0; right: 0; }

/* CTA text */
.kp-se-sidebar-cta__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kp-se-sidebar-cta__title {
    color: #ffffff;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
}
.kp-se-sidebar-cta__desc {
    color: #ffffff;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}

/* Download CTA variant — image takes full width */
.kp-se-sidebar-download {
    gap: 32px;
}
.kp-se-sidebar-download__image {
    width: 100%;
    height: 207px;
}
.kp-se-sidebar-download .kp-se-sidebar-cta__desc {
    font-size: 16px;
}

/* ============================================================================
   SIDEBAR — RELATED ARTICLES
   border, padding 24px, links with chevron + underline
   ============================================================================ */
.kp-se-sidebar-related {
    background: #ffffff;
    border: 1px solid rgba(13, 28, 56, 0.25);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.kp-se-sidebar-related__title {
    color: #0d1c38;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
}
.kp-se-sidebar-related__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.kp-se-sidebar-related__item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 4px 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.kp-se-sidebar-related__item:hover {
    opacity: 0.7;
}
.kp-se-sidebar-related__chevron {
    flex-shrink: 0;
    width: 8px;
    height: 18px;
    color: #0d1c38;
    margin-top: 3px;
}
.kp-se-sidebar-related__link {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    text-decoration: underline;
    flex: 1;
}

/* ============================================================================
   FULL-WIDTH CTA BANNER
   Mobile: padding 40px 16px
   Desktop: padding 160px 200px, inner 1520px
   ============================================================================ */
/* Hidden on mobile, shown on desktop */
.single-kp_evenement .kp-pd-cta-banner.cta-uitgebreid {
    display: none;
}

.kp-se-fw-cta {
    background: #ffffff;
    padding: 40px 16px;
    width: 100%;
}
.kp-se-fw-cta__inner {
    max-width: 1520px;
    margin: 0 auto;
}
.kp-se-fw-cta__bar {
    background: #0d1c38;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
}
.kp-se-fw-cta__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    flex: 1;
}
.kp-se-fw-cta__title {
    color: #ffffff;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
}
.kp-se-fw-cta__text {
    color: #ffffff;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}
.kp-se-fw-cta__image {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    flex-shrink: 0;
    overflow: hidden;
}
.kp-se-fw-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================================
   RELATED ARTICLES SECTION (full-width grid)
   Section label + 3 news cards
   ============================================================================ */
.kp-se-related-section {
    background: #ffffff;
    width: 100%;
    padding: 0 16px 64px 16px;
}

/* Section label row */
.kp-se-related-section__label {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    border-top: 1px solid rgba(13, 28, 56, 0.25);
    padding: 24px 0;
}
.kp-se-related-section__label-inner {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex: 1;
    width: 100%;
}
.kp-se-related-section__label-text {
    color: #0d1c38;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 150%;
    font-weight: 400;
    flex: 1;
}
.kp-se-related-section__more-btn {
    display: none; /* Show only on desktop */
}

/* Cards grid */
.kp-se-related-section__grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.kp-se-related-section__grid::-webkit-scrollbar {
    display: none;
}
.kp-se-related-section__grid .kp-article-card {
    min-width: 374px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Mobile "Ontdek meer" button below cards */
.kp-se-related-section .kp-se-related-section__mobile-btn {
    display: block;
    margin-top: 24px;
}

/* ============================================================================
   NEWSLETTER SECTION
   ============================================================================ */
.kp-se-newsletter {
    width: 100%;
}
.kp-se-newsletter__label {
    border-top: 1px solid rgba(13, 28, 56, 0.25);
    padding: 24px 16px;
}
.kp-se-newsletter__content {
    background: #0d1c38;
    padding: 64px 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}
.kp-se-newsletter__title {
    color: #ffffff;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 48px;
    line-height: 120%;
    font-weight: 400;
    margin: 0;
}
.kp-se-newsletter__desc {
    color: #ffffff;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 24px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}
.kp-se-newsletter__form {
    width: 100%;
    max-width: 600px;
}
.kp-se-newsletter__form .kp-newsletter__input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.kp-se-newsletter__form .kp-newsletter__input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 24px;
    color: #ffffff;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    height: 56px;
    box-sizing: border-box;
    width: 100%;
}
.kp-se-newsletter__form .kp-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   BODY CLASS — kp-solid-header for single event
   ============================================================================ */

/* ============================================================================
   RECIPE — META CARDS (mobile only)
   Three info cards: bereidingstijd, personen, moeilijkheid
   ============================================================================ */
.kp-se-recipe-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    padding: 0 16px;
    width: 100%;
}
.kp-se-recipe-meta--desktop {
    display: none;
    padding: 0;
}
.kp-se-recipe-meta__card {
    border: 1px solid rgba(13, 28, 56, 0.25);
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.kp-se-recipe-meta__icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}
.kp-se-recipe-meta__text {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}
.kp-se-recipe-meta__value {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
}
.kp-se-recipe-meta__label {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}

/* ============================================================================
   RECIPE — INGREDIENTS
   Background: #ebf1f8, padding 24px, gap 24px
   Mobile: shown before article. Desktop: shown in sidebar.
   ============================================================================ */
.kp-se-recipe-ingredients {
    background: #ebf1f8;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.kp-se-recipe-ingredients--mobile {
    margin: 0 16px;
}
.kp-se-recipe-ingredients--desktop {
    display: none; /* Hidden on mobile, shown on desktop */
}
.kp-se-recipe-ingredients__title {
    color: #0d1c38;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
}
.kp-se-recipe-ingredients__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.kp-se-recipe-ingredients__subheading {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
    margin: 0;
}
.kp-se-recipe-ingredients__items {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.kp-se-recipe-ingredients__items li {
    margin-bottom: 4px;
}
.kp-se-recipe-ingredients__items li:last-child {
    margin-bottom: 0;
}

/* ============================================================================
   RECIPE — NUMBERED INSTRUCTION STEPS
   Number badge: 32x32, bg #6babd3, border-radius 50px
   ============================================================================ */
.kp-se-recipe-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}
.kp-se-recipe-steps__title {
    color: #0d1c38;
    font-family: var(--font-heading, "sofia-pro", sans-serif);
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    margin: 0;
}
.kp-se-recipe-steps__divider {
    border-top: 1px solid rgba(13, 28, 56, 0.25);
}
.kp-se-recipe-steps__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.kp-se-recipe-steps__row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}
.kp-se-recipe-steps__badge {
    background: #6babd3;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kp-se-recipe-steps__badge span {
    color: #ffffff;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
}
.kp-se-recipe-steps__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.kp-se-recipe-steps__step-title {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
    margin: 0;
}
.kp-se-recipe-steps__step-desc {
    color: #0d1c38;
    font-family: var(--font-main, "acumin-pro", sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}

/* ============================================================================
   DESKTOP STYLES (min-width: 1024px)
   ============================================================================ */
@media (min-width: 1024px) {

    /* Hero */
    .kp-se-hero {
        padding: 64px 100px 64px 309px;
    }
    .kp-se-hero__inner {
        gap: 50px;
        max-width: 820px;
    }
    .kp-se-hero__content {
        gap: 40px;
    }
    .kp-se-hero__title {
        font-size: 40px;
        line-height: 120%;
    }

    /* Article + Sidebar layout */
    .kp-se-body__inner {
        flex-direction: row;
        gap: 80px;
        justify-content: center;
        padding: 64px 0 0 0;
    }

    /* Article column */
    .kp-se-article {
        width: 828px;
        max-width: 828px;
        flex-shrink: 0;
        padding: 0;
    }

    /* Article headings */
    .kp-se-article__content h2 {
        font-size: 32px;
        line-height: 130%;
    }
    .kp-se-article__content h3 {
        font-size: 24px;
    }

    /* Sidebar */
    .kp-se-sidebar {
        width: 390px;
        max-width: 390px;
        flex-shrink: 0;
        padding: 0;
        position: sticky;
        top: 120px;
        align-self: flex-start;
    }

    /* Table of Contents */
    .kp-se-toc {
        display: flex;
    }

    /* Full-width CTA */
    .single-kp_evenement .kp-pd-cta-banner.cta-uitgebreid {
        display: block;
    }
    .kp-se-fw-cta {
        padding: 160px 200px;
    }
    .kp-se-fw-cta__bar {
        flex-direction: row;
        align-items: center;
        padding: 32px 64px;
        width: 100%;
    }
    .kp-se-fw-cta__title {
        font-size: 32px;
        line-height: 130%;
        text-align: center;
    }
    .kp-se-fw-cta__image {
        width: 400px;
        height: 242px;
        max-width: 400px;
        aspect-ratio: auto;
    }

    /* Related articles section */
    .kp-se-related-section {
        padding: 0 100px 160px 100px;
    }
    .kp-se-related-section__label {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 24px 0 40px 0;
    }
    .kp-se-related-section__more-btn {
        display: inline-flex;
    }
    .kp-se-related-section__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        overflow: visible;
    }
    .kp-se-related-section__grid .kp-article-card {
        min-width: unset;
    }

    /* ── Recipe: desktop overrides ── */

    /* Meta cards: hide mobile version, show desktop (sidebar) version */
    .kp-se-recipe-meta:not(.kp-se-recipe-meta--desktop) {
        display: none;
    }
    .kp-se-recipe-meta--desktop {
        display: flex;
    }

    /* Ingredients: hide mobile version, show desktop (sidebar) version */
    .kp-se-recipe-ingredients--mobile {
        display: none;
    }
    .kp-se-recipe-ingredients--desktop {
        display: flex;
    }

    /* Steps: wider gap on desktop */
    .kp-se-recipe-steps__row {
        gap: 24px;
    }
    .kp-se-recipe-steps__title {
        font-size: 32px;
        line-height: 130%;
    }

    /* Newsletter */
    .kp-se-newsletter__label {
        padding: 24px 100px;
    }
    .kp-se-newsletter__content {
        padding: 120px 100px;
        align-items: flex-start;
    }
    .kp-se-newsletter__form .kp-newsletter__input-group {
        flex-direction: row;
        gap: 0;
    }
    .kp-se-newsletter__form .kp-newsletter__input {
        flex: 1;
    }
}

/* ============================================================================
   MEDIUM DESKTOP (1025px - 1439px) — smaller padding
   ============================================================================ */
@media (min-width: 1024px) and (max-width: 1439px) {
    .kp-se-hero {
        padding: 48px 60px 48px 120px;
    }
    .kp-se-fw-cta {
        padding: 80px 60px;
    }
    .kp-se-related-section {
        padding: 0 60px 64px 60px;
    }
    .kp-se-newsletter__label {
        padding: 24px 60px;
    }
    .kp-se-newsletter__content {
        padding: 60px;
    }
}
