body {
    margin: 0;
    font-family: sans-serif;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1830px;
    position: relative;
    height: 270px;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-message {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    color: #555;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-tile {
    display: inline-block;
    width: 300px;
    height: 100%;
    margin-right: 10px;
    background-color: #ccc;
    border-radius: 8px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    border: none;
    outline: none;
    overflow: hidden;
}

.carousel-tile:nth-child(even) {
    background-color: #aaa;
}

.carousel-tile:last-of-type {
    margin-right: 0;
}

.image-container {
    height: 150px;
}

.content-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 120px;
    background-color: #eee;
    box-sizing: border-box;
}

.event-title {
    font-size: 14px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.event-info {
    font-size: 13px;
    margin-top: auto;
}

.event-info p {
    margin: 0;
    line-height: 20px;
}

.event-venue, .event-city {
    color: #777;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
