a {
  color:#34617a;
}
/* Accordion */
/* Remove display:flex from faq-question — let Webflow's grid handle its own layout */
.faq-question {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 32px;
    min-height: 48px;        /* fix the row height — adjust to match your design */
    display: flex;
    align-items: center;     /* vertically center the text within that fixed height */
}

.faq-question::after {
    /* content: '+'; */
    font-size: 1.4rem;
    font-weight: 300;
    color: currentColor;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: none;
}
.faq-item {
        grid-row-gap: 0rem  !important;
}

.faq-item.green .faq-question {
    cursor: default;
    min-height: 48px;        /* same value as above */
}

.faq-item.green .faq-question::after {
    display: none;
}
.faq-item.open .faq-question::after {
    content: '×';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px; /* larger than any answer will ever be */
}

.nav-dropdown-list {
  display: none;
}

.nav-dropdown:hover .nav-dropdown-list,
.nav-dropdown.w--open .nav-dropdown-list {
  display: block;
}

.div-block-98.mobile {
    display: none;
}

.div-block-98 {
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
}

.btn-primary.small {
    color: #171717;
    -webkit-text-stroke-color: #171717;
    background-color: #0000;
    border: 1px solid #000;
    border-radius: 10px;
    width: 100%;
    min-height: 54px;
    padding: 18px 24px;
    font-family: HelveticaNeueMedium, Arial, sans-serif;
    font-size: 16px;
    line-height: 18px;}

    .button-3 {
    color: rgb(35, 31, 32);
    text-align: center;
    background-color: rgba(56, 152, 236, 0);
    width: 90%;
    min-height: 54px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-family: HelveticaNeueBold, Arial, sans-serif;
    font-size: 16px;
    display: block;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-image: initial;
    border-radius: 10px;
    transition: transform 0.3s;
}

.button-3:hover {
  transform: translateY(-7px);
}

.nav-dropdown-list {
  display: none;
}

.nav-dropdown:hover .nav-dropdown-list,
.nav-dropdown.mobile-dropdown-open .nav-dropdown-list {
  display: block;
}
/* ============================================================
   ARTISTS DATABASE — artists.css
   Sections:
   1. Accordion rows (colors, hover, open)
   2. Sticky header + controls
   3. 3-column grid layout
   4. Expanded detail panel
   5. Image carousel
   6. Controls bar + search
   7. Filter panel
   8. Count + loader
   9. Loader overlay
   10. Pagination
   11. Responsive / mobile
============================================================ */


/* ============================================================
   1. ACCORDION ROWS
============================================================ */

#db-rows .faq-item {
  background: #F8F7F2;
  transition: background 0.15s ease;
}

#db-rows .faq-item:not(.green):hover {
  background: #FDCC9D;
}

#db-rows .faq-item.open {
  background: #FDCC9D;
}


/* ============================================================
   2. STICKY HEADER + CONTROLS
============================================================ */

.db-controls {
  position: sticky !important;
  top: 85px !important;
  z-index: 99 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  background: #94A0BB !important;
  padding: 20px 0 !important;
  margin: 0 !important;
}

.faq-item.green {
  position: sticky;
  top: 165px;
  z-index: 98;
}


/* ============================================================
   3. 3-COLUMN GRID LAYOUT
============================================================ */

#db-rows .faq-question .wf-layout-layout,
.faq-item.green .faq-question .wf-layout-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 0 !important;
  width: 100%;
  align-items: center;
}

#db-rows .faq-question .w-layout-cell,
.faq-item.green .faq-question .w-layout-cell {
  padding: 0;
}


/* ============================================================
   4. EXPANDED DETAIL PANEL
============================================================ */

/* Override inline style max-height so long content never cuts off */
.faq-item.open .faq-answer {
  max-height: none !important;
  overflow: visible !important;
}

.faq-answer .artist-expanded {
  display: flex;
  flex-direction: column;
  padding: 16px 8vw 20px;
  gap: 14px;
}

.artist-expanded__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artist-expanded__label {
  font-family: 'Comfortaa', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
}

