* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.slider-container {
    position: relative;
    width: 100vw;
    height: 103vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 769px) {
    .slide {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .slide  {
        left: 0 !important;
        justify-content: center;
        align-items: center;
    }
}

.desktop-image {
    display: block;
    width: 100%;
    height: 103vh;
    object-fit: cover;
    max-width: 100vw;
    max-height: 103vh;
}

.post-3047 .desktop-image,
.post-3050 .desktop-image,
.post-2954 .desktop-image {
    object-position: center center !important;
}  
.post-2953 .desktop-image {
    object-position: bottom center !important;
} 

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.pagination-button svg {
    fill: white;
}
.pagination-item {
    display: none;
}
.pagination-item.active {
    display: inline-block;
}


@media (max-width: 768px) {
    .slider-container {
        height: 90vh;
    }
}

/* Slider & slides remain unchanged */

.pagination-slider {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 10;
}

.pagination-item img {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.pagination-item.active img {
    transform: scale(2);
    opacity: 1;
}

.pagination-button {
 
    cursor: pointer;
            border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}



.pagination-button svg {
    display: block;
    stroke: white;
}

.pagination-button:hover {
	background-color: #ffffff00;
}
.pagination-button [type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, .pagination-button:focus, .pagination-button :hover {
   
    background-color: none ;
}
.pagination-button:focus {
  
    background-color: #cc336600  !important;
}








/* Mobile: only show active pagination logo */
@media (max-width: 768px) {
    .pagination-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
        width: 100%;
    }
	.pagination-item img{
width: 70px !important;
	}
    .pagination-item {
        display: none; /* hide all logos by default */
    }

    .pagination-item.active {
        display: inline-block; /* show only active logo */
        transform: scale(1.3); /* zoom active logo */
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 1;
    }

    .pagination-button {
        position: relative; 
        z-index: 2;
    }
}





.desktop-image {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}

.mobile-image {
    display: none;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    .mobile-image {
        display: block;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 320px) {
    .slider-container {
        height: 100vh;
    }
	.pagination-slider {
    bottom: 120px;
	}
}
@media (max-width:480px) {
    .slider-container {
        height: 100vh;
    }
	
	.pagination-slider {
    bottom: 120px;
	}
}

