.reference-swiper-wrap {
    position: relative;
    margin-top: 30px;
}

.reference-swiper {
    overflow: hidden;
    padding-bottom: 30px;
}

.reference-swiper .swiper-slide {
    height: auto;
}

.reference-swiper .swiper-slide > * {
    height: 100%;
}

.reference-swiper .blog-item {
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-swiper .blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.reference-swiper .blog-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.reference-swiper-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.reference-swiper-prev,
.reference-swiper-next {
    width: 44px;
    height: 44px;
    border: 2px solid #7FB800;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    background: #fff;
}

.reference-swiper-prev:hover,
.reference-swiper-next:hover {
    background: #7FB800;
}

.reference-swiper-prev::before,
.reference-swiper-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #7FB800;
    border-right: 2px solid #7FB800;
    transition: all 0.25s ease;
}

.reference-swiper-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.reference-swiper-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.reference-swiper-prev:hover::before,
.reference-swiper-next:hover::before {
    border-color: #fff;
}

.reference-swiper-pagination {
    text-align: center;
    margin-top: 10px;
}

.reference-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #dcdcdc;
    opacity: 1;
}

.reference-swiper-pagination .swiper-pagination-bullet-active {
    background: #7FB800;
    transform: scale(1.2);
}

@media (min-width: 992px) {
    .reference-swiper-pagination {
        display: none;
    }
}