/* ============================================
   KOLBE SITE STYLES
   ============================================ */

/* --- HEADER (PHP header.php) --- */
.site-header {
    position: relative;
    z-index: 100;
    background: #fff;
}

.site-header .container {
    width: min(90%, var(--wp--custom--layout--content-size, 1200px));
    margin: 0 auto;
}

/* Header top bar */
.header-top {
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
}

.header-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.header-top__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.header-search-toggle:hover {
    color: #ef9127;
}

.header-top__films-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ef9127;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px rgba(239, 145, 39, 0.45);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-top__films-btn:hover {
    background: #d97808;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(239, 145, 39, 0.6);
}

/* Search panel */
.header-search {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.header-search.is-open {
    max-height: 80px;
    padding: 12px 0;
}

.header-search form {
    display: flex;
    gap: 8px;
}

.header-search input[type="search"],
.header-search input[name="s"] {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.header-search input[type="search"]:focus,
.header-search input[name="s"]:focus {
    border-color: #ef9127;
}

.header-search input[type="submit"],
.header-search button[type="submit"] {
    background: #ef9127;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.header-search input[type="submit"]:hover,
.header-search button[type="submit"]:hover {
    background: #e98e26;
}

/* Header main */
.header-main {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-main__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-header .site-logo img {
    height: 80px;
    width: auto;

    @media only screen and (max-width: 600px) {
        max-height: 60px;

    }
}

/* Burger */
.header-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
}

.header-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.header-burger span:nth-child(1) {
    top: 0;
}

.header-burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header-burger span:nth-child(3) {
    bottom: 0;
}

.header-burger.is-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.header-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.header-burger.is-open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Nav */
.site-header .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--nav-gap, 28px);
    align-items: center;
}

.site-header .nav-menu a {
    text-decoration: none;
    color: var(--nav-link-color, #212121);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-header .nav-menu a:hover {
    color: #ef9127;
}

.site-header .nav-menu .current-menu-item a {
    color: #ef9127;
}

/* --- Ostatni element nawigacji jako CTA "Wesprzyj film" --- */
.site-header .nav-menu > li:last-child > a {
    display: inline-block;
    background: #ef9127;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header .nav-menu > li:last-child > a:hover {
    background: #d97808;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239, 145, 39, 0.3);
}

.site-header .nav-menu > li:last-child.current-menu-item > a {
    background: #d97808;
    color: #ffffff;
}

@media (max-width: 900px) {
    .header-burger {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        z-index: 99;
        padding: 20px;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-header .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .site-header .nav-menu li {
        border-bottom: 1px solid #eee;
    }

    .site-header .nav-menu li:last-child {
        border-bottom: none;
    }

    .site-header .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }

    .site-header .nav-menu > li:last-child > a {
        margin-top: 12px;
        padding: 12px 20px;
        text-align: center;
    }

    .header-main__inner {
        position: relative;
    }
}

@media (max-width: 600px) {
    .header-top__inner {
        gap: 8px;
    }

    .header-top__translate {
        flex-shrink: 0;
    }
}

/* --- HERO --- */
.kolbe-hp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.kolbe-hp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kolbe-hp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: brightness(0.7);
}

.kolbe-hp-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
    color: #fff;
}


.kolbe-hp-hero__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ef9127;
    margin-bottom: 20px;
    border-left: 3px solid #ef9127;
    padding-left: 12px;
}

.kolbe-hp-hero__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.kolbe-hp-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px;
    max-width: 600px;
}

.kolbe-hp-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.kolbe-hp-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.kolbe-hp-hero__btn--primary {
    background: #ef9127;
    color: #fff;
    border-color: #ef9127;
}

.kolbe-hp-hero__btn--primary:hover {
    background: #e98e26;
    border-color: #e98e26;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 145, 39, 0.4);
    color: #fff;
    text-decoration: none;
}

.kolbe-hp-hero__btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.kolbe-hp-hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

.kolbe-hp-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-align: center;
    animation: heroScroll 2s ease-in-out infinite;
}

.kolbe-hp-hero__scroll-arrow {
    display: block;
    margin-top: 6px;
    font-size: 20px;
}

@keyframes heroScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* --- SECTION COMMON --- */
.kolbe-hp-section {
    padding: 80px 0;
}

.kolbe-hp-section--dark {
    background: #0f1419;
    color: #fff;
}

.kolbe-hp-section--light {
    background: #f8f8f8;
}

.kolbe-hp-section--white {
    background: #fff;
}

.kolbe-hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.kolbe-hp-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.kolbe-hp-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ef9127;
    margin-bottom: 12px;
}

.kolbe-hp-section__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.kolbe-hp-section--dark .kolbe-hp-section__title {
    color: #fff;
}

