.qing-pps {
    position: relative;
}

.qing-pps__swiper {
    overflow: hidden;
    position: relative;
}

.qing-pps__item {
    display: block;
    text-decoration: none;
}

.qing-pps__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.qing-pps__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease;
}

.qing-pps__item:hover .qing-pps__img {
    transform: scale(1.05);
}

.qing-pps__title {
    margin: 0.85rem 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #0f1d2f;
    text-align: center;
    transition: color 0.2s;
}

.qing-pps__item:hover .qing-pps__title {
    color: #196eca;
}

/* Navigation */
.qing-pps__nav {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 16px));
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #0f1d2f;
    transition: color 0.2s;
}

.qing-pps__nav:hover {
    color: #196eca;
}

.qing-pps__nav svg {
    width: 14px;
    height: 14px;
}

.qing-pps__nav--prev {
    left: 12px;
}

.qing-pps__nav--next {
    right: 12px;
}

@media (max-width: 1024px) {
    .qing-pps__nav--prev {
        left: 8px;
    }
    .qing-pps__nav--next {
        right: 8px;
    }
}
