.pgw {
    position: relative
}

.pgw .pgw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px
}

.pgw .pgw-item {
    display: block;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    overflow: hidden
}

.pgw .pgw-thumb {
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%
}

.pgw .pgw-title {
    margin: 12px 14px 16px;
    font-size: 18px;
    line-height: 1.2
}

.pgw .swiper {
    display: none
}

.pgw .swiper-pagination {
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px
}

.pgw .swiper-pagination-progressbar {
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, .15)
}

.pgw .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: currentColor
}

.pgw .pgw-item {
    position: relative
}

.pgw .pgw-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background .25s ease;
}

.pgw .pgw-title {
    text-align: center
}

@media (max-width:767px) {
    .pgw .pgw-grid {
        display: none
    }

    .pgw .swiper {
        display: block;
        overflow: visible
    }

    .pgw .swiper-slide {
        height: auto
    }
}