:root {
  --brand-color: #20814F;
  --light-gray: #F5F5F5;
  --text-color: #2E2E2E;
}

/*FONTS DEFINITION START*/

@font-face{
    font-family:'DMSans';
    font-style:normal;
    font-weight:400;
    src:url(../fonts/DMSans-Regular.ttf);
}
@font-face{
    font-family:'DMSans';
    font-style:normal;
    font-weight:500;
    src:url(../fonts/DMSans-Medium.ttf);
}
@font-face{
    font-family:'DMSans';
    font-style:italic;
    font-weight:400;
    src:url(../fonts/DMSans-Italic.ttf);
}
@font-face{
    font-family:'DMSans';
    font-style:normal;
    font-weight:600;
    src:url(../fonts/DMSans-SemiBold.ttf);
}
@font-face{
    font-family:'DMSans';
    font-style:italic;
    font-weight:600;
    src:url(../fonts/DMSans-MediumItalic.ttf);
}
@font-face{
    font-family:'DMSans';
    font-style:normal;
    font-weight:700;
    src:url(../fonts/DMSans-Bold.ttf);
}
@font-face{
    font-family:'DMSans';
    font-style:italic;
    font-weight:700;
    src:url(../fonts/DMSans-BoldItalic.ttf);
}

/*FONTS DEFINITION END*/


/*FOCUS LINKÓW*/
a:focus{

  outline-color: #EC6921;
}

/* Żeby menu się nie rozjeżdżało w przypadku zmiany font-weight podczas hover */
.nav-menu-wrapper .menu-header li a::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

/*ELEMENT GLOBAL STYLES START*/
*{
    margin:0;
    padding:0;
    -webkit-box-sizing:border-box;
    box-sizing:border-box
}
html, body {
    margin: 0;
    height:100%;
    width:100%;
    padding:0;
}
body{
    background-color:#fff;
    font-family:'DMSans';
    font-weight:400;
    color: #1B1B1B;
}
a{
  text-decoration: none;
}
li{
  line-height: 1.5;
}
h1{
  font-size: 3.375em;
  --original-font-size: 3.375em;
  font-weight: 600;
  line-height: 1.2;
}
h2{
  font-size: 2.5em;
  --original-font-size: 2.5em;
  font-weight: 600;
  line-height: 1.2;
}
h3{
  font-size: 2em;
  --original-font-size: 2em;
  font-weight: 600;
  line-height: 1.2;
}
h4{
  font-size: 1.25em;
  --original-font-size: 1.25em;
  font-weight: 600;
  line-height: 1.2;
}
p{
  line-height: 1.5;
  color: #3C3C3C;
}
/*ELEMENT GLOBAL STYLES END*/


/*BUTTONS*/
.btn-default {
    display: inline-block;
    vertical-align: middle;
    border: 2px solid var(--brand-color);
    font-family: 'DMSans';
    font-size: 1.125em;
    --original-font-size: 1.125em;
    line-height: 1.1;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    cursor: pointer;
    position: relative;
    background: var(--brand-color);
    color: #FFF;
    padding: 15px 30px;
    font-weight: 500;
}

.btn-default:hover {
    background: #036443;
}


.text-center{
  text-align: center;
}


/*WCAG START*/

/*Przycisk przejdź do treści strony*/
.go-to-content{
  position: absolute;
  z-index: 999;
  top: 20px;
  left: 20px;
  padding: calc(9.49254px + .14925vw) calc(13.49254px + .14925vw);
  font-size: calc(11.49254px + .14925vw);
  --original-font-size: calc(11.49254px + .14925vw);
  line-height: 1.2em;
  border-radius: 2px;
  background-color: #0A4C86;
  color: #FFFFFF;
  transition: background-color .2s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
  opacity: 0;
}

/*WCAG END*/



/*COOKIE NOTICE PLUGIN CUSTOM STYLES*/
#cookie-notice{
    -webkit-box-shadow:0 0 20px 5px rgba(0,0,0,.2);
    box-shadow:0 0 20px 5px rgba(0,0,0,.2)
}
#cookie-notice #cn-notice-text{
    position:relative
}