.kolbe-hp-section__subtitle {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.kolbe-hp-section--dark .kolbe-hp-section__subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* --- ZBIORKI GRID --- */
.kolbe-zbiorki-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kolbe-zbiorki-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.kolbe-zbiorki-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.kolbe-zbiorki-card__img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.kolbe-zbiorki-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kolbe-zbiorki-card:hover .kolbe-zbiorki-card__img img {
    transform: scale(1.05);
}

.kolbe-zbiorki-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.kolbe-zbiorki-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef9127;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
}

.kolbe-zbiorki-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kolbe-zbiorki-card__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px;
    line-height: 1.3;
    color: #1a1a1a;
}

.kolbe-zbiorki-card__progress {
    margin-top: auto;
}

.kolbe-zbiorki-card__bar {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.kolbe-zbiorki-card__fill {
    height: 100%;
    background: linear-gradient(90deg, #e98e26 0%, #f4af44 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

.kolbe-zbiorki-card__amounts {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.kolbe-zbiorki-card__raised {
    font-weight: 700;
    color: #ef9127;
}

.kolbe-zbiorki-card__goal {
    color: #999;
}

.kolbe-zbiorki-card__cta {
    display: block;
    margin-top: 20px;
    padding: 14px 24px;
    background: #ef9127;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kolbe-zbiorki-card:hover .kolbe-zbiorki-card__cta {
    background: #d97808;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 145, 39, 0.3);
}

/* --- Karta zakończonej zbiórki na liście /zbiorki/ --- */
.kolbe-zbiorki-card--ended .kolbe-zbiorki-card__img img {
    filter: grayscale(40%);
}

.kolbe-zbiorki-card__tag--ended {
    background: #6c757d;
    color: #ffffff;
}

.kolbe-zbiorki-card--ended .kolbe-zbiorki-card__fill {
    background: linear-gradient(90deg, #6c757d, #adb5bd);
}

.kolbe-zbiorki-card--ended .kolbe-zbiorki-card__raised {
    color: #057793;
}

.kolbe-zbiorki-card--ended .kolbe-zbiorki-card__cta {
    background: #c5e9ef;
    color: #057793;
}

.kolbe-zbiorki-card--ended:hover .kolbe-zbiorki-card__cta {
    background: #057793;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(5, 119, 147, 0.25);
}

/* --- Karta zakończonej zbiórki: zwężony CTA + dodatkowe przyciski VOD/DVD --- */
.kolbe-zbiorki-card--ended {
    display: flex;
    flex-direction: column;
}

.kolbe-zbiorki-card__title-link {
    text-decoration: none;
    color: inherit;
}

.kolbe-zbiorki-card__title-link:hover .kolbe-zbiorki-card__title {
    color: #ef9127;
}

.kolbe-zbiorki-card__actions {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: nowrap;
}

.kolbe-zbiorki-card__mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 6px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kolbe-zbiorki-card__mini-btn svg {
    flex-shrink: 0;
}

.kolbe-zbiorki-card__mini-btn--details {
    background: #c5e9ef;
    color: #057793;
}

.kolbe-zbiorki-card__mini-btn--details:hover {
    background: #057793;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(5, 119, 147, 0.25);
}

.kolbe-zbiorki-card__mini-btn--watch,
.kolbe-zbiorki-card__mini-btn--buy {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.kolbe-zbiorki-card__mini-btn--watch:hover,
.kolbe-zbiorki-card__mini-btn--buy:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 380px) {
    .kolbe-zbiorki-card__mini-btn {
        font-size: 10px;
        padding: 7px 4px;
    }
}

/* --- KOLBE FILMY (strona /nasze-filmy/) --- */
.kolbe-filmy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    margin-top: 48px;
}

.kolbe-filmy__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kolbe-filmy__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.kolbe-filmy__card-image {
    /* aspect-ratio: 16 / 9; */
    overflow: hidden;
    background: #f0f0f0;
}

.kolbe-filmy__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kolbe-filmy__card:hover .kolbe-filmy__card-image img {
    transform: scale(1.04);
}

.kolbe-filmy__card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px 26px 26px;
}

.kolbe-filmy__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.3;
}

.kolbe-filmy__card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px;
    flex: 1 1 auto;
}

.kolbe-filmy__card-desc p {
    margin: 0 0 10px;
}

.kolbe-filmy__card-desc p:last-child {
    margin-bottom: 0;
}

.kolbe-filmy__card-desc a {
    color: #ef9127;
    text-decoration: underline;
}

.kolbe-filmy__card-desc strong {
    color: #1a1a1a;
}

.kolbe-filmy__card-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.kolbe-filmy__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1 1 auto;
    min-width: 120px;
    text-align: center;
}

.kolbe-filmy__btn--primary {
    background: #c5e9ef;
    color: #057793;
}

.kolbe-filmy__btn--primary:hover {
    background: #057793;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 119, 147, 0.25);
}

.kolbe-filmy__btn--ghost {
    background: transparent;
    color: #ef9127;
    border: 2px solid #ef9127;
}