.artist-expanded__text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.65;
  white-space: pre-wrap;
}

.artist-expanded__website {
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
  letter-spacing: 0.03em;
  display: inline-block;
}

.artist-expanded__website:hover {
  opacity: 0.6;
}

.artist-expanded__credit {
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: black;
  letter-spacing: 0.02em;
  margin-top: 6px;
}


/* ============================================================
   5. IMAGE CAROUSEL
============================================================ */

/* .carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
} */
.carousel {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Row containing prev arrow, image, next arrow side by side */
.carousel-track-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.carousel-track {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.carousel-arrow {
  flex: 0 0 auto;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
  color: #1a1a1a;
  line-height: 1;
  background: transparent;
}

.carousel-arrow:hover { background: #94A0BB; }
.carousel-arrow img   { width: 100%; height: 100%; object-fit: contain; }
.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
}

.carousel-img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

/* .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
  color: #1a1a1a;
  line-height: 1;
  background: transparent;
} */

/* .carousel-arrow:hover { background: #94A0BB; }
.carousel-prev { left: 220px; }
.carousel-next { right: 220px; } */

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 4px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.carousel-dot.active {
  background: #1a1a1a;
}


/* ============================================================
   6. CONTROLS BAR + SEARCH
============================================================ */

/* Neutralize faq-question styles inside db-controls */
.db-controls .faq-question {
  cursor: default !important;
  min-height: unset !important;
  padding-top: 0 !important;
  padding-left: 4vw !important;
  padding-bottom: 0 !important;
  display: block !important;
}

.db-controls .faq-question::after {
  display: none !important;
}

.db-controls-top {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.db-filter-panel .db-filter-inner {
  box-sizing: border-box !important;
}

/* Search box */
.db-search-box {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  background: #fff !important;
  border-radius: 999px !important;
  padding: 0 14px !important;
  height: 40px !important;
  gap: 8px !important;
  box-shadow: none !important;
  max-width: 420px !important;
}

.db-search-box input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: 'Comfortaa', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  color: #1a1a1a !important;
  width: 100% !important;
}

.db-search-box input::placeholder {
  color: #aaa !important;
}

.db-search-icon {
  color: #aaa !important;
  flex-shrink: 0 !important;
  width: 15px !important;
  height: 15px !important;
}

/* Filter button */
.db-filter-btn {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  font-family: 'Comfortaa', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  color: #fff !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding-right: 25vw !important;
}

.db-filter-btn .icon {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  font-style: normal;
  font-weight: 300;
  transition: none;
}

.db-filter-btn.active .icon {
  transform: none;
}


/* ============================================================
   7. FILTER PANEL
============================================================ */

.db-filter-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.db-filter-panel.open {
  max-height: 600px;
}

.db-filter-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 10vw !important;
  padding: 20px 0 8px 0 !important;
}

.db-filter-inner > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.db-filter-group-label {
  font-family: 'Comfortaa', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  margin-bottom: 4px !important;
}

/* Year grid — 3 columns, scrollable after 4 rows */
.db-year-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 80px) !important;
  column-gap: 8px !important;
  row-gap: 6px !important;
  max-height: calc(4 * 26px + 3 * 6px) !important;
  overflow-y: auto !important;
  padding-right: 6px !important;
  scrollbar-width: thin;
  scrollbar-color: #fff6 transparent;
}

.db-year-grid::-webkit-scrollbar        { width: 5px; }
.db-year-grid::-webkit-scrollbar-track  { background: transparent; }
.db-year-grid::-webkit-scrollbar-thumb  { background: rgba(255,255,255,0.4); border-radius: 999px; }

/* Program list */
.db-program-list {
  display: grid !important;
  grid-template-columns: repeat(3, auto) !important;
  column-gap: 8px !important;
  row-gap: 6px !important;
}

/* Radio labels */
.db-radio-label {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-family: 'Comfortaa', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #fff !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  letter-spacing: 0.02em !important;
  line-height: 1.4 !important;
  min-height: 20px !important;
}