#cookie-notice #cn-accept-cookie{
    background-color:#fff;
    color:#FFFFFF;
    text-transform:uppercase;
    font-weight:700;
    text-decoration:underline
}
@media(max-width:991px){
#cookie-notice .cookie-notice-container{
  padding-top: 50px;
}
.cn-close-icon{
  top: 25px !important;
}
}


/*HEADER STYLES START*/
.main-header{
  position: relative;
    width: 100%;
}

.main-header .menu-wrapper {
    background: #F5F5F5;
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav-menu-wrapper{
    display: flex;
    justify-content: center;
}

/*Ruchome menu*/
/* .main-header.fixed .menu-wrapper{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    -webkit-animation:headerAnim .4s linear;
    animation:headerAnim .4s linear;
    -webkit-box-shadow:0 1px 0px 1px rgba(0,0,0,.1);
    box-shadow:0 1px 0px 1px rgba(0,0,0,.1)
} */


@media (max-width:991px){
  .main-header .menu-wrapper{
    padding: 0;
  }
    .main-header.fixed{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:80px;
        line-height:80px;
        -webkit-transition:all .2s linear;
        -o-transition:all .2s linear;
        transition:all .2s linear;
        z-index:99;
        padding-top: 0;
        background: #FFF;
    }
    .main-header.active{
        height:100vh;
        background: #FFF;
    }
    .main-header.active .menu-wrapper{
        height:100vh;
        line-height:80px;
        background: #FFF;
    }
    .main-header.fixed .menu-wrapper{
        position:relative;
        -webkit-animation:none;
        animation:none;
    }
    .main-header.fixed .nav-menu-wrapper .menu-header li{
        line-height:1.1
    }
    .main-header .menu-wrapper{
        height:80px;
        line-height:80px;
        overflow:hidden;
        -webkit-animation:none;
        animation:none;
        -webkit-transition:all .4s linear;
        -o-transition:all .4s linear;
        transition:all .4s linear
    }
}

.nav-menu-wrapper .menu-header{
    list-style-type:none;
    margin:0;
    padding:0;
    text-align:left;
    position:relative;
}
.nav-menu-wrapper .menu-header li{
    display:inline-block;
    vertical-align:middle;
    margin:0 20px;
    height:100%;
    line-height:50px
}
.nav-menu-wrapper .menu-header li.current-menu-item>a{
    border-bottom: 2px solid var(--brand-color);
}

.nav-menu-wrapper .menu-header li:last-child:not(.nav-menu-wrapper .menu-header .sub-menu li:last-child){
    background: var(--brand-color);
    color: #FFF;
    padding-left: 20px;
    padding-right: 20px;
}
.nav-menu-wrapper .menu-header li:last-child:hover:not(.nav-menu-wrapper .menu-header .sub-menu li:last-child:hover){
    background: #036443;
}
.nav-menu-wrapper .menu-header li:last-child a:not(.nav-menu-wrapper .menu-header .sub-menu li:last-child a){
    color: #FFF;
}

.nav-menu-wrapper .menu-header li:first-child{
    margin-left:0
}
.nav-menu-wrapper .menu-header li a{
    display:inline-block;
    padding:5px 0px;
    vertical-align:middle;
    font-family: 'DMSans';
    font-size:1.125em;
    --original-font-size: 1.125em;
    line-height:24px;
    font-weight:500;
    color:#2E2E2E;
    -webkit-transition:all .2s ease-out;
    -o-transition:all .2s ease-out;
    transition:all .2s ease-out;
}
.nav-menu-wrapper .menu-header li:not(.nav-menu-wrapper .menu-header li:last-child) a:hover{
    color: var(--brand-color);
}

@keyframes headerAnim {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}

.nav-menu-wrapper .menu-header li .sub-menu{
    display:none;
    position:absolute;
    top:calc(100% - 9px);
    left:0;
    padding:25px 0px;
    min-width:250px;
    line-height:1;
    background-color:#fff;
    -webkit-box-shadow:0 4px 9px 1px rgba(0,0,0,.05);
    box-shadow:0 4px 9px 1px rgba(0,0,0,.05);
    text-align:left;
    z-index:20
}
.nav-menu-wrapper .menu-header li .sub-menu li{
    margin:0 0 0px;
    height:auto;
    line-height:1;
    padding: 10px 30px;
}
.nav-menu-wrapper .menu-header li .sub-menu li a{
    font-size:1em;
    --original-font-size: 1em;
}

.nav-menu-wrapper .menu-header li.show-sub .sub-menu{
    display:block
}
.nav-menu-wrapper .menu-header li.open .sub-menu{
    display:block
}

.nav-menu-wrapper .menu-header li .sub-menu{
    display:none;
}


.nav-menu-wrapper .menu-header li:hover .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}