.kolbe-filmy__btn--ghost:hover {
    background: #ef9127;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 145, 39, 0.25);
}

.kolbe-filmy__empty {
    text-align: center;
    color: #999;
    padding: 60px 20px;
    font-size: 15px;
}

@media (max-width: 600px) {
    .kolbe-filmy__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }

    .kolbe-filmy__card-body {
        padding: 20px;
    }

    .kolbe-filmy__card-title {
        font-size: 19px;
    }

    .kolbe-filmy__card-links {
        flex-direction: column;
    }

    .kolbe-filmy__btn {
        width: 100%;
    }
}

/* --- FILMY SHOWCASE --- */
.kolbe-filmy-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kolbe-film-tile {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.kolbe-film-tile:hover {
    transform: translateY(-6px);
    text-decoration: none;
    color: inherit;
}

.kolbe-film-tile__poster {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.kolbe-film-tile__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.kolbe-film-tile:hover .kolbe-film-tile__poster img {
    transform: scale(1.08);
}

.kolbe-film-tile__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kolbe-film-tile:hover .kolbe-film-tile__overlay {
    opacity: 1;
}

.kolbe-film-tile__play {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding-left: 4px;
}

.kolbe-film-tile__badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.kolbe-film-tile__badge--active {
    background: #ef9127;
}

.kolbe-film-tile__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.kolbe-hp-section--dark .kolbe-film-tile__title {
    color: #fff;
}

/* --- CTA SKLEP --- */
.kolbe-hp-cta-sklep {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.kolbe-hp-cta-sklep::before {
    display: none;
}

.kolbe-hp-cta-sklep__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.kolbe-hp-cta-sklep__image {
    flex: 0 0 380px;
}

.kolbe-hp-cta-sklep__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.kolbe-hp-cta-sklep__text {
    flex: 1;
}

.kolbe-hp-cta-sklep__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.kolbe-hp-cta-sklep__desc {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 32px;
}

.kolbe-hp-cta-sklep__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.kolbe-hp-cta-sklep__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.kolbe-hp-cta-sklep__btn--primary {
    background: #ef9127;
    color: #fff;
    border: 2px solid #ef9127;
}

.kolbe-hp-cta-sklep__btn--primary:hover {
    background: #e98e26;
    border-color: #e98e26;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 145, 39, 0.4);
    color: #fff;
    text-decoration: none;
}

.kolbe-hp-cta-sklep__btn--ghost {
    background: transparent;
    color: #333;
    border: 2px solid #ccc;
}

.kolbe-hp-cta-sklep__btn--ghost:hover {
    border-color: #ef9127;
    color: #ef9127;
    text-decoration: none;
}

/* --- DONORS GRID --- */
.kolbe-donors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.kolbe-donor-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: box-shadow 0.2s;
}

.kolbe-donor-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.kolbe-donor-card__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e98e26 0%, #f4af44 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kolbe-donor-card__info {
    flex: 1;
    min-width: 0;
}

.kolbe-donor-card__name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kolbe-donor-card__date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.kolbe-donor-card__amount {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 15px;
    color: #ef9127;
    white-space: nowrap;
}

/* --- NEWSLETTER --- */
.kolbe-hp-newsletter {
    background: #c5e9ef;
    padding: 80px 0;
}

.kolbe-hp-newsletter__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.kolbe-hp-newsletter__content {
    flex: 1.2;
}

.kolbe-hp-newsletter__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.kolbe-hp-newsletter__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px;
}

.kolbe-hp-newsletter__form .wpcf7-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-email,
.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-text {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    background: #fff;
    color: #1a1a1a;
    font-size: 15px;
}

.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-email::placeholder,
.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-text::placeholder {
    color: #999;
}

.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-email:focus,
.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-text:focus {
    outline: none;
    border-color: #ef9127;
}

.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-submit {
    padding: 14px 32px;
    background: #ef9127;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.kolbe-hp-newsletter__form .wpcf7-form-control.wpcf7-submit:hover {
    background: #e98e26;
    transform: translateY(-2px);
}

.kolbe-hp-newsletter__consent {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 16px 0 0;
}

.kolbe-hp-newsletter__social {
    flex: 0.8;
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.kolbe-hp-newsletter__social-title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.kolbe-hp-newsletter__social-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px;
}

.kolbe-hp-newsletter__social-icons {
    display: flex;
    gap: 16px;
}

.kolbe-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ef9127;
    color: #fff;
    transition: background 0.2s, transform 0.2s;
}

.kolbe-social-icon:hover {
    background: #e98e26;
    transform: translateY(-2px);
    color: #fff;
}

/* --- PAGINATION --- */
.kolbe-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.kolbe-pagination .navigation {
    margin: 0;
}

.kolbe-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.kolbe-pagination .page-numbers,
.kolbe-pagination__link,
.kolbe-pagination__link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kolbe-pagination .page-numbers:hover,
.kolbe-pagination__link:hover,
.kolbe-pagination__link a:hover {
    border-color: #ef9127;
    color: #ef9127;
    text-decoration: none;
}

