@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --black-color: #141414;
    --pink-color: #ff005c;
    --bg-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    color: var(--black-color);
    background-color: var(--bg-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    display: block;
    text-decoration: none;
}

/* --- Site Header --- */

/* --- Site Header --- */

#site-header {
    position: relative;
    z-index: 9999;
}

/* --- Header Top --- */

#header-top {
    width: 100%;
    background: #f2f2f2;
    position: relative;
    z-index: 2;
}

.header-top-container {
    width: 1440px;
    max-width: calc(100% - 40px);
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-right {
    justify-content: flex-end;
    margin-left: auto;
}

.header-top-widget {
    display: flex;
    align-items: center;
}

.header-top-widget p {
    margin: 0;
}

.header-top-widget a {
    display: inline-flex;
    align-items: center;
    color: var(--black-color);
    text-decoration: none;
    transition: color .25s ease;
}

.header-top-widget a:hover {
    color: var(--pink-color);
}

/* --- Header Main Spacer --- */

#header-main-spacer {
    height: 100px;
}

/* --- Header Main --- */

#header-main {
    --admin-bar-offset: 0px;
    --header-top-height: 0px;
    --header-slide-offset: 0px;
    margin-top: -1px;

    position: fixed;
    top: calc(var(--admin-bar-offset) + var(--header-top-height));
    left: 0;
    z-index: 9999;
    width: 100%;
    background-color: #ffffff;
    transform: translateY(calc(-1 * var(--header-slide-offset)));
    transition: background-color .3s ease, box-shadow .3s ease, transform .12s linear;
    will-change: transform;
}

#header-main.is-scrolled {
    background: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

#header-main.is-hidden {
    transform: translateY(calc(-100% - var(--header-slide-offset)));
}

.header-container {
    width: 1440px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.header-logo-branding {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-branding img {
    display: block;
    width: auto;
    height: 28px;
}

.header-logo-title {
    display: block;
    line-height: 100px;
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
}

#navbar {
    display: flex;
    align-items: center;
}

#navbar-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

#navbar-menu li {
    position: relative;
    list-style: none;
}

#navbar-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
    line-height: 100px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color);
    text-decoration: none;
    transition: color .3s ease-in-out, line-height .3s ease-in-out;
}

#header-main.is-scrolled #navbar-menu > li > a {
    line-height: 76px;
}

#navbar-menu > li > a:hover {
    color: var(--pink-color);
}

/* --- Main Arrow --- */

#navbar-menu > li.menu-item-has-children > a {
    padding-right: 36px;
}

#navbar-menu > li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: transform .25s ease;
}

#navbar-menu > li.menu-item-has-children:hover > a::after {
    transform: translateY(-35%) rotate(225deg);
}

/* --- Submenu --- */

#navbar-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    margin: 0;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 20;
}

#navbar-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

#navbar-menu .sub-menu li {
    width: 100%;
}

/* --- Submenu Link --- */

#navbar-menu .sub-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 10px 20px 10px 26px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-color);
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
}

#navbar-menu .sub-menu li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 10px;
    height: 1.5px;
    background-color: var(--pink-color);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}

#navbar-menu .sub-menu li a:hover {
    padding-left: 32px;
    color: var(--pink-color);
}

#navbar-menu .sub-menu li a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

/* --- Sub Submenu --- */

#navbar-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    transform: translateX(10px);
}

#navbar-menu .sub-menu li:hover > .sub-menu {
    transform: translateX(0);
}

/* --- Sub Submenu Arrow --- */

#navbar-menu .sub-menu .menu-item-has-children > a {
    padding-right: 32px;
}

#navbar-menu .sub-menu .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
}

#navbar-menu .sub-menu .menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(-45deg);
}

/* --- Mobile Menu Toggle --- */

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--black-color);
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

/* --- Mobile Menu Overlay --- */

#mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: var(--bg-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

#mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-dialog {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-color);
}

.mobile-menu-top {
    min-height: 76px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.mobile-menu-branding {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.mobile-menu-branding .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.mobile-menu-branding img {
    display: block;
    width: auto;
    height: 28px;
}

.mobile-menu-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
}

.mobile-menu-close {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background: var(--black-color);
    border-radius: 999px;
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-body {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.mobile-menu-panels {
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile-menu-panel {
    position: absolute;
    inset: 0;
    background: var(--bg-color);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
}

.mobile-menu-panel.is-active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel.is-left {
    transform: translateX(-25%);
    opacity: 0;
    visibility: hidden;
}

#mobile-menu-list,
.mobile-submenu-list {
    padding: 10px 20px 20px;
}

#mobile-menu-list > li,
.mobile-submenu-list > li {
    border-top: 1px solid rgba(20, 20, 20, 0.08);
}

#mobile-menu-list > li:nth-child(1),
.mobile-submenu-list > li:nth-child(1) {
    border-top: none;
}

#mobile-menu-list > li > a,
.mobile-submenu-list > li > a,
.mobile-menu-submenu-trigger {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    text-align: left;
    cursor: pointer;
}

.mobile-menu-submenu-trigger::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    flex-shrink: 0;
}

.mobile-submenu-header {
    padding: 20px 20px 10px;
}

.mobile-submenu-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #9b9b9b;
    cursor: pointer;
}

.mobile-submenu-back::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -1px;
}

.mobile-submenu-title {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
}

.mobile-submenu-list li {
    border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.mobile-submenu-list li:nth-child(1) {
    border-top: none;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* --- Responsive Header --- */

@media (max-width: 1024px) {
    #navbar {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-container {
        min-height: 76px;
    }

    .header-logo-title {
        line-height: 76px;
    }

    #navbar-menu > li > a {
        line-height: 76px;
    }

    #header-main.is-scrolled #navbar-menu > li > a {
        line-height: 76px;
    }

    #header-main-spacer {
        height: 76px;
    }
}