@media (max-width:991px){
    .nav-menu-wrapper .menu-header{
        text-align:center
    }
    .nav-menu-wrapper .menu-header li{
        display:block;
        margin:0 0 5px;
        line-height:1.1
    }
    .nav-menu-wrapper .menu-header li a{
        font-size:1.125em;
        --original-font-size: 1.125em;
    }

    .header-menu-container{
      margin-top: 0;
      padding-top: 15px;
    }

    .nav-menu-wrapper .menu-header li .sub-menu{
        position:relative;
        display:none;
        top:0;
        left:0;
        background-color:transparent;
        -webkit-box-shadow:none;
        box-shadow:none;
        text-align:center
    }
}
.navbar-br{
    display:block;
    color: #000000;
    font-weight: 600;
    font-size: 1.5em;
    --original-font-size: 1.5em;
}
.navbar-br img{
    display:inline-block;
    vertical-align:middle;
    width: 68px;
    height:auto
}

@media (max-width:991px){
    .navbar-br{
        height:100%;
        line-height:80px
    }
}
.btn-mobile-wrapper{
    display:none;
    text-align:center;
}
.btn-mobile-wrapper .menu-toggle{
    position:relative;
    display:inline-block;
    vertical-align:middle;
    margin-top:0;
    background-color:transparent;
    border:none;
    z-index:101
}
.btn-mobile-wrapper .menu-toggle:focus{
    outline:0
}
.btn-mobile-wrapper .menu-toggle img.close{
    display:none
}
@media (max-width:991px){
    .btn-mobile-wrapper .menu-toggle.active img{
        -webkit-animation:buttonAnim .4s linear;
        animation:buttonAnim .4s linear
    }
    .btn-mobile-wrapper .menu-toggle.active img.close{
        display:inline-block;
        opacity:1
    }
    .btn-mobile-wrapper .menu-toggle.active img.open{
        display:none;
        opacity:0
    }
}
@media (max-width:991px){
    .btn-mobile-wrapper{
        display:block
    }
    .navbar-br svg{
        width:100%;
        height: 60px;
        display: block;
    }
}
/*HEADER STYLES END*/










/*FOOTER STYLES START*/
.footer-se{
    background-color: var(--light-gray);
    color: var(--text-color);
    padding-top: 60px;
}

.footer-se .menu-footer{
    margin:0;
    padding:0;
    text-align:left
}
.footer-se  li{
    display:block;
    text-align:left;
    margin: 12px 0px;
}
.footer-se .footer{
  padding-bottom: 40px;
}
.footer-se .menu-footer li.menu-item-has-children{
    margin:0
}
.footer-se .menu-footer li:first-child{
    margin-left:0
}
.footer-se .menu-footer li:last-child{
    margin-right:0
}
.footer-se li a{
    font-size: 1em;
    --original-font-size: 1em;
    color: var(--text-color);
    -webkit-transition:all .2s ease-out;
    -o-transition:all .2s ease-out;
    transition:all .2s ease-out;
}
.footer-se .menu-footer li a:hover{
    color: var(--brand-color);
}
.footer-se .menu-footer li .sub-menu{
    margin-top:20px
}
.footer-se .menu-footer li .sub-menu li{
    display:block;
    margin:0 0 20px
}
.footer-se .menu-footer li .sub-menu li a{
    font-size:0.875em;
    --original-font-size: 0.875em;
    font-weight:400;
    color:#bdbdbd;
    text-transform:none
}
.footer-se .menu-footer li .sub-menu li a:hover{
    color:#eaea3d
}



