/* TEAM EVENT SCROLLER STYLES */

.trs-scroller-wrapper {
    width: 100%;
    overflow: hidden; /* hides scrollbar */
    background: #68BB5E; /* your green */
    padding: 10px 0;
    height: var(--trs-height, 100px);
    position: relative;
}

.trs-scroller {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    overflow-x: scroll; /* needed for JS/manual scroll */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
}
.trs-scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.trs-banner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 5px;
    height: calc(var(--trs-height, 100px) - 20px); /* fit container */
}

.trs-banner-image img {
    height: 100%;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

.trs-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 5px 10px;
    height: 100%;
}

.trs-event-title {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.trs-event-date {
    font-size: 14px;
    opacity: 0.8;
}

.trs-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.trs-scroll-btn:hover {
    background: rgba(0,0,0,0.8);
}

.trs-scroll-left { left: 10px; }
.trs-scroll-right { right: 10px; }

/* Responsive tweaks */
@media (max-width: 768px) {
    .trs-banner-item {
        min-width
