.billboard-centered .billboard-content{
   text-align: center;
}

.billboard-centered .billboard-content h1 {
   text-wrap: balance;
}

.tabs a {
   display: inline-block;
   padding: 16px 0;
   text-decoration: none;
   border-bottom: 2px solid white;
   font-size: clamp(14px, 3vw, 17px);
   white-space: nowrap;
}
.tabs a.active{
   border-bottom-color: var(--color-primary);
   font-weight: 500;
}
.tabs a:hover{
   color: #222;
}
.faq h3 {
   cursor: pointer;
}
.faq p {
   display: none;
}

.item-card{
   width: 100%;
}

.item-card .event-details h3 {
   font-weight: bold;
   font-size: 1.3em;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.item-card .event-details p {
   font-size: small;
   margin: 5px 0;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;   
}

.price {
   font-weight: bold;
}

.prev, .next {
   cursor: pointer;
   border: none;
   padding: 5px;
   display: inline;
}

@media (hover: none) { /* Hide buttons on touch devices */
   .prev, .next {
       display: none;
   }
}



.event-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.event-item {
   display: grid;
   grid-template-columns: 1fr 2fr 1fr;
   gap: 20px;
   align-items: center;
   padding: 10px;
   border-bottom: 1px solid #ccc;
}

.event-date {
   text-align: center;
}

.event-info strong {
   font-weight: bold;
}

.event-price {
   text-align: right;
}

.price-button {
   padding: 8px 16px;
   background-color: #007BFF;
   color: white;
   border: none;
   border-radius: 5px;
   cursor: pointer;
}

.price-button:hover {
   background-color: #0056b3;
}

.view-more {
   text-align: center;
   padding: 20px;
}

@media (max-width: 768px) {
   .event-item {
       grid-template-columns: 1fr 1fr;
       grid-template-areas:
           "date info"
           "price price";
   }

   .event-date {
       grid-area: date;
   }

   .event-info {
       grid-area: info;
   }

   .event-price {
       grid-area: price;
       text-align: center;
   }
}

.performer-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.performer-item {
   display: flex;
   width: 100%; /* Ensure the list item is full width */
   align-items: center; /* Vertically center the contents */
   margin-bottom: 24px; /* Space between rows */
   box-sizing: border-box;
   color: black !important;

}

.performer-avatar {
   width: 48px; /* Avatar takes up 20% of the list item's width */
   height: 48px; /* Maintain aspect ratio */
   margin-right: 16px;
   flex-shrink: 0; /* Prevent the image from shrinking */
   border-radius: 8px;
   object-fit: cover;
}

.performer-info {
   display: flex;
   flex-direction: column;
   justify-content: center; /* Center the text vertically */
   flex-grow: 1; /* Allow the text block to fill the rest of the item */
   text-decoration: none !important;
}

.performer-info strong {
   font-weight: bold;
   margin-bottom: 5px; /* Space between the name and the action text */
   font-size: 16px;
}

.performer-info span {
   cursor: pointer; /* Suggest interactivity */
   font-size: 13px;
}

.performer-list a.link-wrapper:hover{
   text-decoration:none !important;
}
.performer-list a.link-wrapper:hover{
   opacity: 0.9;
}

.venue-list{
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px; /* Adjust the gap between the columns as needed */   
}


.venue-list strong{
   margin-bottom: 5px; /* Space between the name and the action text */
   font-size: 15px;
   display: block; /* Make the link fill the container */
   overflow: hidden; /* Hide the overflow text */
   white-space: nowrap; /* Prevent the text from wrapping */
   text-overflow: ellipsis; /* Show ellipsis (...) when the text overflows */
   width: 240px; /* Ensure the strong element takes full width of the container */      
}
.venue-list span {
   cursor: pointer; /* Suggest interactivity */
   font-size: 1.07em;
}



.filter-buttons {
   margin-bottom: 20px;
}

.filter-buttons button {
   margin-right: 10px;
   padding: 10px 20px;
   cursor: pointer;
   border: 1px solid #E5E5E5;
   border-radius: 8px;
}

.filter-buttons button.active {
   background-color: var(--color-primary);
   color: white;
}

.spinner {
   text-align: center;
   margin-top: 20px;
}

.list-cities {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
   gap: 10px;
   list-style-type: none;
   padding: 0;
   margin: 0;
   border-left: 4px solid #e5e5e5;
   padding-left: 10px;
   margin-bottom: 48px   
}

.list-cities li{
   margin-bottom: 0.5rem;
   letter-spacing: 0.0125rem;
}


.list-cities li a {
   font-size: 16px;
}


.navigation-sort-cities {
   display: flex;
   justify-content: space-between; /* Distribute items evenly with space in between */
   margin-bottom: 40px; /* Space below the tabbed navigation */
   width: fit-content; /* Limit width to content width */
}

.navigation-sort-cities a {
   text-decoration: none;
   padding: 8px 16px; /* Adjust padding to create space around text */
   font-size: 15px;
   border-radius: 8px;
   margin-right: 16px;
   border: 1px solid #E5E5E5;
}

.navigation-sort-cities a.active {
   background: var(--color-primary);
   color: white;
}



.city-group {
   margin-bottom: 20px;
}

.item-card.skeleton {
   background: #f1f1f1;
   position: relative;
   overflow: hidden;
   height: 150px; /* Adjust height as needed */
   width: 100%; /* Adjust width as needed */
   border-radius: 18px;
   padding: unset;
   border: 10px solid white;
}

.item-card.skeleton::before {
   content: '';
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background: linear-gradient(90deg, rgba(224, 224, 224, 0) 0%, rgba(224, 224, 224, 0.8) 50%, rgba(224, 224, 224, 0) 100%);
   animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
   0% {
       transform: translateX(-100%);
   }
   100% {
       transform: translateX(100%);
   }
}


nav.tabs{
   display: flex;
   gap: 24px;
   overflow-x: auto;

   /* Moves the gutter to inside the element */
   /* margin-inline: var(--gutter-offset);   
   padding-inline: var(--gutter-size); */

   margin-block-end: clamp(16px, 3vw, 32px);

}

@media (max-width: 767px) {
   nav.tabs{
      margin-inline: calc(var(--gutter-size) * -1);   
      padding-inline: var(--gutter-size);      
   }
}



[data-show='billboard']{
   max-width: 1280px;
   margin: 0 auto;   
}
