section#banner {
    margin-top: 100px;
    padding: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    aspect-ratio: auto;
    min-height: 520px;
    height: 65vh;
    max-height: 900px;
    position: relative;
    overflow: hidden;
    background: #650000;
}

#banner .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

#banner .slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(92deg, rgba(35, 0, 0, 0.78) 0%, rgba(88, 0, 0, 0.4) 34%, rgba(145, 0, 0, 0.14) 62%, rgba(145, 0, 0, 0.03) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding-left: clamp(32px, 7vw, 108px);
    padding-right: clamp(16px, 2vw, 30px);
    max-width: clamp(540px, 50vw, 760px);
}

.slide-content h2 {
    font-size: clamp(1.3rem, 2.7vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    font-weight: 800;
    margin: 0 0 clamp(22px, 2.5vw, 38px);
    text-wrap: balance;
}

.slide-content p {
    font-size: clamp(0.98rem, 1.16vw, 1.34rem);
    line-height: 1.48;
    margin: 0;
    max-width: 30ch;
}

.slide-foreground {
    position: absolute;
    right: clamp(-2%, -1.2vw, -0.6%);
    bottom: -12%;
    height: 112%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.22));
}

.slide2-person {
    height: 132%;
    right: clamp(-5.8%, -2.8vw, -1.6%);
    bottom: -22%;
}

.slide4-person {
    height: 134%;
    right: clamp(3.8%, 6.5vw, 9.2%);
    bottom: -20%;
}

.banner-slide-actions {
    margin-top: clamp(30px, 3vw, 48px);
}

.countdown {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 0.75vw, 12px);
}

.banner-agenda-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

/* Solo: ten sam „slot” co 4 boksy timera */
.banner-agenda-btn--solo {
    min-height: clamp(54px, 4.5vw, 80px);
    padding: 0 clamp(22px, 2.5vw, 36px);
    font-size: clamp(0.78rem, 0.95vw, 1rem);
}

.banner-agenda-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.time-box {
    width: clamp(54px, 4.5vw, 80px);
    height: clamp(54px, 4.5vw, 80px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.time-box span {
    font-size: clamp(1rem, 1.6vw, 1.8rem);
    font-weight: 700;
    line-height: 1;
}

.time-box p {
    margin-top: 4px;
    font-size: clamp(0.55rem, 0.75vw, 0.8rem);
    text-transform: uppercase;
}

#banner .navigation {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 6px;
}

#banner .dot {
    width: 16px;
    height: 4px;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

#banner .dot.active {
    background: #fff;
}

#banner .banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.14);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease;
}

#banner .banner-arrow:hover {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.7);
}

#banner .banner-arrow-prev {
    left: 14px;
}

#banner .banner-arrow-next {
    right: 14px;
}

@media (max-width: 900px) {
    section#banner {
        margin-top: 90px;
    }

    .banner-slider {
        width: 100%;
        min-height: 560px;
        max-height: none;
        aspect-ratio: auto;
        height: 78vh;
    }

    .slide-content {
        max-width: 88%;
        padding-left: clamp(20px, 5.2vw, 48px);
        padding-top: clamp(30px, 6vh, 56px);
    }

    .slide-content h2 {
        font-size: clamp(1.28rem, 3.6vw, 2.05rem);
        line-height: 1.12;
    }

    .slide-content p {
        max-width: 32ch;
    }

    .slide-foreground {
        height: 78%;
        right: -10%;
        bottom: -10%;
    }

    .slide2-person {
        height: 98%;
        right: -12%;
        bottom: -16%;
    }

    .slide4-person {
        height: 102%;
        right: -4%;
        bottom: -15%;
    }

    #banner .banner-arrow {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 600px) {
    .banner-slider {
        min-height: 620px;
        height: 100vh;
        max-height: none;
    }

    #banner .slide {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .slide-content {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 18px;
        padding-top: 22px;
    }

    .countdown {
        max-width: 260px;
    }

    .banner-agenda-btn--solo {
        max-width: 260px;
    }

    .slide-foreground {
        position: absolute;
        bottom: 0;
        right: 2%;
        height: clamp(190px, 45vw, 280px);
        max-width: none;
    }

    .slide2-person {
        right: 2%;
        bottom: 0;
    }

    .slide4-person {
        right: 5%;
        bottom: -1%;
    }

    #banner .banner-arrow {
        display: none;
    }
}

