.guide-widget {
    gap: 20px;
}

.guide-widget .guide-item {
    width: calc(100% / 4 - 15px);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.guide-widget .guide-item img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-widget .item-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) calc(100% - 32px), rgba(0, 0, 0, 0) 100%);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 25px;
    font-weight: 500
}

@media screen and (max-width: 990px){
    .guide-widget .guide-item {
        width: calc(100% / 2 - 15px);
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }
}
