@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Nothing+You+Could+Do&family=Open+Sans:wght@200;300;400;600;700&display=swap');

:root {
    --font-worksans: 'Inter', Helvetica, Arial, Lucida, sans-serif;
}

body {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
}

/* Hide WOW elements before WOW.js initialization */
.wow {
    visibility: hidden;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1554px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.container-content {
    min-height: 600px;
}

/* Post Gallery Styles */
.gallery-title {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c2c2c;
}

/* Decorative gallery text overlay */
.gallery-section {
    position: relative;
}

.gallery-text-overlay {
    position: absolute;
    left: 100px;
    transform: rotate(0deg);
    font-family: 'Nothing You Could Do', cursive;
    font-size: 120px;
    color: rgba(200, 200, 200, 0.3);
    z-index: 10;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    margin-top: -83px;
}

.post-gallery-container {
    position: relative;
    padding: 20px 50px; /* Dodajemy padding dla strzałek */
    margin: 0 50px; /* Kompensujemy padding kontenera */
}

.post-gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.post-gallery-grid::-webkit-scrollbar {
    display: none; /* WebKit browsers */
}

.post-gallery-grid.active {
    cursor: grabbing !important;
}

.post-gallery-grid.active .gallery-item {
    pointer-events: none; /* Disable clicks while dragging */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.05);
}

/* Navigation arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.gallery-nav-left {
    left: -10px;
}

.gallery-nav-right {
    right: -10px;
}

.gallery-nav-left::before {
    content: "‹";
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.gallery-nav-right::before {
    content: "›";
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 24px;
}


/* Responsive adjustments */
@media (max-width: 1090px) {
    .gallery-item {
        width: 200px;
    }
    
    .gallery-thumbnail {
        height: 150px;
    }
    
    .gallery-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
    }
    
    .gallery-nav-left::before,
    .gallery-nav-right::before {
        font-size: 20px;
    }
    
    .post-gallery-container {
        padding: 20px 40px;
    }
    
    .gallery-text-overlay {
        font-size: 80px;
        top: -60px;
        left: 50px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 180px;
    }
    
    .gallery-thumbnail {
        height: 120px;
    }
    
    .post-gallery-grid {
        gap: 15px;
    }
    
    .gallery-nav-left {
        left: 5px;
    }
    
    .gallery-nav-right {
        right: 5px;
    }
    
    .gallery-nav {
        width: 30px;
        height: 30px;
    }
    
    .gallery-nav-left::before,
    .gallery-nav-right::before {
        font-size: 18px;
    }
    
    .post-gallery-container {
        padding: 20px 35px;
    }
    
    .gallery-text-overlay {
        font-size: 60px;
        top: -45px;
        left: 20px;
    }
}

.breadcrumbs {
    padding-top: 50px;
    padding-bottom: 50px;
}

.breadcrumbs .back {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333333 !important;
    border-radius: 0;
    letter-spacing: 0.5px;
    font-size: 13px !important;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif !important;
    padding: 6px 10px 6px 27px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400 !important;
}

.view-all-btn {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333333 !important;
    border-radius: 0;
    letter-spacing: 0.5px;
    font-size: 13px !important;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif !important;
    padding: 12px 34px 12px 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400 !important;
}

.view-all-btn::after {
    content: "›";
    position: absolute;
    right: 8px;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
}

.breadcrumbs .back::before {
    content: "‹";
    position: absolute;
    left: 8px;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
}

.breadcrumbs .back:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #3B8DA8 !important;
    border-color: #3B8DA8;
    transform: translateY(-1px);
}

.breadcrumbs .back:hover::before {
    color: #3B8DA8;
}

.breadcrumbs .back:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.top-content ul {
    border-bottom: 0px !important;
}

.top-content ul li {
    display: inline-block;
}

.menu-list-post-module .box-header {
    margin-top: 10px;
    text-align: center;
    padding: 30px;
    list-style: none;
    height: 164px;
}