.home-2026 #dostawcy {
    padding-top: 52px;
}

.home-2026 .all_vendors {
    font-size: 1.1rem;
    padding: 14px 34px;
    border-radius: 0;
    background: #e30613;
    font-weight: 600;
}

.home-2026 .all_vendors:hover {
    background: #b80812;
}

#kdd-intro-2026 {
    position: relative;
    isolation: isolate;
    margin-top: 0;
    padding: clamp(84px, 9vw, 142px) 5vw clamp(72px, 7.5vw, 122px);
    background: radial-gradient(circle at 88% 8%, rgba(227, 6, 19, 0.13), rgba(227, 6, 19, 0) 44%), #fff;
}

.intro-2026-wrap {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 40px);
    align-items: start;
    margin-top: 0;
}

.intro-2026-content {
    grid-column: 1 / span 6;
}

.intro-2026-content h1 {
    margin: 0 0 clamp(26px, 3.2vw, 44px);
    font-size: clamp(1.9rem, 2.7vw, 2.7rem);
    line-height: 1.18;
    max-width: 18ch;
    letter-spacing: -0.01em;
}

.intro-2026-top {
    margin-bottom: 0;
}

.intro-lead {
    margin: 0 0 clamp(34px, 4vw, 54px);
    color: #151515;
    font-size: clamp(1.08rem, 1.28vw, 1.36rem);
    line-height: 1.75;
    max-width: 64ch;
}

.intro-image {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
    position: relative;
}

.intro-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(98, 0, 0, 0.08), rgba(227, 6, 19, 0.06));
}

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

.intro-image-wide {
    margin-bottom: clamp(38px, 4.8vw, 68px);
}

.intro-image-wide img {
    aspect-ratio: 16 / 8;
}

.intro-2026-content strong {
    font-weight: 700;
    color: #111;
}

.intro-2026-content p,
.intro-final {
    margin: 0 0 clamp(28px, 3vw, 42px);
    color: #202020;
    font-size: clamp(1rem, 1.04vw, 1.12rem);
    line-height: 1.82;
    max-width: min(68ch, 100%);
}

.intro-final {
    margin-top: clamp(34px, 4.4vw, 62px);
    margin-bottom: 0;
    max-width: min(74ch, 100%);
}

.intro-agenda-wrap {
    margin: clamp(28px, 3vw, 40px) 0 0;
}

.intro-agenda-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #e30613;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    border: 0;
    transition: background-color 160ms ease, transform 160ms ease;
}

.intro-agenda-btn:hover {
    background: #b80812;
    color: #fff;
    transform: translateY(-1px);
}

.intro-2026-visuals {
    grid-column: 7 / span 6;
    display: grid;
    gap: clamp(24px, 2.6vw, 34px);
    align-content: start;
}

.intro-image-main img {
    aspect-ratio: 16 / 10;
}

.intro-visual-collage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(14px, 1.6vw, 22px);
    align-items: start;
}

.intro-image-secondary img {
    aspect-ratio: 4 / 5;
}

.intro-image-tertiary img {
    aspect-ratio: 1 / 1;
}

.intro-visuals-icons {
    display: grid;
    gap: 10px;
    background: transparent;
    border-radius: 0;
}

.intro-icon-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0;
    border-radius: 0;
    background: linear-gradient(100deg, rgba(190, 16, 27, 0.024), rgba(190, 16, 27, 0.008));
    box-shadow: none;
    border-bottom: 1px solid rgba(140, 12, 24, 0.12);
}

.intro-icon-row:nth-child(even) {
    background: linear-gradient(100deg, rgba(190, 16, 27, 0.016), rgba(190, 16, 27, 0.004));
}

