.ticketyboo-news {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.ticketyboo-news-inner {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.ticketyboo-news ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.ticketyboo-news li {
    display: inline-block;
    padding-right: 20px;
}

.ticketyboo-news a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
}

.ticketyboo-news .list-separator {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url('assets/icon-news.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

/* Image layout styles */
.ticketyboo-news .image-item {
    display: inline-block;
    padding-right: 10px;
    box-sizing: border-box;
    vertical-align: top;
}

.ticketyboo-news .image-item img {
    height: 150px; /* Adjust this value to change the image size */
    width: auto;
    max-width: none;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsive image layout */
@media screen and (min-width: 1001px) {
    .ticketyboo-news .image-item {
        max-width: 300px; /* Adjust as needed for 6 columns */
    }
}

@media screen and (min-width: 671px) and (max-width: 1000px) {
    .ticketyboo-news .image-item {
        max-width: 225px; /* Adjust as needed for 4 columns */
    }
}

@media screen and (max-width: 670px) {
    .ticketyboo-news .image-item {
        max-width: 150px; /* Adjust as needed for 2 columns */
    }
}

/* Dark mode styles */
.ticketyboo-news-dark {
    color: white;
}

.ticketyboo-news-dark a {
    color: white;
}

.ticketyboo-news-dark .list-separator {
    background-image: url('assets/icon-news-white.svg');
}