.db-radio-label input[type="radio"],
.db-radio-label input[type="checkbox"] {
  accent-color: #b4d400 !important;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  background: transparent !important;
  position: relative !important;
}

.db-radio-label input[type="checkbox"]:checked,
.db-radio-label input[type="radio"]:checked {
  background: #b4d400 !important;
  border-color: #b4d400 !important;
}


/* ============================================================
   8. COUNT + LOADER TEXT
============================================================ */

.db-count {
  font-family: 'Comfortaa', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #666;
  padding: 6px 0 4px;
  text-transform: uppercase;
}

.db-loader {
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #888;
  text-transform: uppercase;
  padding: 6px 0;
}


/* ============================================================
   9. LOADER OVERLAY (full-screen GIF while fetching)
============================================================ */

.db-loader-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Desktop GIF — fills screen maintaining 16:9 proportion */
.db-loader-gif--desktop {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile GIF — hidden on desktop */
.db-loader-gif--mobile {
  display: none;
}

.db-loader-text {
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ============================================================
   10. PAGINATION
============================================================ */

.db-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 24px 0 12px;
}

.db-pagination__btn {
    border-radius: 15px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  background: #F8F7F2;
  border: 1px solid #333;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  min-width: 40px;
  text-align: center;
}

.db-pagination__btn:hover {
  background: #FDCC9D;
  border-color: #FDCC9D;
}

.db-pagination__btn.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
  cursor: default;
}

.db-pagination__dots {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #888;
  padding: 0 4px;
  user-select: none;
}


/* ============================================================
   11. RESPONSIVE — MOBILE (max-width: 767px)
============================================================ */

@media (max-width: 767px) {

  .card_title-copy {
            font-size: 70px;
  }

  .heading-16 {
    padding: 10px;
  }

  .heading-16-copy {
    padding: 10px;
  }

  .db-loader-gif--desktop {
    display: none;
  }

  .db-loader-gif--mobile {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
  }

  /* Keep 3-column grid on mobile — aligns with green header */
  #db-rows .faq-question .wf-layout-layout,
  .faq-item.green .faq-question .wf-layout-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  /* Prevent overflow in grid cells */
  #db-rows .faq-question .w-layout-cell,
  .faq-item.green .faq-question .w-layout-cell {
    overflow: hidden;
    word-break: break-word;
    min-width: 0;
  }

  /* Smaller font so 3 columns fit */
  .text-size-large-faq-copy,
  .text-size-large-search {
    font-size: 12px !important;
  }

  /* Expanded content aligned with Name column */
  .faq-answer {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .faq-answer .artist-expanded {
    padding: 12px 2vw 16px 8vw !important;
    margin-left: 0 !important;
  }

  .artist-expanded__row {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .artist-expanded__label {
    font-size: 12px !important;
  }

  .artist-expanded__text {
    font-size: 12px !important;
  }

  /* Make the filter row scrollable so Year isn't cut off */
  .db-filter-inner {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 12px !important; /* room for scrollbar so it doesn't overlap content */
  }

  .db-filter-inner > div {
    flex-shrink: 0 !important; /* keep Program/Year from squishing */
  }

  /* Let the year grid size to its content instead of being capped by fixed 80px columns */
 .db-year-grid {
    grid-template-columns: repeat(2, minmax(70px, 1fr)) !important;
  }

  .db-program-list {
    grid-template-columns: 1fr !important;
  }
.div-block-98 {
    display: none;
}

.div-block-98.mobile  {
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
}

    .div-block {
        order: 9999;}

    .div-block-58 {
        order: -9999;
        width: 80vw;
    }

  /* Carousel arrows closer together on mobile */
  /* .carousel-prev { left: 100px; }
  .carousel-next { right: 100px; } */

  .w-nav-menu {
    display: none;
  }
  .w-nav-menu.mobile-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
  }

    .nav-dropdown {
    position: relative !important;
  }

  .nav-dropdown-list {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
  }

  .nav-dropdown:hover .nav-dropdown-list,
  .nav-dropdown.mobile-dropdown-open .nav-dropdown-list {
    display: block !important;
  }

}