.kolbe-pagination .page-numbers.current {
    background: #ef9127;
    border-color: #ef9127;
    color: #fff;
}

.kolbe-pagination__link {
    border: none;
    padding: 0;
    min-width: auto;
    height: auto;
}

.kolbe-pagination .screen-reader-text {
    display: none;
}

/* --- AKTUALNOSCI (reuses blog-latest patterns but with homepage tweaks) --- */
.kolbe-hp-aktualnosci .blog-latest__card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* --- SECTION CTA BOTTOM --- */
.kolbe-hp-section__cta {
    text-align: center;
    margin-top: 40px;
}

.kolbe-hp-section__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #ef9127;
    color: #ef9127;
    background: transparent;
    transition: all 0.3s ease;
}

.kolbe-hp-section__cta-btn:hover {
    background: #ef9127;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.kolbe-hp-section--dark .kolbe-hp-section__cta-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.kolbe-hp-section--dark .kolbe-hp-section__cta-btn:hover {
    background: #ef9127;
    border-color: #ef9127;
}

/* --- AKTUALNOSCI GRID --- */
.kolbe-aktualnosci-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kolbe-aktualnosci-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.kolbe-aktualnosci-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.kolbe-aktualnosci-card__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.kolbe-aktualnosci-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kolbe-aktualnosci-card:hover .kolbe-aktualnosci-card__img img {
    transform: scale(1.05);
}

.kolbe-aktualnosci-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.kolbe-aktualnosci-card__date {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.kolbe-aktualnosci-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kolbe-aktualnosci-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kolbe-aktualnosci-card__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kolbe-aktualnosci-card__more {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #ef9127;
    transition: transform 0.2s ease;
}

.kolbe-aktualnosci-card:hover .kolbe-aktualnosci-card__more {
    transform: translateX(4px);
}

/* --- PAGE CONTENT (kontakt, inne strony) --- */
.page-content .wp-block-columns {
    gap: 60px;
}

.page-content h2 {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 16px;
}

.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ef9127;
}

.page-content h3 {
    margin-bottom: 8px;
    margin-top: 24px;
}

/* --- CF7 FORM STYLING --- */
.page-content .wpcf7-form label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
}

.page-content .wpcf7 .col-2-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.page-content .wpcf7 input[type="text"],
.page-content .wpcf7 input[type="email"],
.page-content .wpcf7 input[type="tel"],
.page-content .wpcf7 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.2s ease;
    font-family: inherit;
}

.page-content .wpcf7 input:focus,
.page-content .wpcf7 textarea:focus {
    border-color: #ef9127;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 145, 39, 0.1);
}

.page-content .wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.page-content .wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    background: #ef9127;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-content .wpcf7 input[type="submit"]:hover {
    background: #e98e26;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 145, 39, 0.35);
}

.page-content .wpcf7 p {
    margin-bottom: 16px;
}

.page-content .wpcf7 .rodo-infos {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    padding: 12px 16px;
    background: #f5f5f5;
    border-radius: 6px;
    margin: 16px 0;
}

.page-content .wpcf7 .rodo-infos a {
    color: #ef9127;
}

/* --- DANE FUNDACJI --- */
.page-content .wp-block-separator.is-style-wide {
    margin: 24px 0;
}

.page-content .wp-block-column p[style*="monospace"] {
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 3px solid #ef9127;
}

/* --- SHORTCODE: [kolbe_dane_fundacji] --- */
.kolbe-dane-fundacji {
    text-align: left;
    max-width: 560px;
    font-family: 'Roboto', sans-serif;
    color: #212121;
}

.kolbe-dane-fundacji__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px;
    padding-bottom: 16px;
    position: relative;
}

.kolbe-dane-fundacji__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ef9127;
}

.kolbe-dane-fundacji__name {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #212121;
}

.kolbe-dane-fundacji__address {
    font-size: 15px;
    margin: 0 0 8px;
    color: #444;
}

.kolbe-dane-fundacji__contact {
    font-size: 15px;
    margin: 0 0 16px;
}

.kolbe-dane-fundacji__contact a {
    color: #ef9127;
    text-decoration: none;
    font-weight: 500;
}

.kolbe-dane-fundacji__contact a:hover {
    text-decoration: underline;
}

.kolbe-dane-fundacji__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ef9127;
    margin: 24px 0 8px;
}

.kolbe-dane-fundacji__account {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 3px solid #ef9127;
    margin: 0 0 8px;
    word-break: break-all;
}

.kolbe-dane-fundacji__international {
    font-size: 14px;
    line-height: 1.9;
    background: #f8f8f8;
    padding: 14px 18px;
    border-radius: 6px;
    border-left: 3px solid #ef9127;
    margin: 0;
    word-break: break-all;
}

