/* ==========================
   Blog Pagination
========================== */

.wpo-pagination{
    margin:60px 0 20px;
    display:flex;
    justify-content:center;
}

.wpo-pagination ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    align-items:center;
    gap:10px;
}

.wpo-pagination ul li{
    list-style:none;
}

.wpo-pagination ul li a,
.wpo-pagination ul li span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border:2px solid #fb5f36;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    color:#fb5f36;
    background:#fff;
    transition:all .35s ease;
    box-shadow:0 5px 15px rgba(251,95,54,.08);
}

/* Hover */
.wpo-pagination ul li a:hover{
    background:#fb5f36;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(251,95,54,.25);
}

/* Active Page */
.wpo-pagination ul li .current{
    background:#fb5f36;
    color:#fff;
    border-color:#fb5f36;
    box-shadow:0 10px 20px rgba(251,95,54,.25);
}

/* Prev & Next */
.wpo-pagination ul li:first-child a,
.wpo-pagination ul li:last-child a{
    width:auto;
    min-width:48px;
    padding:0 18px;
    font-weight:700;
}

/* Dots */
.wpo-pagination ul li .dots{
    border:none;
    background:transparent;
    box-shadow:none;
    color:#999;
    width:auto;
    height:auto;
}

/* Focus */
.wpo-pagination ul li a:focus{
    outline:none;
    box-shadow:0 0 0 4px rgba(251,95,54,.15);
}

/* Mobile */
@media (max-width:576px){

    .wpo-pagination ul{
        gap:6px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .wpo-pagination ul li a,
    .wpo-pagination ul li span{
        width:42px;
        height:42px;
        font-size:14px;
    }

    .wpo-pagination ul li:first-child a,
    .wpo-pagination ul li:last-child a{
        padding:0 14px;
    }

}

/* Gallery */
.image-gallery {
    margin-top: 40px;
}

.image-gallery__col {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all .4s ease;
    background: #fff;
}

.image-gallery__col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.image-gallery__col a {
    display: block;
    position: relative;
    overflow: hidden;
}

.image-gallery__col img {
    width: 100%;
    height: auto;   /* Same height for all */
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.image-gallery__col:hover img {
    transform: scale(1.08);
}

/* Dark Overlay */
.image-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: .4s ease;
}

.image-gallery__col:hover .image-gallery__overlay {
    opacity: 1;
}

/* Zoom Icon */
.image-gallery__col a::after {
    content: "＋";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 32px;
    color: #fff;
    border: 2px solid #fff;
    transition: .3s ease;
}

.image-gallery__col:hover a::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive */
@media (max-width: 991px) {
    .image-gallery__col img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .image-gallery__col img {
        height: 220px;
    }
}
.dark{background:#f6f7f8;}

.two-column-list {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    column-gap: 40px;
    padding-left: 20px;
}

.two-column-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}
.image-gallery__col {
    width: 100%;
    height: 500px; /* Change to your desired height */
    overflow: hidden;
}

.image-gallery__col a {
    display: block;
    width: 100%;
    height: 100%;
}

.image-gallery__col img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the box while maintaining aspect ratio */
    display: block;
}
header.site-header.header-style-2.nav-wide {
    width: 100%;
}