.menu-list-post-module .pm-1.active {
    color: #fff;
    background-image: url('/themes/unfinishedlives/img/niebieski.png');
    background-size: 235px auto;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-list-post-module .pm-2.active {
    color: #fff;
    background-image: url('/themes/unfinishedlives/img/pomaranczowy.png');
    background-size: 235px auto;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-list-post-module .pm-3.active {
    color: #fff;
    background-image: url('/themes/unfinishedlives/img/zolty.png');
    background-size: 235px auto;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-list-post-module .pm-4.active {
    color: #fff;
    background-image: url('/themes/unfinishedlives/img/zielony.png');
    background-size: 235px auto;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-list-post-module .box-header a {
    font-size: 27px;
    font-weight: 400;
    color: #000;
    display: block;
    font-family: 'Nothing You Could Do', cursive;
    line-height: 26px;
    text-align: center;
}

.artist-list .menu-list-post-module.lang-pl .pm-4 a,
.artist-list .menu-list-post-module.lang-de .pm-4 a,
.artist-list .menu-list-post-module.lang-cz .pm-4 a {
    margin-top: -14px;
}

.menu-list-post-module .sztuki-performatywne a,
.menu-list-post-module .sztuki-performatywne.active a {
    margin-top: -13px !important;
    padding-bottom: 20px;
}


.home2-banner-section .container {
    max-width: 100%;
}

.home2-banner-section .banner-wrapper {
    padding: 0;
}

.home2-banner-section .banner-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.menu-list-post-module {
    flex-direction: column;
    align-items: center;
}

.artist-grid-section .menu-list-post-module {
    display: flex;
    justify-content: center;
    align-items: normal;
}

.artist-grid-section .menu-list-post-module .box-header a p {
    font-size: 30px;
}

.artist-grid-section .menu-list-post-module .box-header {
    background-size: auto 170px;
}

.artist-grid-section .menu-list-post-module li {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid var(--border-color);
}

.artist-grid-section .menu-list-post-module .box-header a {
    height: auto;
}

.menu-list-post-module .box-header {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-list-post-module li a {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    text-align: left;
}

.menu-list-post-module li {
    display: inline-block;
    border-bottom: 1px solid #000;
}

.menu-list-post-module.vertical {
    display: inline-block;
}

.menu-list-post-module.vertical li ul li {
    display: block;
}

.menu-list-post-module div {
    text-align: center;
}

.menu-list-post-module div a {
    color: #000;
    font-weight: 600;
}

.artist-list-container {  
    position: relative;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 50px;
}

.artist-list-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(236, 232, 224, 0.3);
    width: 100%;
    z-index: -1;
}

.artist-list {
    position: relative;
    z-index: 1;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.artist-list > div {
    text-align: center;
}

.box-header a {
    height: 108px;
    text-align: center;
    padding: 40px;
    font-family: 'Nothing You Could Do', cursive;
    line-height: 26px;
    color: #000 !important;
    font-size: 27px;
    font-weight: 600;
}

.menu-list-post-module li .pm-3 a {
    margin-top: 0px;
}

header.style-2 .nav-right .language-area .language-list {
    width: 108px !important;
}

.social-icons img {
    width: 20px !important;
    height: 20px !important;
}

.footer-section {
    background-color: #ECE8E0;
    padding: 20px 0;
}

.footer-section .align-items-center div {
    text-align: center;
}

.footer-section .align-items-center div a {
    font-weight: 600;
    color: #000;
}

.post-show h1 {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #3b8da8;
    line-height: 1.8em;
}


.post-show h1 .last-word {
    font-weight: 700 !important;
}

.post-show .main-image {
    max-width: 470px;
    margin-left: 225px;
}

.home1-auction-slider-section .view-all-btn {
    margin-top: 20px;
}

.home1-auction-slider-section .section-content p {
    text-align: justify;
    font-weight: 300;
}

.menu-list-post-module div a {
    font-weight: 400;
    display: block;
}

.menu-list-post-module .artist-list-item {
    line-height: 50px;
}

.menu-list-post-module-list {
    padding: 0 30px;
    text-align: center;
}

.menu-list-post-module-list p {
    text-align: center;
    margin: 0;
}

.menu-list-post-module-list a {
    font-size: 15px;
    font-weight: 300 !important;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    color: #000 !important;
    margin-top: 0;
    text-align: center;
    display: inline-block;
}

/* Post card styling like on screenshot */
.post-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.post-card .post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    z-index: 2;
}

.post-card .post-arrow-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    text-decoration: none;
    backdrop-filter: blur(3px);
}

.post-card .post-arrow-btn::after {
    font-size: 37px;
    font-weight: 300;
    line-height: 1;
    margin-top: -4px;
    margin-left: 2px;
}

.post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Artist card compatibility with post-card styles */
.artist-card.post-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border: none;
}

.artist-card.post-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.artist-card.post-card::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.artist-card.post-card .post-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: none;
    color: white !important;
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 200 !important;
    font-family: 'Open Sans', sans-serif !important;
    z-index: 2;
    text-decoration: none;
}

.artist-card.post-card .post-title span {
    font-weight: 600;
}


.artist-card.post-card .post-title a {
    color: white !important;
    text-decoration: none;
}

.artist-card::before {
    background: none;
}

.artist-list-container .menu-list-post-module a p {
    font-size: 27px;
    line-height: 30px;
}

.multiple-words.box-header a {
    padding: 28px !important;
}

.menu-list .active a {
    color: #3B8DA8;
}

.pm-default-color {
    color: #3B8DA8 !important;
}

.pm-1-color {
    color: #77b0c3 !important;   
}

.pm-2-color {
    color: #f08f37 !important;   
}   

.pm-3-color {
    color: #efc949 !important;   
}

.pm-4-color {
    color: #8da01d !important;   
}

.tab-nav-item {
    border-bottom: 2px solid #ECECEC;
}

.tabs-navigation .tabs-title {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
    font-size: 35px;
    font-weight: 300;
    color: #D9D9D9;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.mb-100 {
    margin-bottom: 100px;
}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
        }
        .header-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) {
            .header-images {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        .header-images img {
            width: 100%;
            height: auto;
            object-fit: cover;
            cursor: pointer;
            border-radius: 0;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            .main-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        .column {
            background-color: transparent;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: none;
        }
        h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        /* Vertical Tabs Layout */
        .vertical-tabs-container {
            display: flex;
            margin-top: 2rem;
            min-height: 400px;
        }
        
        .tabs-navigation {
            /* flex: 0 0 468px; */
        }
        
        .tab-nav-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            cursor: pointer;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid #e9ecef;
            background: transparent;
        }
        
        .tab-nav-item:last-child {
            border-bottom: none;
        }
        
        .tab-nav-item::after {
            content: "\203A";
            font-size: 20px;
            color: #6c757d;
            transition: all 0.3s ease;
        }
        
        .tab-nav-item:hover {
            color: #007acc;
        }
        
        .tab-nav-item:hover::after {
            color: #007acc;
            transform: translateX(3px);
        }
        
        .tab-nav-item.active {
            color: #000;
            background: transparent;
        }
        
        .tab-nav-item.active::after {
            color: #000;
            font-weight: 600;
        }
        
        .tabs-content {
            flex: 1;
            min-height: 400px;
        }
        
        .tab-content-item {
            display: none;
        }
        
        .tab-content-item.active {
            display: block;
            animation: fadeIn 0.3s ease-in;
        }

        .tabs-content-extension {
            padding-top: 50px;
        }
        

        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Mobile responsive */
        @media (max-width: 1090px) {
            .vertical-tabs-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .tabs-navigation {
                flex: none;
                display: flex;
                overflow-x: auto;
                padding: 0.5rem;
                gap: 0.5rem;
            }
            
            .tab-nav-item {
                white-space: nowrap;
                margin-bottom: 0;
                min-width: 120px;
                text-align: center;
            }
            
            .tabs-content {
                min-height: 300px;
                padding: 1.5rem;
            }
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            justify-content: center;
            align-items: center;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .modal-content {
            display: none; /* Ukryj domyślnie, aby animacja działała poprawnie */
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            border-radius: 0;
            background-color: transparent;
            animation: fadeIn 0.5s ease-in-out;
        }
        .modal-close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 50px;
            font-weight: bold;
            padding: 16px;
            cursor: pointer;
            user-select: none;
        }
        .prev {
            left: 15px;
        }
        .next {
            right: 15px;
        }
        @media (max-width: 767px) {
            .prev, .next {
                display: none;
            }
        }

.post-show {
    margin-bottom: 50px;
}

.unfinished-life-image {
    position: fixed; 
    top: 350px; 
    right: 0; 
    height: 100vh; 
    z-index: 1000;
}

/* Responsive design */
@media (max-width: 1200px) {
    .categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1090px) {
    .categories-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .artist-categories-section {
        padding: 40px 0;
    }
    
    .category-header h3 {
        font-size: 20px;
    }
}

/* Literatura vertical line and text */
.literatura-line {
    position: absolute;
    top: 687px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-left: 99px;
}

.literatura-line::before {
    content: '';
    width: 2px;
    height: 120px;
    background-color: #D7D7D7;;
    display: block;
    transition: height 0.3s ease;
}

.literatura-text {
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 35px;
    font-weight: 400;
    color: #D7D7D7;
    letter-spacing: 2px;
    text-transform: lowercase;
    margin-top: 10px;
}

.literatura-line::after {
    content: '';
    width: 2px;
    height: 120px;
    background-color: #D7D7D7;
    display: block;
    transition: height 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .literatura-line {
        left: 20px;
    }
}

@media (max-width: 1090px) {
    .literatura-line {
        display: none;
    }
}

/* Embedded Gallery Styles */
.embedded-gallery {
    margin: 30px 0;
    padding: 20px 0;
}

.gallery-grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.gallery-item-embedded {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-embedded:hover {
    transform: translateY(-3px);
}

.gallery-thumbnail-embedded {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-embedded:hover .gallery-thumbnail-embedded {
    transform: scale(1.05);
}

.gallery-overlay-embedded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-embedded:hover .gallery-overlay-embedded {
    opacity: 1;
}

.gallery-overlay-embedded .gallery-overlay-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Fancybox customization */
.fancybox-bg {
    background: #fff !important;
}

.fancybox-button {
    background: transparent !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
}

.fancybox-button:hover {
    transform: scale(1.1) !important;
}


/* Close button with custom icon */
.fancybox-slide {
    position: relative !important;
}

.fancybox-button.fancybox-button--close {
    position: absolute !important;
    top: -25px !important;
    right: -25px !important;
    background: url('/themes/unfinishedlives/img/gallery-close.png') center center no-repeat !important;
    background-size: contain !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 8050 !important;
}

.fancybox-button.fancybox-button--close:hover {
    opacity: 0.7 !important;
}

/* Navigation arrows with custom icon */
.fancybox-button--arrow_left {
    width: 50px !important;
    height: 50px !important;
    background: url('/themes/unfinishedlives/img/gallery-arrow-left.png') center center no-repeat !important;
    background-size: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.fancybox-button--arrow_left svg,
.fancybox-button--arrow_right svg,
.fancybox-button--close svg {
    display: none !important;
}

.fancybox-button--arrow_right {
    width: 50px !important;
    height: 50px !important;
    background: url('/themes/unfinishedlives/img/gallery-arrow-right.png') center center no-repeat !important;
    background-size: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.fancybox-button--arrow_left {
    margin-left: 50px;
}

.fancybox-button--arrow_left:hover {
    transform: rotate(180deg) scale(1.1) !important;
}

.fancybox-button--arrow_right {
    margin-right: 50px;
}

.fancybox-button--arrow_right:hover {
    transform: scale(1.1) !important;
}

/* Force arrows to be always visible */
.fancybox-navigation .fancybox-button {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Caption styling - description below image */
.fancybox-slide {
    position: relative !important;
}

.fancybox-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.fancybox-content img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
}

/* Fancybox caption styling */
.fancybox-slide .fancybox-caption {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif !important;
    line-height: 1.5 !important;
    text-align: center !important;
    padding: 15px 30px !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-sizing: border-box !important;
    z-index: 99999 !important;
    pointer-events: none !important;
}

.fancybox-slide .fancybox-caption {
    display: none !important;
}

@media (max-width: 1090px) {
    .fancybox-caption {
        font-size: 14px !important;
        padding: 15px 20px !important;
    }
}

.bottom-wrap {
    margin-bottom: 70px;
}
/* Responsive fancybox buttons */
@media (max-width: 1090px) {
    .fancybox-button {
        width: 40px !important;
        height: 40px !important;
    }
    
    .fancybox-button--close {
        top: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .fancybox-button--arrow_left,
    .fancybox-button--arrow_right {
        width: 40px !important;
        height: 40px !important;
    }
}
/* Responsive adjustments for embedded gallery */
@media (max-width: 1090px) {
    .gallery-grid-two-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item-embedded {
        aspect-ratio: 3/2;
    }
    
    .gallery-overlay-embedded .gallery-overlay-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .embedded-gallery {
        margin: 20px 0;
        padding: 15px 0;
    }
    
    .gallery-grid-two-columns {
        gap: 10px;
    }
    
    .gallery-item-embedded {
        border-radius: 6px;
    }
    
    .gallery-overlay-embedded .gallery-overlay-icon {
        width: 40px;
        height: 40px;
    }
}

/* Main Image Gallery Button Styles */
.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.main-image-container:hover .main-image {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Gallery button overlay */
.main-image-gallery-button {
    position: absolute;
    bottom: 20px;
    left: 233px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.main-image-gallery-button:hover {
}

.main-image-gallery-button img {
    width: 90px;
}

.gallery-icon {
    font-size: 16px;
    filter: none;
}

header.style-2 .main-menu ul > li > a {
    font-weight: 300;
}

header.style-2 .main-menu ul > li.active > a::before {
    background-color: transparent !important;
}

.menu-list a:hover::before,
.menu-list a:hover::after,
.menu-list a::before,
.menu-list a::after {
    display: none !important;
    background-color: transparent !important;
    border-bottom: none !important;
}

.menu-list a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
}

.content-description {
    padding-top: 30px;
    overflow-y: scroll;
    max-height: 918px;
    position: relative;
    padding-right: 20px;
}

/* Custom scrollbar styling */
.content-description::-webkit-scrollbar {
    width: 3px;
}

.content-description::-webkit-scrollbar-track {
    background: transparent;
}

.content-description::-webkit-scrollbar-thumb {
    background: #D7D7D7;
    border-radius: 10px;
}

.content-description::-webkit-scrollbar-thumb:hover {
    background: #3B8DA8;
}

/* Firefox scrollbar */
.content-description {
    scrollbar-width: thin;
    scrollbar-color: #D7D7D7 transparent;
    padding-right: 70px;
}

.content-description::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(248, 247, 245, 0), rgba(248, 247, 245, 1));
    pointer-events: none;
    z-index: 10;
    display: block;
    margin-top: -80px;
}

.tabs-navigation {
    margin-left: 225px;
    max-width: 470px;
}

.vertical-tabs-container .tabs-navigation .tab-nav-item {
    font-weight: 300;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
}

.vertical-tabs-container .tabs-navigation .tab-nav-item.active {
    font-weight: 600;
}

.embedded-gallery.page {
    margin: 0px;
    padding: 0px;
}

.embedded-gallery.page .gallery-grid-two-columns {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.embedded-gallery.page .gallery-item-embedded img {
    /* grid-template-columns: repeat(5, 1fr); */
}

.menu-list-post-module.lang-cz .box-header a,
.menu-list-post-module.lang-ukr .box-header a {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 100 !important;
    font-style: italic !important;
    line-height: 1.2 !important;
}

.menu-list-post-module.lang-cz .box-header a p,
.menu-list-post-module.lang-ukr .box-header a p {
    line-height: 34px;
}

.literatura-text.lang-cz,
.literatura-text.lang-ukr {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 100 !important;
    font-style: italic !important;
}

/* .menu-list .active a {
    color: #3B8DA8 !important;
}

.main-menu .active.pm-1-color a {
    color: red !important;
} */

/* Responsive adjustments for main image gallery button */
@media (max-width: 1090px) {
    .main-image-gallery-button {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 1550px) {
    .literatura-line {
        display: none;
    }

    .post-show .main-image {
        margin-left: 0;
        float: right;
        margin-right: 70px;
    }

    .unfinished-life-image {
        display: none !important;
    }

    .unfinished-life-image img {
        max-height: 100%; 
        width: auto;
    }
}

/* change for mobile vesrion */

/* Responsive adjustments */

@media (max-width: 1550px) {
    .tabs-navigation {
        margin-left: auto;
        margin-right: 70px;
        max-width: 470px;
    }
}

@media (min-width: 992px) and (max-width: 1090px) {
    header.style-2 .main-menu ul > li > a {
        font-size: 12px;
    }
}

@media (max-width: 1090px) {
    /* .artist-card.post-card img {
        height: 250px;
    } */
    
    .artist-card.post-card .post-title {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .artist-card.post-card .post-arrow-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .home2-banner-section,
    .home1-auction-slider-section img {
        margin-bottom: 50px !important;
    }

    .home1-auction-slider-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .footer-section .social-icons {
        margin-top: 20px;
    }

    .footer-section .social-icons.justify-content-end {
        justify-content: center !important;
    }

    .breadcrumbs {
        padding-top: 0px;
        padding-bottom: 22px;
    }

    .artist-card.post-card .post-title {
        font-size: 25px;
        padding: 0px 0px;
    }

    .menu-list-post-module {
        padding-left: 0px;
        margin-top: 20px;
    }

    .post-show .main-image {
        margin-right: 0px !important;
    }

    .post-show .content-description {
        padding-right: 13px !important;
    }

    .post-show .main-image-container {
        border-radius: 0px;
    }

    .tabs-navigation {
        margin-left: 0px;
        display: block;
    }

    .vertical-tabs-container .tabs-content-extension .tab-content-item {
        padding-left: 0px;
    }

    .fancybox-navigation .fancybox-button--arrow_left {
        margin-left: 5px;
    }

    .fancybox-navigation .fancybox-button--arrow_right {
        margin-right: 5px;
    }

    .fancybox-button.fancybox-button--close {
        right: 24px !important;
    }

    .fancybox-content img {
        max-width: 77vw !important;
    }

    .fancybox-image, .fancybox-spaceball {
        left: 49px;
    }

    .post-show .main-image {
        max-width: 100%;
    }

    .tabs-navigation {
        max-width: 100%;
        margin-right: 0px;
    }    
}