.kolbe-dane-fundacji__international strong {
    display: inline-block;
    min-width: 90px;
    color: #212121;
}

.kolbe-dane-fundacji__methods {
    font-size: 15px;
    margin: 0;
    color: #444;
}

.kolbe-dane-fundacji__sep {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 28px 0 20px;
}

.kolbe-dane-fundacji__identifiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    font-size: 14px;
}

.kolbe-dane-fundacji__identifiers p {
    margin: 0;
    color: #555;
}

.kolbe-dane-fundacji__identifiers strong {
    color: #212121;
}

/* --- SHORTCODE: [kolbe_wplaty_usa] --- */
.kolbe-wplaty-usa {
    text-align: left;
    max-width: 560px;
    margin-top: 32px;
    padding: 24px 28px;
    background: #fff8ef;
    border-left: 4px solid #ef9127;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    color: #212121;
}

.kolbe-wplaty-usa__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #212121;
}

.kolbe-wplaty-usa__intro {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
    color: #444;
}

.kolbe-wplaty-usa__block {
    margin-bottom: 18px;
}

.kolbe-wplaty-usa__block:last-child {
    margin-bottom: 0;
}

.kolbe-wplaty-usa__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #ef9127;
    margin: 0 0 8px;
}

.kolbe-wplaty-usa__row {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 6px;
    color: #444;
}

.kolbe-wplaty-usa__row strong {
    color: #212121;
    font-weight: 600;
}

/* Donation widget w single zbiórki — kontener dla sekcji USA */
.donation-widget .kolbe-wplaty-usa {
    max-width: none;
    margin-top: 20px;
    padding: 18px 20px;
}

.donation-widget .kolbe-wplaty-usa__title {
    font-size: 18px;
}

.donation-widget .kolbe-wplaty-usa__intro {
    font-size: 13px;
    margin-bottom: 14px;
}

.donation-widget .kolbe-wplaty-usa__row {
    font-size: 13px;
}