@media (max-width:991px){
    .footer-se .menu-footer li{
        display:block;
        margin:0 0 15px
    }
    .footer-se .menu-footer li a{
        font-size:0.875em;
        --original-font-size: 0.875em;
    }
    .footer-se .menu-footer li .sub-menu{
        margin-top:15px
    }
    .footer-se .menu-footer li .sub-menu li{
        margin-bottom:15px
    }
}

.copy-text{
    font-size:0.875em;
    --original-font-size: 0.875em;
    font-weight:400;
}

.footer .sub-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #D9D9D9;
    padding-top: 30px;
}

.sub-footer .author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-size: 0.875em;
    --original-font-size: 0.875em;
}
/*FOOTER STYLES END*/

.error-se{
    padding-top: 200px;
    padding-bottom: 150px;
    background: #2D286D;
}

.error-se h1{
  color: #FFF;
  text-transform: uppercase;
}

.error-404{
  font-size: 160px;
  --original-font-size: 160px;
  color: #FFF;
  font-weight: 700;
}

@media(max-width:991px){
  .error-404{
    font-size: 60px;
    --original-font-size: 60px;
  }
  .error-se .btn-default{
    font-size: 12px;
    --original-font-size: 12px;
    margin-top: 20px;
  }
  .error-se h1{
    font-size: 30px;
    --original-font-size: 30px;
  }
  .btn-404{
    margin-top: 20px;
  }
  .error-se{
      padding-top: 100px;
      padding-bottom: 100px;
  }
}

@media(min-width:1860px){
    .container{
        max-width: 1760px;
        width: 1760px;
    }
}

.accessibility-nav #cspwContainer{
    justify-content: flex-end;
}


.searchform #s {
    width: 90%;
    height: 48px;
    background: #F5F5F5;
    border: none;
    padding: 5px;
}
#searchsubmit {
    background: var(--brand-color);
    color: white;
    border: none;
    width: 45px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0;                    /* ukrywa tekst "Szukaj" */
    --original-font-size: 0;
    transition: all 0.3s ease;
    color: #20814F;
    position: relative;
    top:-4px;
    left: -3px;
}
#searchsubmit {
    background: #20814F url('data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23fff%27 stroke-width=%272.5%27><circle cx=%2711%27 cy=%2711%27 r=%278%27/><line x1=%2721%27 y1=%2721%27 x2=%2716.65%27 y2=%2716.65%27/></svg>') center/19px no-repeat;
}
.header-row{
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer .phone, .footer .email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 1.125em;
    --original-font-size: 1.125em;
    margin-bottom: 10px;
}
.footer .menu-text{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.125em;
    --original-font-size: 1.125em;
}
.footer a:hover{
    color: var(--brand-color);
}
.footer-logo img{
    width: 130px;
    max-width: 100%;
}
.footer-first-row p{
    font-size: 1.125em;
    --original-font-size: 1.125em;
}
.footer .social-link{
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125em;
    --original-font-size: 1.125em;
}
.footer-second-row{
    margin-top: 50px;
}
.accessibility-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    /* text-align: end; */
    justify-content: end;
}
.archive-page {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 1.125em;
    --original-font-size: 1.125em;
}
.mobile-accessibility-wrapper{
    display: none;
}

.footer-col{
    margin-bottom: 50px;
}

@media(max-width:1800px){
    .links-se .link-box{
        padding: 15px;
        font-size: 1.175em;
        --original-font-size: 1.175em;
    }
}

@media(max-width:1440px){
    .navbar-br img{
    width: 47px;
    margin-right: 8px;
}
.navbar-br {
    font-size: 1em;
    --original-font-size: 1em;
}
.searchform #s{
    width: 83%;
}

}

@media(max-width:1200px){
    .latest-col{
        margin-bottom: 25px;
    }
}