@media (max-width: 782px) {
    #header-top {
        display: none;
    }

    .header-container {
        max-width: calc(100% - 24px);
    }

    .mobile-menu-top {
        min-height: 76px;
        padding: 0 16px;
    }

    #mobile-menu-list,
    .mobile-submenu-list {
        padding: 16px;
    }

    .mobile-submenu-header {
        padding: 16px 16px 8px;
    }

    #mobile-menu-list > li > a,
    .mobile-submenu-list > li > a,
    .mobile-menu-submenu-trigger {
        min-height: 60px;
        font-size: 16px;
    }

    .mobile-submenu-title {
        font-size: 20px;
    }
}

body.admin-bar .mobile-menu-top {
    margin-top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .mobile-menu-top {
        margin-top: 46px;
    }
}

#site-footer {
	width: 100%;
	position: relative;
}

#site-footer .elementor {
	width: 100%;
}
#site-footer .menu {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
#site-footer .menu li {
    width: 100%;
}
#site-footer .menu li a {
    display: block;
    width: 100%;
    padding: 5px 0;
    color: #cecece;
    transition: color .3s ease-in-out;
}
#site-footer .menu li a:hover {
    color: var(--pink-color);
}



.home-hero::after {
    z-index: 990;
}

.home-hero > * {
    position: relative;
    z-index: 991;
}
.home-hero::after {
    content:"";
    position:absolute;
    bottom: -8px;
    left:0;
    width:100%;
    height:156px;
    background:url('../images/icons/shape.svg') bottom center no-repeat;
    background-size:100% 100%;
}
@media (max-width: 1366px) {
    .home-hero:after {
        display: none;
    }
}
#page-default {
    width: 100%;
}
#page-default .container {
    width: 1440px;
    margin: 100px auto;
}
@media (max-width: 1480px) {
    #page-default .container {
        width: 95%;
    }
}
.page-header {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #f2f2f2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.5);
}
.page-header h1 {
    font-size: 48px;
    line-height: 1.3;
    color: #141414;
    z-index: 99;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #141414;
    z-index: 99;
}

.breadcrumbs a,
.breadcrumbs span {
    position: relative;
}

.breadcrumbs a:not(:first-child)::before,
.breadcrumbs .current::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 15px 0 12px;
    
    border-right: 2px solid #141414;
    border-bottom: 2px solid #141414;

    transform: rotate(-45deg);
}

.breadcrumbs a {
    color: #141414;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: #ff005c;
}

.breadcrumbs .current {
    color: #141414;
    font-weight: 500;
}
.page-header.has-bg h1,
.page-header.has-bg .breadcrumbs,
.page-header.has-bg a,
.page-header.has-bg .current {
    color: #fff;
}
.page-header.has-bg .breadcrumbs a:not(:first-child)::before,
.page-header.has-bg .breadcrumbs .current::before {
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}
.page-header.has-bg a:hover {
    color: #ff005c;
}


.page-content {
    font-size: 18px;
    line-height: 1.75;
    color: #141414;
}

.page-content > *:first-child {
    margin-top: 0;
}

.page-content > *:last-child {
    margin-bottom: 0;
}

.page-content p {
    margin: 0 0 24px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin: 48px 0 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #141414;
}

.page-content h1 {
    font-size: 48px;
}

.page-content h2 {
    font-size: 40px;
}

.page-content h3 {
    font-size: 32px;
}

.page-content h4 {
    font-size: 26px;
}

.page-content h5 {
    font-size: 22px;
}

.page-content h6 {
    font-size: 18px;
}

.page-content h1 + p,
.page-content h2 + p,
.page-content h3 + p,
.page-content h4 + p,
.page-content h5 + p,
.page-content h6 + p {
    margin-top: 0;
}

.page-content ul,
.page-content ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 10px;
}

.page-content ul li::marker,
.page-content ol li::marker {
    color: #ff005c;
}

.page-content a {
    color: #141414;
    text-decoration: underline;
    text-decoration-color: #ff005c;
    text-underline-offset: 3px;
    transition: .3s ease;
}

.page-content a:hover {
    color: #ff005c;
}

.page-content strong,
.page-content b {
    font-weight: 700;
}

.page-content em,
.page-content i {
    font-style: italic;
}