@media (max-width: 600px) {
    .kolbe-dane-fundacji__identifiers {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .kolbe-wplaty-usa {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .page-content .wp-block-columns {
        flex-direction: column;
    }

    .page-content .wpcf7 .col-2-wrap {
        grid-template-columns: 1fr;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .kolbe-zbiorki-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kolbe-filmy-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .kolbe-aktualnosci-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kolbe-hp-hero__content {
        padding: 60px 24px;
    }

    .kolbe-hp-section {
        padding: 60px 0;
    }

    .kolbe-hp-cta-sklep__inner {
        flex-direction: column;
        text-align: center;
    }

    .kolbe-hp-cta-sklep__image {
        flex: none;
        max-width: 320px;
        margin: 0 auto;
    }

    .kolbe-hp-cta-sklep__buttons {
        justify-content: center;
    }

    .kolbe-donors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kolbe-hp-newsletter__inner {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .kolbe-filmy-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kolbe-zbiorki-grid {
        grid-template-columns: 1fr;
    }

    .kolbe-aktualnosci-grid {
        grid-template-columns: 1fr;
    }

    .kolbe-hp-hero {
        min-height: 70vh;
    }

    .kolbe-hp-hero__buttons {
        flex-direction: column;
    }

    .kolbe-hp-hero__btn {
        text-align: center;
        justify-content: center;
    }

    .kolbe-hp-cta-sklep__buttons {
        flex-direction: column;
        align-items: center;
    }

    .kolbe-donors-grid {
        grid-template-columns: 1fr;
    }

    .kolbe-hp-newsletter {
        padding: 48px 0;
    }

    .kolbe-hp-newsletter__social {
        padding: 28px;
    }

    .kolbe-hp-section {
        padding: 48px 0;
    }

    .kolbe-hp-section__header {
        margin-bottom: 32px;
    }
}

/* --- PAGE HERO SIMPLE (pages, posts, blog) --- */
.page-hero-simple {
    background: #c5e9ef;
    color: #1a1a1a;
    padding: 60px 0 50px;
}

.page-hero-simple h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin: 0 0 12px;
    color: #1a1a1a;
}

.page-hero-simple__desc {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 16px;
}

.page-hero-simple__date {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 16px;
}

.page-hero-simple__breadcrumbs {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
}

.page-hero-simple__breadcrumbs a {
    color: rgba(0, 0, 0, 0.55);
    text-decoration: none;
}

.page-hero-simple__breadcrumbs a:hover {
    color: #ef9127;
}

/* --- PAGE CONTENT --- */
.page-content img {
    max-width: 100%;
    height: auto;
}

/* --- FOOTER --- */
.site-footer {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    background: #0a1a2e;
    padding: 64px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 48px;
}

/* Column titles */
.footer-col__title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(239, 145, 39, 0.4);
}

.footer-logo {
    display: block;
    margin-bottom: 16px;
    height: auto;
}

.footer-col__title--brand {
    font-size: 18px;
    text-transform: none;
    letter-spacing: 0;
    font-style: italic;
    color: #ef9127;
    border-bottom: none;
    padding-bottom: 0;
}

.footer-col__desc {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col__address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col__address svg {
    flex-shrink: 0;
    color: #ef9127;
}

.footer-col__address a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col__address a:hover {
    color: #ef9127;
}

/* Navigation list */
.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #ef9127;
    padding-left: 4px;
}

/* Data list (NIP, REGON, KRS, bank) */
.footer-data {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.footer-data li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.footer-data--compact li {
    font-size: 12px;
}

.footer-data__label {
    color: #ef9127;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
}

/* PIT button */
.footer-pit-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: #ef9127;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
}

.footer-pit-btn:hover {
    background: #e98e26;
    transform: translateY(-1px);
}

/* Bank account */
.footer-account {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 4px;
    border-left: 3px solid #ef9127;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    min-width: 380px;
}

.footer-account-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 8px;
    font-weight: 600;
}

/* Bottom bar */
.footer-bottom {
    background: #06111f;
    padding: 20px 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom__links a:hover {
    color: #ef9127;
}

/* --- BLOG ARCHIVE GRID (index.php) --- */
.blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .blog-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-main {
        padding: 48px 0 36px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom__links {
        justify-content: center;
        gap: 16px;
    }

    .blog-archive__grid {
        grid-template-columns: 1fr;
    }
}

/* --- FILM ARCHIVE (page nasze-filmy) --- */
.page-id-250 .page-content .wp-block-columns {
    gap: 30px;
}

.page-id-250 .page-content .wp-block-column {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.page-id-250 .page-content .wp-block-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.page-id-250 .page-content .wp-block-image {
    margin-bottom: 0;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.page-id-250 .page-content .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.page-id-250 .page-content .wp-block-column:hover .wp-block-image img {
    transform: scale(1.05);
}

.page-id-250 .page-content .wp-block-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    padding: 20px 20px 0;
    line-height: 1.3;
    color: #1a1a1a;
    border-top: none;
}

.page-id-250 .page-content .has-text-color {
    margin: 0 0 12px;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.5;
}

.page-id-250 .page-content .has-text-align-right {
    margin: 0;
    padding: 12px 20px 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.page-id-250 .page-content .has-text-align-right a {
    color: #ef9127;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.page-id-250 .page-content .has-text-align-right a:hover {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .page-id-250 .page-content .wp-block-columns {
        flex-direction: column;
    }
}

/* --- SEARCH FORM --- */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form__input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.search-form__input:focus {
    border-color: #ef9127;
}

.search-form__btn {
    background: #ef9127;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.search-form__btn:hover {
    background: #e98e26;
}

/* --- SEARCH RESULTS --- */
.search-results__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
}

.search-results__title span {
    color: #ef9127;
}

.search-results__section {
    margin-bottom: 48px;
}

.search-results__section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ef9127;
}

.search-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.search-results__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-result-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.search-result-item__thumb {
    flex: 0 0 200px;
    overflow: hidden;
}

.search-result-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.search-result-item:hover .search-result-item__thumb img {
    transform: scale(1.05);
}

.search-result-item__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-item__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
}

.search-result-item__title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-result-item__title a:hover {
    color: #ef9127;
}

.search-result-item__type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ef9127;
    font-weight: 600;
    margin: 0 0 8px;
}

.search-result-item__excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 12px;
}

.search-result-item__link {
    color: #ef9127;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    transition: transform 0.2s ease;
    display: inline-block;
}

.search-result-item__link:hover {
    transform: translateX(4px);
}

.search-results__empty {
    font-size: 16px;
    color: #888;
    padding: 40px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 12px;
}

.search-results__pagination {
    margin-top: 32px;
    text-align: center;
}

.search-results__pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.search-results__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #1a1a1a;
    background: #f0f0f0;
    transition: all 0.2s ease;
}

.search-results__pagination .page-numbers.current,
.search-results__pagination .page-numbers:hover {
    background: #ef9127;
    color: #fff;
}

@media (max-width: 900px) {
    .search-results__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .search-results__grid {
        grid-template-columns: 1fr;
    }

    .search-result-item {
        flex-direction: column;
    }

    .search-result-item__thumb {
        flex: none;
        height: 180px;
    }
}

.gtranslate_wrapper {
    display: flex;
    gap: 12px;
}

/* --- DONORS PAGE (lista darczyńców) --- */
.donors-page__summary {
    font-size: 16px;
    color: #555;
    margin: 0 0 30px;
}

.donors-page__summary strong {
    color: #ef9127;
}

.donors-page__table-wrap {
    overflow-x: auto;
}

.donors-page__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.donors-page__table thead {
    background: #f8f8f8;
}

.donors-page__table th {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid #eee;
}

.donors-page__table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.donors-page__table tbody tr:hover {
    background: #fafafa;
}

