.tag-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.tag-slider {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.tag-slide {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
}

.tag-slide img {
    max-width: 100%;
    height: auto;
}

.tag-slide h3 {
    font-size: 16px;
    margin: 8px 0;
}

@media (max-width: 768px) {
    .tag-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
