.content-wrapper {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;  /* Allow horizontal scrolling if necessary */
    white-space: nowrap; /* Prevent line breaks between items */
}

.banner-items {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap; /* Prevent items from wrapping onto a new line */
}

.banner-item {
    display: inline-block; /* Ensure the items stay in a single row */
    margin-right: 20px;
    white-space: normal; /* Ensure text within banner item doesn't overflow */
}

.content-wrapper img {
    max-width: 100%; /* Make sure images scale properly */
    height: auto; /* Maintain aspect ratio */
}

.banner-section.music {
/*    width: 100%; /* Ensure banner section stretches across the available width */
    overflow: hidden; /* Hide overflowing content */
    white-space: nowrap; /* Ensure no wrapping within this section */
}