.intro-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    color: #cc1f2a;
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.intro-icon i {
    font-size: 1.42rem;
    line-height: 1;
}

.intro-icon-copy h2 {
    margin: 0 0 6px;
    font-size: clamp(0.96rem, 1.06vw, 1.08rem);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1a1a;
}

.intro-icon-copy p {
    margin: 0;
    color: #343434;
    font-size: clamp(0.9rem, 0.96vw, 0.98rem);
    line-height: 1.55;
}

.home-2026 #dostawcy {
    padding-top: clamp(46px, 6vw, 96px);
    background: radial-gradient(circle at 88% 8%, rgba(227, 6, 19, 0.13), rgba(227, 6, 19, 0) 44%), #fff;
}

.home-2026 #dostawcy h1 {
    color: #1a1a1a;
}

.home-2026 footer {
    background: linear-gradient(122deg, #1b032f 0%, #30003a 42%, #520021 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-2026 .menu-footer-header,
.home-2026 .tech_support {
    color: rgba(255, 255, 255, 0.9);
}

.home-2026 .menu-footer li,
.home-2026 .footer_left,
.home-2026 .footer_right {
    color: rgba(255, 255, 255, 0.86);
}

.home-2026 .footer-socials a {
    color: rgba(255, 255, 255, 0.88);
}

.home-2026 .footer-socials a:hover {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .intro-2026-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .intro-2026-content,
    .intro-2026-visuals {
        grid-column: auto;
    }

    .intro-2026-visuals {
        gap: 22px;
    }

    .intro-image-main,
    .intro-image-secondary,
    .intro-image-tertiary {
        max-width: 760px;
    }

    .intro-visual-collage {
        grid-template-columns: 1fr;
    }

    .intro-image-secondary img,
    .intro-image-secondary img {
        aspect-ratio: 4 / 5;
    }

    .intro-image-tertiary img {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 760px) {
    #kdd-intro-2026 {
        padding-top: 58px;
    }

    .intro-2026-content h1 {
        max-width: 18ch;
        line-height: 1.16;
    }

    .intro-icon {
        width: 30px;
        min-width: 30px;
    }

    .intro-icon i {
        font-size: 1.25rem;
    }

    .intro-2026-visuals {
        gap: 18px;
    }

    .intro-visuals-icons {
        gap: 8px;
    }
}

@media (max-width: 600px) {
    #banner .slide {
        align-items: flex-start;
    }

    #kdd-intro-2026 {
        padding-top: 54px;
    }

    .intro-2026-content {
        max-width: 100%;
    }

    .intro-2026-content h1 {
        max-width: 100%;
    }
}

/* Newsroom 2026 – czerwono-czarny gradient „ciapkowaty” */
.home-2026 #newsroom,
.newsroom-page #newsroom_sub,
.newsroom-page #newsroom-post {
    --kdd-red-deep: #2e0102;
    --kdd-red-dark: #7b0707;
    --kdd-red-mid: #a10001;
    --kdd-red-bright: #d50404;
    --kdd-black: #000000;
    --kdd-tag-gradient: linear-gradient(132deg, #d50404 0%, #a10001 32%, #7b0707 58%, #2e0102 82%, #000000 100%);
    --kdd-speckled-gradient:
        radial-gradient(ellipse 90% 62% at 8% 14%, rgba(213, 4, 4, 0.72) 0%, transparent 54%),
        radial-gradient(ellipse 72% 48% at 94% 10%, rgba(161, 0, 1, 0.58) 0%, transparent 50%),
        radial-gradient(ellipse 100% 78% at 82% 88%, rgba(123, 7, 7, 0.62) 0%, transparent 58%),
        radial-gradient(ellipse 55% 42% at 22% 72%, rgba(46, 1, 2, 0.95) 0%, transparent 52%),
        radial-gradient(circle at 48% 38%, rgba(213, 4, 4, 0.28) 0%, transparent 32%),
        radial-gradient(circle at 68% 52%, rgba(161, 0, 1, 0.22) 0%, transparent 26%),
        radial-gradient(circle at 32% 58%, rgba(123, 7, 7, 0.32) 0%, transparent 30%),
        radial-gradient(circle at 78% 28%, rgba(46, 1, 2, 0.75) 0%, transparent 34%),
        radial-gradient(circle at 14% 42%, rgba(213, 4, 4, 0.18) 0%, transparent 24%),
        linear-gradient(148deg, #2e0102 0%, #000000 26%, #7b0707 48%, #a10001 62%, #000000 100%);
    position: relative;
    overflow: hidden;
    background-color: var(--kdd-black);
    background-image: var(--kdd-speckled-gradient);
    background-size: cover;
    background-position: center;
}

.home-2026 #newsroom {
    padding: calc(8vw - 3rem) 0 80px;
}