.page-content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 3px solid #ff005c;
    background: #f7f7f7;
    font-size: 22px;
    line-height: 1.6;
}

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

.page-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.page-content figure {
    margin: 32px 0;
}

.page-content figure img {
    margin-bottom: 12px;
}

.page-content figcaption {
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    text-align: center;
}

.page-content hr {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #e5e5e5;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.page-content table th,
.page-content table td {
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.page-content table th {
    font-weight: 600;
    background: #f7f7f7;
}

.page-content code {
    padding: 2px 8px;
    border-radius: 6px;
    background: #f3f3f3;
    font-size: 15px;
}

.page-content pre {
    margin: 32px 0;
    padding: 20px 24px;
    border-radius: 20px;
    background: #141414;
    color: #fff;
    overflow-x: auto;
}

.page-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.page-content .wp-block-button {
    margin: 32px 0;
}

.page-content .wp-block-button__link {
    padding: 16px 28px;
    border-radius: 999px;
    background: #ff005c;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.page-content .wp-block-button__link:hover {
    background: #141414;
    color: #fff;
}

.layout-sidebar {
    padding: 80px 0;
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

.page-main {
    min-width: 0;
}

.page-sidebar {
    position: relative;
}

.sidebar-widget {
    margin-bottom: 32px;
    padding: 0 24px 24px 24px;
    border-radius: 16px;
}

.widget-title {
    margin: 0 0 16px;
    font-size: 24px;
}

/* sticky sidebar */
@media (min-width: 992px) {
    .page-sidebar {
        position: sticky;
        top: 120px;
    }
}
@media (max-width: 991px) {
    .page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-sidebar {
        position: static;
    }
}

/* Sidebar */

.sidebar-widget .menu {
    margin: 0;
    padding: 0;
}

.sidebar-widget .menu li a {
    display: block;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid #cecece;
    transition: .25s ease-in-out;
}

.sidebar-widget .menu li a:hover {
    color: var(--pink-color);
    padding: 10px 0px 10px 10px;
}

#realizacje-page {
    padding: 0 0 100px;
}

.realizacje-hero {
    padding: 80px 0 40px;
}

.realizacje-hero__content {
    max-width: 800px;
}

.realizacje-title {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1.1;
}

.realizacje-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.realizacje-list {
    padding: 30px 0 0;
}
.realizacje-list .container {
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
	margin:  100px auto;
}

.realizacje-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}


.realizacja-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.realizacja-card__inner {
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 400px;
    text-decoration: none;
    color: #fff;
}

.realizacja-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.realizacja-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 25%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
    z-index: 1;
}

.realizacja-card__content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.realizacja-card__title {
    margin: 0 0 15px;
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
}

.realizacja-card__button {
    display: inline-flex;
}

.realizacja-card:hover .realizacja-card__bg {
    transform: scale(1.08);
}


.realizacje-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.realizacje-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    margin: 0 6px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    text-decoration: none;
    color: #141414;
    background: #fff;
    transition: all 0.3s ease;
}

.realizacje-pagination .page-numbers.current,
.realizacje-pagination .page-numbers:hover {
    background: #ff005c;
    border-color: #ff005c;
    color: #fff;
}
.realizacje-pagination .next,
.realizacje-pagination .prev {
    width: 44px;
    height: 44px;
    padding: 0;
}
.realizacje-pagination .next svg,
.realizacje-pagination .prev svg {
    width: 22px;
}

/* tablet */
@media (max-width: 1024px) {
    #realizacje-page {
        padding: 0 0 80px;
    }

    .realizacje-hero {
        padding: 60px 0 30px;
    }

    .realizacje-title {
        font-size: 40px;
    }

    .realizacje-intro {
        font-size: 17px;
    }

    .realizacje-list .container {
        margin: 70px auto;
        padding: 0 18px;
    }

    .realizacje-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .realizacja-card__inner {
        height: 340px;
    }

    .realizacja-card__content {
        padding: 24px;
    }

    .realizacja-card__title {
        font-size: 22px;
        margin: 0 0 12px;
    }
}

/* mobile */
@media (max-width: 767px) {
    #realizacje-page {
        padding: 0 0 60px;
    }

    .realizacje-hero {
        padding: 40px 0 20px;
    }

    .realizacje-hero__content {
        max-width: 100%;
    }

    .realizacje-title {
        margin: 0 0 16px;
        font-size: 32px;
        line-height: 1.15;
    }

    .realizacje-intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .realizacje-list {
        padding: 20px 0 0;
    }

    .realizacje-list .container {
        margin: 40px auto;
        padding: 0 16px;
    }

    .realizacje-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .realizacja-card {
        border-radius: 18px;
    }

    .realizacja-card__inner {
        height: 280px;
    }

    .realizacja-card__content {
        padding: 20px;
    }

    .realizacja-card__title {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .realizacje-pagination {
        margin-top: 30px;
    }

    .realizacje-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }

    .realizacje-pagination .next,
    .realizacje-pagination .prev {
        width: 40px;
        height: 40px;
    }

    .realizacje-pagination .next svg,
    .realizacje-pagination .prev svg {
        width: 18px;
    }
}