.realizacje-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 16px;
}
.realizacje-field {
    margin-bottom: 15px;
}
.realizacje-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 18px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--fti-pr-3);
    font-family: var(--epilogue);
}
.realizacje-select {
    position: relative;
    top: 0 !important;
}
.realizacje-select__trigger {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgb(233, 233, 233);
    border-radius: 6px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font: inherit;
    cursor: pointer;
}
.realizacje-select.is-disabled .realizacje-select__trigger {
    opacity: 0.45;
    cursor: not-allowed;
}
.realizacje-select__list {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
    border: 1px solid rgb(233, 233, 233);
    background: #fff;
    border-radius: 6px;
    padding: 6px 0;
    max-height: 280px;
    overflow: auto;
    z-index: 10;
    display: none;
}
.realizacje-select.is-open .realizacje-select__list {
    box-sizing: border-box;
    display: block;
}
.realizacje-select__option {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 8px 12px;
    cursor: pointer;
    font: inherit;
}
.realizacje-select__option.is-selected {
    font-weight: 700;
}
.realizacje-select__option:hover,
.realizacje-select__option:focus {
    background: rgba(0, 0, 0, 0.06);
}
.realizacje-results {
    min-height: 80px;
    margin-top: 4rem;
}
.realizacje-empty {
    text-align: center;
}
.realizacje-text {
    margin: 12px 0;
}

.realizacje-select__text {
    color: var(--fti-pr-3);
    font-weight: 700;
}
.realizacje-content h3 {
    color: #000000;
    font-weight: 900;
    margin-bottom: 2rem;
}
.realizacje-gallery {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (min-width: 576px) {
    .realizacje-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 992px) {
    .realizacje-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.realizacje-gallery-item {
    margin: 0;
    cursor: pointer;
}
.realizacje-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.realizacje-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
}
.realizacje-lightbox[aria-hidden="true"] {
    opacity: 0;
}
.realizacje-lightbox[aria-hidden="false"] {
    pointer-events: auto;
}
.realizacje-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}
.realizacje-lightbox__content {
    position: relative;
    width: fit-content;
    max-width: min(92vw, 1100px);
    max-height: 90vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
}
.realizacje-lightbox__figure {
    margin: 0;
    max-height: 80vh;
    width: fit-content;
}
.realizacje-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #fff;
}
.realizacje-lightbox__caption {
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.realizacje-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.realizacje-lightbox__nav {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.realizacje-lightbox__prev {
    left: 0;
}
.realizacje-lightbox__next {
    left: 40px;
}
.realizacje-lightbox-open {
    overflow: hidden;
}