.newsroom-page #newsroom_sub {
    margin-top: 0;
    padding: 100px 20px 80px;
}

.newsroom-page #newsroom-post {
    margin-top: 0;
    padding: 100px 20px 80px;
}

.newsroom-page #newsroom-post .newsroom-single {
    margin-top: 0;
}

.home-2026 #newsroom::before,
.newsroom-page #newsroom_sub::before,
.newsroom-page #newsroom-post::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.42;
    background-image:
        radial-gradient(ellipse 28% 18% at 62% 34%, rgba(0, 0, 0, 0.55) 0%, transparent 100%),
        radial-gradient(ellipse 22% 16% at 28% 62%, rgba(0, 0, 0, 0.45) 0%, transparent 100%),
        radial-gradient(ellipse 18% 22% at 84% 58%, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.home-2026 #newsroom .container,
.newsroom-page #newsroom_sub .container,
.newsroom-page #newsroom-post .newsroom-single {
    position: relative;
    z-index: 1;
}

.newsroom-page .newsroomsquare {
    display: none !important;
}

body.newsroom-page {
    background: #000;
}

.home-2026 #newsroom h1 {
    color: #fff;
    margin-bottom: 32px;
}

.home-2026 .nwsrm_image_square {
    padding-bottom: 100%;
}

/* Pojedynczy news – hero ze zdjęciem + rozmyte wypełnienie boków */
.newsroom-page .newsroom-single {
    --nwsrm-hero-bleed: 40px;
}

.newsroom-page .nwsrm_hero {
    position: relative;
    width: calc(100% + (var(--nwsrm-hero-bleed) * 2));
    margin: calc(var(--nwsrm-hero-bleed) * -1) calc(var(--nwsrm-hero-bleed) * -1) 28px;
    /* Połowa wysokości kwadratu – rozmycie wypełnia boki, nie górę/dół */
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #0a0a0a;
}

.newsroom-page .nwsrm_hero__blur {
    position: absolute;
    inset: -20% -45%;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(36px) saturate(1.15) brightness(0.7);
    transform: scale(1.12);
}

.newsroom-page .nwsrm_hero__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsroom-page .nwsrm_hero__figure img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 810px) {
    .newsroom-page .newsroom-single {
        --nwsrm-hero-bleed: 30px;
    }
}

@media (max-width: 520px) {
    .newsroom-page .newsroom-single {
        --nwsrm-hero-bleed: 20px;
    }
}

.home-2026 #newsroom .news-preview-post,
.home-2026 #newsroom_sub .newsroom-post {
    width: calc(33.333% - 20px);
}

@media (max-width: 1030px) {
    .home-2026 #newsroom .news-preview-post,
    .home-2026 #newsroom_sub .newsroom-post {
        width: calc(50% - 10px);
    }
}

@media (max-width: 680px) {
    .home-2026 #newsroom .news-preview-post,
    .home-2026 #newsroom_sub .newsroom-post {
        width: 100%;
    }
}

/* Newsroom 2026 – typografia (bez granatu) */
.home-2026 #newsroom .news-preview-post,
.home-2026 #newsroom_sub .newsroom-post,
.newsroom-page .newsroom-post {
    color: #1a1a1a;
}