@media (max-width:991px) {
    h2{
        font-size: 1.5em;
        --original-font-size: 1.5em;
    }

        h3{
        font-size: 1.3em;
        --original-font-size: 1.3em;
    }
    .footer-col{
        margin-top:30px;
        margin-bottom: 0;
    }
    .footer-first-row p {
    font-size: 1em;
    --original-font-size: 1em;
}
.footer .sub-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
.footer-se .footer {
    padding-bottom: 0px;
}
.archive-page {
    font-size: 1em;
    --original-font-size: 1em;
}
.banner-se h1{
    font-size: 2.25em;
    --original-font-size: 2.25em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 35px;
}

.main-header{
    height: 80px;
    overflow: hidden;
}
.banner-se {
    padding-top: 40px;
    padding-bottom: 40px;
}
.banner-se img{
    height: 200px;
}
.news-se {
    padding-top: 40px;
    padding-bottom: 40px;
}
.news-se .title-col {
    margin-bottom: 35px;
}
.news-se .featured-image img {
    max-height: 178px;
    height: 178px;
}
.news-se .meta{
    margin-top: 15px;
}
.news-se .featured-row .img-col {
    padding-left: 0;
    padding-right: 0;
}
.news-se .featured-row {
    border-radius: 6px;
    padding-bottom: 40px;
}
.news-se .latest-row {
    margin-top: 30px;
}
.news-item{
    border-radius: 6px;
}
.latest-col{
    margin-bottom: 30px;
}
.news-se .btn-content {
    margin-top: 15px;
    text-align: center;
}

.links-se .links-row h2 {
    margin-bottom: 35px;
}
.links-se .link-box{
    font-size: 1.125em;
}
.links-se .links-row {
    margin-bottom: 60px;
}
.header-row{
    padding-top: 0;
}

.nav-menu-wrapper .menu-header li{
    height: inherit;
    margin-bottom: 25px;
}
.nav-menu-wrapper .menu-header li:last-child {
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.wrapper-nav-content{
    display: none;
}
.searchform{
    margin-top: 20px;
}
.mobile-accessibility-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.bip{
    line-height: 0;
}
.accessibility-nav #cspwContainer{
    display: flex;
    gap: 30px;
    align-items: center;
}
}
@media(max-width:360px){
    .navbar-br{
        font-size: 0.95em;
    }
}