.donors-page__name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.donors-page__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e98e26 0%, #f4af44 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.donors-page__amount {
    font-weight: 700;
    color: #ef9127;
}

.donors-page__date {
    color: #888;
    font-size: 14px;
}

.donors-page__pagination {
    margin-top: 32px;
    text-align: center;
}

.donors-page__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #1a1a1a;
    background: #f0f0f0;
    transition: all 0.2s ease;
    margin: 0 3px;
}

.donors-page__pagination .page-numbers.current,
.donors-page__pagination .page-numbers:hover {
    background: #ef9127;
    color: #fff;
}

@media (max-width: 600px) {

    .donors-page__table th:nth-child(2),
    .donors-page__table td:nth-child(2) {
        display: none;
    }

    .donors-page__table th,
    .donors-page__table td {
        padding: 10px 8px;
        font-size: 14px;
    }
}

/* ============================================
   KFP — KOLBE FRONT PAGE (ACF + Flex)
   ============================================ */

/* --- Container --- */
.kfp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* --- Sections --- */
.kfp-section {
    padding: 80px 0;
}

.kfp-section--white {
    background: #fff;
}

.kfp-section--sky {
    background: #c5e9ef;
}

.kfp-section--light {
    background: #f8f8f8;
}

.kfp-section--dark {
    background: #0f1419;
    color: #fff;
}

.kfp-section--accent {
    background: #c5e9ef;
    color: #1a1a2e;
}

.kfp-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.kfp-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ef9127;
    margin-bottom: 12px;
}

.kfp-section__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.kfp-section--dark .kfp-section__title {
    color: #fff;
}

.kfp-section--accent .kfp-section__title {
    color: #1a1a2e;
}

.kfp-section__desc {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.kfp-section--dark .kfp-section__desc {
    color: rgba(255, 255, 255, 0.6);
}

.kfp-section--accent .kfp-section__desc {
    color: #3a3a4e;
}

.kfp-section__footer {
    text-align: center;
    margin-top: 40px;
}

.kfp-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #ef9127;
    text-decoration: none;
    transition: color 0.2s;
}

.kfp-link:hover {
    color: #d07a1a;
    text-decoration: underline;
}

/* --- Buttons --- */
.kfp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.kfp-btn--primary {
    background: #ef9127;
    color: #fff;
    border-color: #ef9127;
}

.kfp-btn--primary:hover {
    background: #d07a1a;
    border-color: #d07a1a;
    color: #fff;
}

.kfp-btn--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.95);
    margin-left: 12px;
}

.kfp-btn--secondary:hover {
    background: #fff;
    border-color: #fff;
    color: #ef9127;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.kfp-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.kfp-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.kfp-btn--ghost {
    background: transparent;
    color: #333;
    border-color: rgba(0, 0, 0, 0.2);
}

.kfp-btn--ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #333;
    color: #333;
}

.kfp-section--dark .kfp-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.kfp-section--accent .kfp-btn--ghost {
    color: #1a1a2e;
    border-color: rgba(26, 26, 46, 0.3);
}

.kfp-section--dark .kfp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.kfp-section--accent .kfp-btn--ghost:hover {
    background: rgba(26, 26, 46, 0.1);
    border-color: #1a1a2e;
    color: #1a1a2e;
}

/* --- Grid (flex) --- */
.kfp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.kfp-grid--3>* {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
}

/* --- HERO --- */
.kfp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kfp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kfp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kfp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.kfp-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.kfp-hero__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ef9127;
    margin-bottom: 16px;
}

.kfp-hero__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    max-width: 700px;
}

.kfp-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    line-height: 1.7;
    margin: 0 0 32px;
}

.kfp-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Cards (zbiórki) --- */
.kfp-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kfp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.kfp-card__img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.kfp-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kfp-card:hover .kfp-card__img img {
    transform: scale(1.05);
}

.kfp-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.kfp-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef9127;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
}

.kfp-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.kfp-card__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px;
    line-height: 1.3;
    color: #1a1a1a;
}

.kfp-card__progress {
    margin-top: auto;
}