.home-2026 #newsroom .news-preview-post h4,
.home-2026 #newsroom .news-preview-post a,
.home-2026 #newsroom_sub .newsroom-post h3,
.home-2026 #newsroom_sub .newsroom-post h3 a,
.newsroom-page .newsroom-post h3,
.newsroom-page .newsroom-post h3 a {
    color: #1a1a1a;
    border-bottom-color: rgba(0, 0, 0, 0.14);
}

.home-2026 #newsroom .news-preview-post p,
.home-2026 #newsroom_sub .newsroom-post p,
.newsroom-page .newsroom-post p {
    color: #1a1a1a;
}

.home-2026 #newsroom .read-more,
.home-2026 #newsroom_sub .read-more,
.newsroom-page .read-more {
    color: #1a1a1a;
}

.home-2026 #newsroom .meta > span,
.home-2026 #newsroom_sub .newsroom-meta > span,
.newsroom-page .newsroom-meta > span {
    color: #4a4a4a;
}

.home-2026 #newsroom .tag,
.home-2026 #newsroom_sub .tag,
.newsroom-page #newsroom_sub .tag,
.newsroom-page .newsroom-post .tag,
.newsroom-page .newsroom-single .tag {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background-clip: border-box;
    border: none;
    background-color: #2e0102;
    background-image: var(--kdd-tag-gradient);
    background-size: 100% 100%;
    background-position: center;
    padding: 4px 9px;
    line-height: 1.3;
    display: inline-block;
}

.home-2026 #newsroom .newsroom-link button.all_news:hover,
.newsroom-page .newsroom-link button.all_news:hover,
.home-2026 #newsroom_sub .newsroom-link button.all_news:hover {
    color: #1a1a1a;
    background: #fff;
    border-color: #fff;
}

.newsroom-page .newsroom-single {
    color: #1a1a1a;
}

.newsroom-page .newsroom-single h1,
.newsroom-page .newsroom-single .newsroom-content,
.newsroom-page .newsroom-single .newsroom-content p,
.newsroom-page .newsroom-single .newsroom-content li,
.newsroom-page .newsroom-single .comments,
.newsroom-page .newsroom-single .comment p {
    color: #1a1a1a;
}

/* Typografia newsroom 2026 */
.home-2026 #newsroom .newsroom-excerpt,
.home-2026 #newsroom_sub .newsroom-excerpt,
.newsroom-page .newsroom-post .newsroom-excerpt {
    font-size: 0.92rem;
    line-height: 1.68;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
}

.newsroom-page .newsroom-lead {
    font-size: 1.08rem;
    line-height: 1.78;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 1.65rem;
}

.newsroom-page .newsroom-content {
    font-size: 0.95rem;
    line-height: 1.82;
    font-weight: 400;
}

.newsroom-page .newsroom-content p {
    margin: 0 0 1.15em;
}

.newsroom-page .newsroom-content p:last-child {
    margin-bottom: 0;
}

.newsroom-page .newsroom-content h2 {
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 600;
    margin: 1.65rem 0 0.75rem;
    color: #111;
}

.newsroom-page .newsroom-content h2:first-child {
    margin-top: 0;
}

.newsroom-page .newsroom-single .newsroom-content a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
}

.newsroom-page .newsroom-single .newsroom-content h2,
.newsroom-page .newsroom-single .newsroom-content b,
.newsroom-page .newsroom-single .newsroom-content strong {
    color: #111;
}

.newsroom-page .newsroom-single .newsroom-content ul li::before {
    background: #7b0707;
}

.newsroom-page .newsroom-inline-photo {
    margin: 1.5rem auto;
    max-width: min(100%, 520px);
}

.newsroom-page .newsroom-inline-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.newsroom-page .newsroom-inline-photo--portrait {
    max-width: min(100%, 400px);
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
}

.newsroom-page #newsroom_sub h1 {
    color: #fff;
}