.download-file a{
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: overlay;
}
.download-info {
    display: flex;
    flex-direction: column;
}
.download-file .download-title{
    color: #20814F;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 700;
}
.download-file{
    margin-bottom: 20px;
}
.download-file .download-meta{
    color: var(--text-color);
}
.downloads{
    margin-top: 0px;
    margin-bottom: 0px;
}
.acf-custom-table {
    width: 100%;
    border-collapse: collapse;     /* ważne! */
    margin: 20px 0;
    font-size: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

.acf-custom-table th,
.acf-custom-table td {
    border: 1px solid #cccccc;     /* ramki komórek */
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
}

.acf-custom-table th {
    background-color: #B8B8B8;
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px;
}

.acf-custom-table tr:nth-child(even) {
    background-color: #F5F5F5;
}

.acf-custom-table caption {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    font-size: 1.1rem;
}
.table-layout{
    margin-top: 0px;
    margin-bottom: 50px;
}
.gallery-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.gallery-layout img{
    max-width: 100%;
    height: 156px;
    object-fit: cover;
    width: 100%;
    border-radius: 6px;
}
.gallery-se {
    margin-top: 0px;
    margin-bottom: 0px;
}

.text-layout .btn-content{
    margin-top: 20px;
    margin-bottom: 50px;
}
.text-layout{
    margin-top: 0px;
    margin-bottom: 0px;
}
.post-content-se h2{
    margin-top: 40px;
    margin-bottom: 10px;
}
.post-content-se ol,.post-content-se ul{
    margin-top: 10px;
    margin-bottom: 10px;
}
.post-content-se h4{
    margin-top: 25px;
    margin-bottom: 10px;
}
.text-layout h3{
    margin-top: 30px;
    margin-bottom: 10px;
}

.post-content-se p{
    margin-top: 10px;
    margin-bottom: 10px;
}
.text-layout ul, .text-layout ol{
    margin-left: 30px;
}
.photo-content img{
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.photo-content{
    margin-top: 20px;
    margin-bottom: 0px;
}
.breadcrumbs {
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #DFDFDF;
    padding-bottom: 30px;
}
.breadcrumbs.no-border{
    border-bottom: none;
    margin-bottom: 25px;
    padding-bottom: 0px;
}
.breadcrumbs a{
    color: var(--text-color);
}
.breadcrumbs .last{
    font-weight: 700;
}
.post-date .date-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8E8E8E;
    margin-top: 10px;
}

.news-item .news-image img{
    max-width: 100%;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.news-item .meta{
    margin-top: 20px;
}
.news-item {
    background-color: #FFFFFF;
    height: 100%;
    padding-bottom: 40px;
    border-radius: 6px;
    border: 1px solid #DDE1E6;
}
.news-item .news-content{
    padding: 0 15px;
}
.news-item .meta a{
    color: #8E8E8E;
}
.news-item .btn-more{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
}
.news-item .btn-more:hover{
    text-decoration: underline;
}
.news-item .meta{
    display: flex;
    align-items: center;
    gap: 20px;
    color: #8E8E8E;
}
.news-item .meta .date, .news-item .meta .category {
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-item .featured-title{
    margin-top: 20px;
    margin-bottom: 20px;
}



.news-right-wrapper {
    width: 420px;
    max-width: 100%;
}

.acf-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

/* Responsywność */
@media (max-width: 767.98px) {
    .news-right-wrapper {
        width: 100%;
        margin-top: 40px;
    }
    
    .col-md-5.d-flex.justify-content-end {
        justify-content: flex-start !important;
    }
}
.news-right-wrapper h3{
    margin-bottom: 20px;
}
.post-content-se .news-item{
border-radius: 6px;
border: 1px solid #DDE1E6;
}
.text-layout a:not(.btn-default){
    color: var(--brand-color);
    text-decoration: underline;
    font-weight: 700;
}
.post-content-se h1{
    font-size: 3em;
}
.video-content iframe{
    width: 100%;
    height: 500px;
}
.post-content-se{
    padding-bottom: 80px;
}
.featured-content .meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #8E8E8E;
}
.featured-content .meta a{
    color: #8E8E8E;
}
.featured-content .meta .date, .featured-content .meta .category {
    display: flex;
    align-items: center;
    gap: 8px;
}
.featured-content h3{
    margin-top: 20px;
    margin-bottom: 20px;
}
.featured-content .btn-more {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
}
.news-se.cat{
    background: #F6F6F6;
}
.news-se.cat{
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 40px;
    margin-bottom: 70px;
}
.page-numbers {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}
.pagination{
    margin-top: 65px;
    text-align: center;
}
.page-numbers.current{
    background: var(--brand-color);
    color: #FFF;
}
.page-numbers.next, .page-numbers.prev{
    background: #FFF;
}
.news-se.cat .latest-col{
    margin-bottom: 15px;
    margin-top: 15px;
}

@media(max-width: 768px){
.news-se.cat {
    padding-top: 5px;
    padding-bottom: 50px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.pagination {
    margin-top: 40px;
    text-align: center;
}
.post-content-se h1{
    font-size: 1.75em;
    --original-font-size: 1.75em;
}
}
.search-highlight {
    background-color: #FFEFC9;   /* żółte podświetlenie */
}

.result-excerpt {
    line-height: 1.5;
    color: #444;
    margin-top: 10px;
}
search-filters{
    display: flex;
    gap: 50px;
}
.search-title{
    margin-bottom: 50px;
}
.result-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-color);
    text-decoration: underline;
}
.search-result-item{
    margin-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid #DFDFDF;
    padding-bottom: 30px;
}
.search-result-item .result-meta{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.search-result-item .result-meta time, .search-result-item .result-meta .category {
    display: flex;
    align-items: center;
    gap: 5px;
}
.search-filters{
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    margin-top: 20px;
}
.filters-form select{
    padding: 8px;
    border: 1px solid #DFDFDF;
}
.filters-form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.category-filter{
    margin-right: 20px;
}

/* Pionowe linie między kolumnami */
.nav-menu-wrapper .menu-header li .sub-menu::before,
.nav-menu-wrapper .menu-header li .sub-menu::after {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #DFDFDF;           /* kolor linii */
    z-index: 1;
}

/* Pierwsza linia (między kolumną 1 a 2) */
.nav-menu-wrapper .menu-header li .sub-menu::before {
    left: 33.33%;   /* około 1/3 */
}

/* Druga linia (między kolumną 2 a 3) */
.nav-menu-wrapper .menu-header li .sub-menu::after {
    left: 66.66%;   /* około 2/3 */
}