.kfp-card__bar {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.kfp-card__fill {
    height: 100%;
    background: linear-gradient(90deg, #e98e26, #f4af44);
    border-radius: 3px;
    transition: width 1s ease;
}

.kfp-card__amounts {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.kfp-card__raised {
    font-weight: 700;
    color: #ef9127;
}

.kfp-card__goal {
    color: #999;
}

.kfp-card__cta {
    display: block;
    margin-top: 20px;
    padding: 14px 24px;
    background: #ef9127;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kfp-card:hover .kfp-card__cta {
    background: #d97808;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 145, 39, 0.3);
}

/* --- Karta zakończonej zbiórki --- */
.kfp-card--ended .kfp-card__img img {
    filter: grayscale(40%);
}

.kfp-card__tag--ended {
    background: #6c757d;
}

.kfp-card--ended .kfp-card__fill {
    background: linear-gradient(90deg, #6c757d, #adb5bd);
}

.kfp-card--ended .kfp-card__raised {
    color: #057793;
}

.kfp-card--ended .kfp-card__cta {
    background: #c5e9ef;
    color: #057793;
}

.kfp-card--ended:hover .kfp-card__cta {
    background: #057793;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(5, 119, 147, 0.25);
}

/* --- Split (sklep / newsletter) --- */
.kfp-split {
    display: flex;
    align-items: center;
    gap: 48px;
}

.kfp-split__media {
    flex: 0 0 45%;
}

.kfp-split__media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.kfp-split__content {
    flex: 1;
}

.kfp-split__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
    color: #1a1a1a;
}

.kfp-split__title--sm {
    font-size: clamp(20px, 2.5vw, 28px);
}

.kfp-section--dark .kfp-split__title {
    color: #fff;
}

.kfp-section--accent .kfp-split__title {
    color: #1a1a2e;
}

.kfp-split__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 24px;
}

.kfp-section--dark .kfp-split__desc {
    color: rgba(255, 255, 255, 0.7);
}

.kfp-section--accent .kfp-split__desc {
    color: #3a3a4e;
}

.kfp-split__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Newsletter --- */
.kfp-split--newsletter {
    gap: 64px;
}

.kfp-newsletter__form {
    margin: 24px 0 16px;
}

.kfp-newsletter__form .wpcf7-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.kfp-newsletter__form .wpcf7-form p {
    margin: 0;
}

.kfp-newsletter__form .wpcf7-form-control.wpcf7-email,
.kfp-newsletter__form .wpcf7-form-control.wpcf7-text {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 2px solid rgba(26, 26, 46, 0.15);
    border-radius: 6px;
    background: #fff;
    color: #1a1a2e;
    font-size: 15px;
    font-family: inherit;
}

.kfp-newsletter__form .wpcf7-form-control.wpcf7-email::placeholder,
.kfp-newsletter__form .wpcf7-form-control.wpcf7-text::placeholder {
    color: #999;
}

.kfp-newsletter__form .wpcf7-form-control.wpcf7-email:focus,
.kfp-newsletter__form .wpcf7-form-control.wpcf7-text:focus {
    outline: none;
    border-color: #ef9127;
    background: #fff;
}

.kfp-newsletter__form .wpcf7-form-control.wpcf7-submit {
    padding: 14px 32px;
    background: #ef9127;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.2s;
}

.kfp-newsletter__form .wpcf7-form-control.wpcf7-submit:hover {
    background: #d07a1a;
    transform: translateY(-2px);
}

.kfp-newsletter__form .col-wrap {
    display: none;
}

.kfp-newsletter__consent {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Newsletter social box */
.kfp-split__content--social {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(26, 26, 46, 0.1);
}

/* --- Donor cards --- */
.kfp-donor {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: background 0.2s;
}

.kfp-donor:hover {
    background: #f0f0f0;
}

.kfp-donor__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ef9127;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.kfp-donor__info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.kfp-donor__name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kfp-donor__date {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.kfp-donor__amount {
    font-weight: 700;
    font-size: 16px;
    color: #ef9127;
    flex-shrink: 0;
}

/* --- Post cards (aktualności) --- */
.kfp-post {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kfp-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: inherit;
    text-decoration: none;
}

.kfp-post__img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.kfp-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kfp-post:hover .kfp-post__img img {
    transform: scale(1.05);
}

.kfp-post__date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.kfp-post__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.kfp-post__title {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
    color: #1a1a1a;
}

.kfp-post__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
}

.kfp-post__more {
    font-size: 14px;
    font-weight: 600;
    color: #ef9127;
}

/* --- Social icons --- */
.kfp-social {
    display: flex;
    gap: 16px;
}

.kfp-social__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.1);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    text-decoration: none;
}

.kfp-social__icon:hover {
    background: #ef9127;
    color: #fff;
}

/* --- KFP Responsive --- */
@media (max-width: 900px) {
    .kfp-grid--3>* {
        flex: 1 1 calc(50% - 12px);
        min-width: 240px;
    }

    .kfp-split {
        flex-direction: column;
        gap: 32px;
    }

    .kfp-split__media {
        flex: none;
        width: 100%;
    }

    .kfp-split--newsletter {
        gap: 40px;
    }

    .kfp-section {
        padding: 60px 0;
    }

    .kfp-hero {
        min-height: 60vh;
    }
}

@media (max-width: 600px) {
    .kfp-grid--3>* {
        flex: 1 1 100%;
    }

    .kfp-container {
        padding: 0 16px;
    }

    .kfp-section {
        padding: 48px 0;
    }

    .kfp-hero {
        min-height: 70vh;
    }

    .kfp-hero__content {
        padding: 80px 0 60px;
    }

    .kfp-hero__buttons {
        flex-direction: column;
    }

    .kfp-btn {
        width: 100%;
        text-align: center;
    }
}