/* ─── Gallery section ────────────────────────────────────────────────────────
   Użycie: shortcode [dnt_gallery] w Gutenberg (core/shortcode block)
   ──────────────────────────────────────────────────────────────────────────── */

.dnt-gallery {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background: var(--global-palette8, #f8f7f5);
    overflow: hidden;
}

/* ── Header: overline + heading po lewej, przyciski po prawej ── */

.dnt-gallery__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    max-width: 90rem;
    margin: 0 auto clamp(2rem, 4vw, 4rem);
    padding: 0 clamp(1rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.dnt-gallery__overline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--global-palette1, #b55e45);
    margin: 0 0 24px !important;
}

.dnt-gallery__heading {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--global-palette3, #2d4538);
    margin: 0 !important;
}

.dnt-gallery__heading em {
    font-style: italic;
}

/* ── Nav przyciski ── */

.dnt-gallery__nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.dnt-gallery__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid color-mix(in srgb, var(--global-palette3, #2d4538) 25%, transparent);
    background: transparent;
    color: var(--global-palette3, #2d4538);
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.dnt-gallery__btn:hover {
    background: var(--global-palette3, #2d4538);
    color: var(--global-palette8, #f8f7f5);
}

/* ── Swiper container ── */

.dnt-gallery__swiper {
    padding: 0 clamp(1rem, 4vw, 4rem) 2rem;
}

/* ── Pojedyncze zdjęcie ── */

.dnt-gallery__item {
    width: clamp(320px, 45vw, 640px) !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

.dnt-gallery__item a {
    display: block;
    width: 100%;
    height: 100%;
}

.dnt-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dnt-gallery__item:hover img {
    transform: scale(1.03);
}

/* ── Disable Swiper default nav arrows (używamy własnych) ── */

.dnt-gallery__swiper .swiper-button-next,
.dnt-gallery__swiper .swiper-button-prev {
    display: none;
}
