.pgs-slider, .pgs-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pgs-gallery.grid-cols-3 a {
    width: calc(33.33% - 10px);
}
.pgs-view-more {
    display: inline-block;
    margin-top: 15px;
}

.pgs-slider {
    max-width: 397px;
    height: 475px !important;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.pgs-slider .swiper-wrapper {
    height: 100%;
}

.pgs-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.pgs-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pgs-slider-button {
	text-align: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}
.pgs-slider-button img{
 width: 24px; 
}

.view-more-btn {
display: inline-block;
    background-color: #0073aa00;
    color: #fff;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.view-more-btn:hover {
    color: #fff;
}

/* Pagination bullets */
.pgs-slider-main-container .swiper-pagination-bullet {
    width: 23px;
    height: 4px;
    border-radius: 4px;
    background: #FEFEFE6B;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

/* Active bullet */
.pgs-slider-main-container .swiper-pagination-bullet-active {
    width: 41px;
    height: 4px;
    border-radius: 4px;
    background: #F48711;
}

.pgs-slider-main-container .swiper-pagination {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 0px;
    padding: 0 0 0 25px;
    bottom: 30px !important;
}

.pgs-gallery-grid{
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.pgs-gallery-grid a{
  	display: block;
    max-width: 360px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px; /* optional: rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* optional: light shadow */
}
.pgs-gallery-grid img{
 	width: 100%;
    height: 100%;
    object-fit: cover; /* this makes sure the image fills the box without distortion */
    display: block;
  	border-radius: 8px !important;
}


