@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/encuentramusico/poppins-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/encuentramusico/poppins-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/encuentramusico/poppins-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/encuentramusico/dancing-script-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.em-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.em-btn i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.em-btn:hover {
  transform: translateY(-3px);
}
.em-btn:hover i {
  transform: translateX(3px);
}
.em-btn:active {
  transform: translateY(-1px);
}
.em-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.em-btn:hover::before {
  opacity: 1;
}
.em-btn.em-btn-primary {
  background: linear-gradient(135deg, #16bd9c, #1a89bc);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26, 137, 188, 0.25);
}
.em-btn.em-btn-primary:hover {
  box-shadow: 0 12px 28px rgba(26, 137, 188, 0.35);
}
.em-btn.em-btn-secondary {
  background: linear-gradient(135deg, #16bd9c, rgb(16.682464455, 143.317535545, 118.2938388626));
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 189, 156, 0.25);
}
.em-btn.em-btn-secondary:hover {
  box-shadow: 0 12px 28px rgba(22, 189, 156, 0.35);
}
.em-btn.em-btn-dark {
  background: linear-gradient(135deg, #0f172a, rgb(35.1315789474, 53.8684210526, 98.3684210526));
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}
.em-btn.em-btn-dark:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}
.em-btn.em-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(4px);
}
.em-btn.em-btn-ghost:hover {
  background: rgba(26, 137, 188, 0.05);
  border-color: #1a89bc;
  color: #1a89bc;
}
.em-btn.em-btn-ghost.white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.em-btn.em-btn-ghost.white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}
.em-btn.em-btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 12px;
}
.em-btn.em-btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.125rem;
}
.em-btn.disabled, .em-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(1);
}

.em-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.em-section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #475569;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.5;
}

.em-section-spacing {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.form-select-premium {
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.25rem center !important;
  background-size: 16px 12px !important;
  border: 2px solid transparent !important;
  border-radius: 9999px !important;
  color: #1e293b !important;
  cursor: pointer !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 0.85rem 3rem 0.85rem 1.5rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  width: 100%;
}
.form-select-premium:hover {
  background-color: #fff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-1px);
}
.form-select-premium:focus {
  background-color: #fff !important;
  border-color: rgba(22, 189, 156, 0.4) !important;
  box-shadow: 0 0 0 4px rgba(22, 189, 156, 0.15) !important;
  outline: none !important;
}
.form-select-premium:disabled {
  background-color: rgba(255, 255, 255, 0.5) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
.form-select-premium.is-loading {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2316bd9c' d='M12,4V2A10,10 0 0,0 2,12H4A8,8 0 0,1 12,4Z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='0.8s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E") !important;
}

.select2-container--premium {
  width: 100% !important;
}
.select2-container--premium .select2-selection--single {
  background-color: #ffffff !important;
  border: 2px solid transparent !important;
  border-radius: 9999px !important;
  height: auto !important;
  padding: 0.85rem 1.5rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
}
.select2-container--premium .select2-selection--single .select2-selection__rendered {
  color: #1e293b !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 0 !important;
  line-height: 1.5 !important;
  padding-right: 2rem !important;
}
.select2-container--premium .select2-selection--single .select2-selection__placeholder {
  color: #64748b !important;
}
.select2-container--premium .select2-selection--single .select2-selection__arrow {
  display: none !important;
}
.select2-container--premium .select2-selection--single::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.select2-container--premium.select2-container--open .select2-selection--single {
  border-color: rgba(22, 189, 156, 0.4) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}
.select2-container--premium.select2-container--open .select2-selection--single::after {
  transform: translateY(-50%) rotate(180deg);
}
.select2-container--premium .select2-dropdown {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  margin-top: 8px !important;
  overflow: hidden !important;
  z-index: 9999 !important;
  animation: select2Pop 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes select2Pop {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.select2-container--premium .select2-search--dropdown {
  padding: 12px 15px !important;
}
.select2-container--premium .select2-search--dropdown .select2-search__field {
  background-color: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 10px 15px !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  outline: none !important;
  transition: border-color 0.2s ease;
}
.select2-container--premium .select2-search--dropdown .select2-search__field:focus {
  border-color: #16bd9c !important;
  background-color: #fff !important;
}
.select2-container--premium .select2-results__options {
  max-height: 250px !important;
  padding: 8px !important;
}
.select2-container--premium .select2-results__options::-webkit-scrollbar {
  width: 6px;
}
.select2-container--premium .select2-results__options::-webkit-scrollbar-track {
  background: transparent;
}
.select2-container--premium .select2-results__options::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}
.select2-container--premium .select2-results__option {
  padding: 12px 15px !important;
  color: #475569 !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  border-radius: 10px !important;
  margin-bottom: 2px !important;
  transition: all 0.2s ease !important;
}
.select2-container--premium .select2-results__option[aria-selected=true] {
  background-color: #f1f5f9 !important;
  color: #1e293b !important;
  font-weight: 600 !important;
}
.select2-container--premium .select2-results__option--highlighted[aria-selected] {
  background-color: #16bd9c !important;
  color: #ffffff !important;
  transform: translateX(4px);
}
.select2-container--premium .select2-results__message {
  padding: 15px !important;
  color: #94a3b8 !important;
  font-size: 0.9rem !important;
  text-align: center;
}

.premium-modal .modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background: #ffffff;
}
.premium-modal .modal-header {
  background: radial-gradient(circle at 10% 15%, #16bd9c, #1a89bc);
  padding: 1.5rem 2rem;
  border-bottom: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.premium-modal .modal-header .modal-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.5px;
}
.premium-modal .modal-header .modal-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.premium-modal .modal-header .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  background-image: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s;
  margin: 0;
  padding: 0;
  border: none;
}
.premium-modal .modal-header .btn-close::before {
  content: "\f622";
  font-family: "bootstrap-icons";
  font-size: 1.25rem;
}
.premium-modal .modal-header .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.premium-modal .modal-body {
  padding: 2rem;
  background: #ffffff;
}
.premium-modal .modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 576px) {
  .premium-modal .modal-footer {
    flex-direction: column;
  }
  .premium-modal .modal-footer .action-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .premium-modal .modal-dialog {
    margin: 0.5rem auto;
    max-width: 95%;
    width: 95%;
  }
  .premium-modal .modal-header {
    padding: 1.25rem 1.5rem;
  }
  .premium-modal .modal-header .modal-title {
    font-size: 1.25rem;
    padding-right: 2.5rem;
  }
  .premium-modal .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 991px) {
  body.centros-musica-view {
    --filters-top-offset: calc(var(--navbar-offset, 75px) + 0.75rem);
  }
  body.centros-musica-view.centros-musica-nav-hidden {
    --filters-top-offset: 1rem;
  }
  body.centros-musica-view .navbar {
    transition: transform 0.25s ease;
    will-change: transform;
  }
  body.centros-musica-nav-hidden .navbar {
    transform: translateY(-110%);
  }
  .mobile-filter-anchor {
    position: sticky;
    top: var(--filters-top-offset, 1rem);
    z-index: 2000;
    padding: 0 1rem;
    margin-bottom: 1.25rem;
    pointer-events: none;
  }
  .mobile-filter-anchor .mobile-filter-sticky {
    position: sticky;
    bottom: 0;
    pointer-events: auto;
  }
  .mobile-filter-anchor .btn-mobile-filter-trigger {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: #0f172a;
    font-size: 1rem;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
  }
  .mobile-filter-anchor .btn-mobile-filter-trigger small {
    font-size: 0.75rem;
    color: #475569;
  }
  .mobile-filter-anchor .btn-mobile-filter-trigger:hover,
  .mobile-filter-anchor .btn-mobile-filter-trigger:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  }
  .mobile-modal-fullscreen {
    --modal-gradient: linear-gradient(160deg, rgba(249, 251, 255, 0.95), rgba(238, 244, 255, 0.95));
    z-index: 1050;
  }
  .mobile-modal-fullscreen .modal-dialog {
    margin: 0;
    min-height: 100vh;
  }
  .mobile-modal-fullscreen .modal-content {
    border-radius: 0;
    min-height: 100vh;
    background: var(--modal-gradient);
    border: none;
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .mobile-modal-fullscreen .mobile-modal-fullscreen__surface {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 246, 250, 0.92));
    border: 1px solid rgba(15, 23, 42, 0.05);
  }
  .mobile-modal-fullscreen .mobile-modal-fullscreen__header {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .mobile-modal-fullscreen .modal-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
  }
  .mobile-modal-fullscreen .mobile-modal-close-pill {
    background: #fdfdfe;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #475569;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    cursor: pointer;
    text-decoration: none;
  }
  .mobile-modal-fullscreen .mobile-modal-close-pill span {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin-top: 1px;
  }
  .mobile-modal-fullscreen .mobile-modal-close-pill i {
    font-size: 0.8rem;
    color: var(--accent-color);
    display: flex;
  }
  .mobile-modal-fullscreen .mobile-modal-close-pill:active {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.12);
    transform: scale(0.94);
    box-shadow: none;
  }
  .mobile-modal-fullscreen .mobile-modal-fullscreen__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    background: transparent;
  }
  .mobile-modal-fullscreen .mobile-modal-fullscreen__content {
    background: #fff;
    padding: 1.5rem;
    min-height: 100%;
  }
  .mobile-modal-fullscreen .mobile-modal-fullscreen__footer {
    padding: 1.25rem 1.5rem 2rem;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: center;
  }
  .mobile-modal-fullscreen .mobile-modal-fullscreen__footer button {
    width: auto;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-modal-fullscreen .mobile-modal-fullscreen__footer button:hover {
    color: #0f172a;
  }
}
.search-hero {
  position: relative;
  padding: 4rem 1rem 5.75rem;
  background: var(--accent-gradient, radial-gradient(circle at 10% 15%, var(--secondary-color, #16bd9c), var(--accent-color, #1a89bc)));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: -2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/encuentramusico/heromusicobuscador.webp);
  background-size: cover;
  background-position: center 40%;
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.search-hero--seo {
  margin-bottom: 0;
  padding-top: clamp(4.75rem, 8vw, 5.8rem);
  padding-bottom: clamp(1.95rem, 3.2vw, 2.45rem);
}

.search-hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.search-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.search-hero--seo .search-hero-content {
  max-width: 920px;
}

.search-hero-copy {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.search-hero--seo .search-hero-copy {
  max-width: 700px;
  margin: 0 auto;
  gap: 0.35rem;
}

.search-hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.search-hero-kicker.is-hidden,
.search-hero-summary.is-hidden,
.search-hero-title__prefix.is-hidden {
  display: none;
}

.search-hero-title {
  font-size: clamp(1.85rem, 6vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  white-space: normal;
  opacity: 1;
  display: block;
  width: 100%;
  max-width: 850px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.search-hero-title--seo {
  max-width: 18ch;
  margin-bottom: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  text-wrap: balance;
}

.search-hero-title__prefix {
  display: inline-block;
  margin-right: 0.35rem;
}

.search-hero-title__accent {
  background: none;
  display: inline-block;
  font-weight: 700;
  color: #161f22;
  -webkit-text-fill-color: #161f22;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.search-hero-title__accent.is-exiting {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  filter: blur(6px);
}

.search-hero-title__accent.is-entering {
  opacity: 0;
  transform: translateY(-6px) scale(1.02);
  filter: blur(6px);
}

.search-hero-title__accent--seo {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-weight: 800;
}

.search-hero-kicker.is-exiting,
.search-hero-summary.is-exiting,
.results-count-badge.is-exiting {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  filter: blur(6px);
}

.search-hero-kicker.is-entering,
.search-hero-summary.is-entering,
.results-count-badge.is-entering {
  opacity: 0;
  transform: translateY(-6px) scale(1.01);
  filter: blur(6px);
}

.search-hero-summary {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.94rem, 1.55vw, 1rem);
  font-weight: 500;
  line-height: 1.58;
  text-wrap: balance;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.results-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #fff;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.results-count-badge--seo {
  margin-top: 0.65rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

@media (max-width: 991px) {
  .search-hero {
    padding-top: 6.5rem;
    padding-bottom: 4.9rem;
  }
  .search-hero--seo {
    padding-top: 5.8rem;
    padding-bottom: 2.2rem;
  }
  .search-hero-title {
    font-size: 2.2rem;
    padding: 0 0.5rem;
  }
  .search-hero-title--seo {
    max-width: 16.5ch;
    font-size: clamp(1.95rem, 7vw, 2.65rem);
  }
  .search-hero-summary {
    padding: 0 1rem;
  }
  .search-hero-kicker {
    padding: 0 1rem;
  }
}
@media (max-width: 575px) {
  .search-hero {
    padding-top: 6.15rem;
    padding-bottom: 4.25rem;
  }
  .search-hero--seo {
    padding-top: 5.35rem;
    padding-bottom: 1.95rem;
  }
  .search-hero-title--seo {
    max-width: 15.5ch;
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    letter-spacing: -0.038em;
  }
  .results-count-badge {
    margin-top: 0.75rem;
  }
  .results-count-badge--seo {
    margin-top: 0.55rem;
  }
}
.search-content-shell {
  position: relative;
  z-index: 5;
}

.search-seo-faq {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.6rem, 3.4vw, 2.2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.search-seo-faq__header {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.search-seo-faq__eyebrow {
  margin: 0 0 0.65rem;
  color: rgba(71, 85, 105, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-seo-faq__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.search-seo-faq__summary {
  margin: 0.85rem 0 0;
  color: rgba(30, 41, 59, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.search-seo-faq__list {
  display: grid;
}

.search-seo-faq__item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.search-seo-faq__item:first-child {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.search-seo-faq__question {
  margin: 0;
}

.search-seo-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
}

.search-seo-faq__trigger:hover,
.search-seo-faq__trigger:focus-visible {
  color: #0f766e;
}

.search-seo-faq__trigger:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.35);
  outline-offset: 4px;
  border-radius: 12px;
}

.search-seo-faq__icon {
  position: relative;
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  color: rgba(71, 85, 105, 0.92);
}

.search-seo-faq__icon::before,
.search-seo-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.search-seo-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.search-seo-faq__item.is-open .search-seo-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.search-seo-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, opacity 0.24s ease;
  opacity: 0.68;
}

.search-seo-faq__item.is-open .search-seo-faq__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.search-seo-faq__panel-inner {
  overflow: hidden;
}

.search-seo-faq__panel-inner p {
  margin: 0;
  padding: 0 0 1.2rem;
  max-width: 72ch;
  color: rgba(30, 41, 59, 0.74);
  line-height: 1.8;
}

@media (min-width: 992px) {
  .search-seo-faq {
    padding-right: clamp(0rem, 3vw, 1rem);
  }
}
@media (max-width: 575px) {
  .search-seo-faq__eyebrow {
    letter-spacing: 0.12em;
  }
  .search-seo-faq__trigger {
    padding: 1rem 0;
    align-items: flex-start;
  }
  .search-seo-faq__panel-inner p {
    padding-bottom: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .search-seo-faq__icon::before,
  .search-seo-faq__icon::after,
  .search-seo-faq__panel {
    transition: none;
  }
}
.search-seo-bottom {
  margin-top: clamp(2.35rem, 4.8vw, 3.7rem);
  padding-top: clamp(1.35rem, 2.8vw, 1.9rem);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.search-seo-bottom--after-faq {
  margin-top: clamp(1.65rem, 3vw, 2.25rem);
  padding-top: clamp(1.15rem, 2.4vw, 1.45rem);
}

.search-seo-bottom__intro {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.search-seo-bottom__eyebrow {
  margin: 0;
  color: rgba(71, 85, 105, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-seo-bottom__rows {
  display: grid;
  gap: clamp(1.4rem, 2.8vw, 2rem);
}

.search-seo-bottom__row {
  display: grid;
  gap: 0.9rem;
}

.search-seo-bottom__row-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.search-seo-bottom__fade {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

@supports not (overflow: clip) {
  .search-seo-bottom__fade {
    overflow-x: hidden;
  }
}
.search-seo-bottom__fade::before,
.search-seo-bottom__fade::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 26px;
  z-index: 2;
  pointer-events: none;
}

.search-seo-bottom__fade::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.search-seo-bottom__fade::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.search-seo-bottom__fade--province {
  --search-seo-fade-width: 30px;
}

.search-seo-bottom__fade--province::before,
.search-seo-bottom__fade--province::after {
  width: var(--search-seo-fade-width);
}

.search-seo-bottom-swiper {
  margin: 0 -0.35rem;
  overflow: visible;
}

.search-seo-bottom__track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  padding: 0.3rem 0.35rem;
}

.search-seo-bottom-swiper.swiper-initialized .search-seo-bottom__track {
  gap: 0;
  flex-wrap: nowrap;
}

.search-seo-bottom__track .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
  display: inline-flex;
}

.search-seo-bottom__link {
  position: relative;
  text-decoration: none;
  transition: transform 320ms cubic-bezier(0.23, 1, 0.32, 1), border-color 320ms ease, box-shadow 320ms ease, color 320ms ease, opacity 320ms ease;
}

.search-seo-bottom__link--chip {
  align-items: center;
  min-height: 50px;
  padding: 0.78rem 1.4rem 0.78rem 1.62rem;
  border-radius: 18px;
  border: 1px solid rgba(var(--accent-color-rgb, 26, 137, 188), 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.94));
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
  white-space: nowrap;
}

.search-seo-bottom__link--chip::before {
  content: "";
  position: absolute;
  left: 0.68rem;
  top: 50%;
  width: 0.42rem;
  height: 1.42rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--accent-color-rgb, 26, 137, 188), 0.92), rgba(var(--secondary-color-rgb, 22, 189, 156), 0.72));
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.search-seo-bottom__link--chip::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.search-seo-bottom__link--chip:hover,
.search-seo-bottom__link--chip:focus-visible {
  color: var(--accent-color);
  border-color: rgba(var(--accent-color-rgb, 26, 137, 188), 0.42);
  box-shadow: 0 18px 34px rgba(var(--accent-color-rgb, 26, 137, 188), 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-4px);
  outline: none;
}

.search-seo-bottom__link--province {
  align-items: center;
  min-height: 48px;
  padding: 0.28rem 0;
  color: #0f172a;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  white-space: nowrap;
  opacity: 0.82;
  border-bottom: 2px solid transparent;
}

.search-seo-bottom__link--province:hover,
.search-seo-bottom__link--province:focus-visible {
  color: var(--accent-color);
  opacity: 1;
  border-color: rgba(var(--accent-color-rgb, 26, 137, 188), 0.48);
  transform: translateY(-2px);
  outline: none;
}

@media (min-width: 768px) {
  .search-seo-bottom__fade--province {
    --search-seo-fade-width: 74px;
    overflow: hidden;
  }
  .search-seo-bottom__fade--province::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0) 100%);
  }
  .search-seo-bottom__fade--province::after {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0) 100%);
  }
  .search-seo-bottom-swiper {
    margin: 0;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
         user-select: none;
  }
  .search-seo-bottom-swiper.is-pointer-dragging {
    cursor: grabbing;
  }
  .search-seo-bottom-swiper,
  .search-seo-bottom-swiper * {
    -webkit-user-select: none;
    -moz-user-select: none;
         user-select: none;
  }
  .search-seo-bottom__link {
    -webkit-user-select: none;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-drag: none;
  }
}
body.em-dragging-search-seo-swipers,
body.em-dragging-search-seo-swipers .search-seo-bottom-swiper,
body.em-dragging-search-seo-swipers .search-seo-bottom-swiper * {
  cursor: grabbing;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

@media (max-width: 767px) {
  .search-seo-bottom__fade {
    overflow: hidden;
  }
  .search-seo-bottom-swiper {
    margin: 0;
    overflow: hidden;
  }
  .search-seo-bottom__track {
    gap: 0.72rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .search-seo-bottom__fade::before,
  .search-seo-bottom__fade::after {
    width: 18px;
  }
}
@media (max-width: 575px) {
  .search-seo-bottom__eyebrow {
    letter-spacing: 0.12em;
  }
  .search-seo-bottom__row {
    gap: 0.72rem;
  }
  .search-seo-bottom__link--chip {
    min-height: 46px;
    padding: 0.7rem 1.18rem 0.7rem 1.42rem;
    font-size: 0.86rem;
  }
  .search-seo-bottom__link--province {
    font-size: clamp(1.05rem, 7vw, 1.42rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .search-seo-bottom__link {
    transition: none;
  }
}
.filters-close-button {
  width: 32px;
  height: 32px;
}

.location-results {
  display: none;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.location-results.show,
.location-results.is-visible {
  display: block;
}

.location-results--filters {
  z-index: 1050;
}

.location-result-item {
  padding: 8px 12px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s;
}

.location-result-item:last-child {
  border-bottom: none;
}

.location-results--filters .location-result-item:hover,
.location-results--filters .location-result-item.active {
  background-color: #0d6efd;
  color: #ffffff;
}

[data-search-event-field],
[data-pianist-field],
[data-musician-field],
[data-group-field],
[data-specialty-wrapper] {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-search-event-field].is-collapsed,
[data-pianist-field].is-collapsed,
[data-musician-field].is-collapsed,
[data-group-field].is-collapsed,
[data-specialty-wrapper].is-collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
[data-search-event-field].is-expanded,
[data-pianist-field].is-expanded,
[data-musician-field].is-expanded,
[data-group-field].is-expanded,
[data-specialty-wrapper].is-expanded {
  max-height: 500px;
  opacity: 1;
}
[data-search-event-field]:not(.is-expanded):not(.is-collapsed),
[data-pianist-field]:not(.is-expanded):not(.is-collapsed),
[data-musician-field]:not(.is-expanded):not(.is-collapsed),
[data-group-field]:not(.is-expanded):not(.is-collapsed),
[data-specialty-wrapper]:not(.is-expanded):not(.is-collapsed) {
  max-height: 500px;
  opacity: 1;
}

[data-group-subtype-field].is-loading {
  opacity: 0.75;
}

[data-entity-type-select] + .select2-container .select2-selection,
[data-group-subtype-select] + .select2-container .select2-selection {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.search-page-container {
  padding-top: 0;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.92) 0%, rgba(248, 250, 252, 0.95) 16%, #ffffff 42%), #ffffff;
}

.search-grid {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.search-grid--with-seo {
  margin-top: -1rem;
}

.search-main-content--with-faq {
  display: grid;
  gap: 0;
}

.search-main-content,
.search-results-shell,
.search-results-content {
  min-width: 0;
  width: 100%;
}

.search-results-mobile-shell {
  position: relative;
  min-width: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  min-width: 0;
}

.results-grid__item {
  min-width: 0;
  display: flex;
}

.results-grid__item > .modern-card {
  width: 100%;
  height: 100%;
}

.results-grid__full {
  grid-column: 1/-1;
}

.no-results-state {
  min-height: 400px;
  width: 100%;
}

.no-results-state__icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.no-results-state__icon-symbol {
  font-size: 2rem;
  color: var(--secondary-color, #16bd9c);
}

.no-results-state__text {
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

.search-page-container .is-hidden {
  display: none;
}

.search-spa-shell {
  position: relative;
}

.search-spa-shell.spa-loading {
  pointer-events: none;
}

@media (min-width: 992px) {
  .search-spa-shell.spa-fade-out .search-main-content {
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .search-spa-shell.spa-fade-in .search-main-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
}
@media (max-width: 575px) {
  .search-grid {
    margin-top: -1.6rem;
  }
  .search-grid--with-seo {
    margin-top: -0.7rem;
  }
}
@media (max-width: 991px) {
  .search-spa-shell.spa-fade-out {
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .search-spa-shell.spa-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
}
.search-results-mobile-shell.is-swiper-active {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.search-results-mobile-shell.is-swiper-active .results-grid {
  display: flex;
  gap: 0;
  min-width: 0;
  align-items: flex-start;
}

.search-results-mobile-shell.is-swiper-active .results-grid__item {
  display: flex;
  height: auto;
}

.search-results-mobile-shell.is-swiper-active .results-grid__item > .modern-card {
  width: 100%;
  height: auto;
}

.search-results-mobile-shell.is-swiper-active.is-swipe-hint-active .results-grid__item:nth-child(2):not(.is-appending) {
  animation: search-results-swipe-peek 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.results-grid__item--status {
  display: none;
}

.search-results-status-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.96)), #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
  min-height: 100%;
  padding: 1.4rem 1.25rem;
  text-align: center;
}

.search-results-status-card__view {
  align-items: center;
  display: none;
  flex-direction: column;
  gap: 0.85rem;
}

.search-results-status-card__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 189, 156, 0.14), rgba(26, 137, 188, 0.2));
  border-radius: 999px;
  color: var(--accent-color, #1a89bc);
  display: inline-flex;
  font-size: 1.35rem;
  height: 3.25rem;
  justify-content: center;
  width: 3.25rem;
}

.search-results-status-card__loader {
  padding: 0;
}

.search-results-status-card__eyebrow {
  color: rgba(71, 85, 105, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.search-results-status-card__title {
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}

.search-results-status-card__copy {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
  text-wrap: balance;
}

.results-grid__item--status[data-status-state=loading] [data-status-view=loading],
.results-grid__item--status[data-status-state=complete] [data-status-view=complete] {
  display: flex;
}

@media (max-width: 991px) {
  .search-results-mobile-shell.is-swiper-active {
    --search-results-mobile-gutter: clamp(0.9rem, 4vw, 1.1rem);
    --search-results-mobile-slide-width: clamp(16.8rem, 84vw, 20.25rem);
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: var(--search-results-mobile-gutter);
    padding-right: 0;
    padding-top: 0.3rem;
    padding-bottom: 0.55rem;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-drag: none;
    overflow-x: hidden;
    overflow-y: visible;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.45) 0.95rem, #000 1.8rem, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.45) 0.95rem, #000 1.8rem, #000 100%);
    isolation: isolate;
  }
  .search-results-mobile-shell.is-swiper-active.is-pointer-dragging {
    cursor: grabbing;
  }
  .search-results-mobile-shell.is-swiper-active,
  .search-results-mobile-shell.is-swiper-active * {
    -webkit-user-select: none;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-drag: none;
  }
  .search-spa-shell[data-mobile-results-mode=swiper] .search-loading-message,
  .search-spa-shell[data-mobile-results-mode=swiper] .search-end-message {
    display: none;
  }
  .search-results-mobile-shell.is-swiper-active .results-grid {
    align-items: stretch;
  }
  .search-results-mobile-shell.is-swiper-active .results-grid__item {
    width: var(--search-results-mobile-slide-width) !important;
    max-width: var(--search-results-mobile-slide-width);
    min-width: 0;
    flex-shrink: 0;
    align-self: stretch;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: none;
    will-change: auto;
  }
  .search-results-mobile-shell.is-swiper-active .results-grid__item.is-append-animated {
    transition: opacity 0.22s ease-out, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  .search-results-mobile-shell.is-swiper-active .results-grid__item.is-appending {
    opacity: 0.9;
    transform: translate3d(12px, 0, 0);
  }
  .search-results-mobile-shell.is-swiper-active .results-grid__item > .modern-card {
    margin: 0;
    min-height: 100%;
  }
  .search-results-mobile-shell.is-swiper-active .card-body-content {
    min-height: 0;
  }
  .search-results-mobile-shell.is-swiper-active .results-grid__item--status:not(.is-hidden) {
    display: flex;
    backface-visibility: hidden;
    contain: layout paint;
  }
  .search-results-mobile-shell.is-swiper-active .search-results-status-card {
    min-height: 100%;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .search-results-mobile-shell.is-swiper-active {
    --search-results-mobile-slide-width: clamp(18.4rem, 44vw, 21rem);
  }
}
body.em-dragging-search-results-swiper,
body.em-dragging-search-results-swiper * {
  cursor: grabbing;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

@keyframes search-results-swipe-peek {
  0%, 18%, 100% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-10px);
  }
  42% {
    transform: translateX(-4px);
  }
  56% {
    transform: translateX(-14px);
  }
  72% {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .search-results-mobile-shell.is-swiper-active.is-swipe-hint-active .results-grid__item:nth-child(2):not(.is-appending) {
    animation: none;
  }
}
.modern-card.is-media-pending {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.modern-card:not(.is-media-pending) {
  opacity: 1;
  transform: translateY(0);
}

.btn-contact-profile.is-disabled,
.btn-contact-profile:disabled,
.btn-contact-profile.btn-contact-sent {
  opacity: 0.6;
  cursor: not-allowed;
  background: #e9ecef;
  color: #6c757d;
  border-color: #dee2e6;
}

.btn-contact-profile.btn-contact-sent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.card-footer-action--group {
  align-items: stretch;
  gap: 0.55rem;
}

.card-footer-action--group > .btn-view-profile--group,
.card-footer-action--group > .btn-contact-profile--group {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 3.25rem;
  min-width: 0;
  padding: 0.72rem 0.42rem;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.card-footer-action--group > .btn-view-profile--group {
  flex: 0.84 1 0;
  font-size: 0.78rem;
  border-radius: 12px;
}

.card-footer-action--group > .btn-contact-profile--group {
  flex: 1.16 1 0;
  font-size: 0.76rem;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(26, 137, 188, 0.18);
}

.card-footer-action--group > :only-child {
  flex: 1 1 100%;
}

@media (max-width: 575.98px) {
  .card-footer-action--group {
    gap: 0.5rem;
  }
  .card-footer-action--group > .btn-view-profile--group,
  .card-footer-action--group > .btn-contact-profile--group {
    min-height: 3.1rem;
    padding: 0.68rem 0.36rem;
  }
  .card-footer-action--group > .btn-view-profile--group {
    font-size: 0.75rem;
  }
  .card-footer-action--group > .btn-contact-profile--group {
    font-size: 0.73rem;
  }
}
.verified-badge {
  align-items: center;
  background: var(--accent-color);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  display: flex;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 28px;
  z-index: 2;
}

.verified-badge img {
  display: block;
  width: 14px;
  height: 14px;
}

.em-auth-modal {
  z-index: 10600;
}
.em-auth-modal .modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background: #fff;
}
.em-auth-modal .modal-header {
  background: var(--accent-gradient, radial-gradient(circle at 10% 15%, var(--secondary-color, #16bd9c) 0%, var(--accent-color, #1a89bc) 100%));
  border: none;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.em-auth-modal .btn-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  opacity: 0.8;
}

.em-auth-modal__header-content {
  z-index: 2;
  position: relative;
}

.em-auth-modal__icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.em-auth-modal__icon i {
  font-size: 2rem;
  color: #fff;
}

.em-auth-modal__title {
  color: #fff;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
}

.em-auth-modal__subtitle {
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.em-auth-modal__decor {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.1);
}

.em-auth-modal__decor--top {
  width: 200px;
  height: 200px;
  top: -80px;
  left: -60px;
}

.em-auth-modal__decor--bottom {
  width: 120px;
  height: 120px;
  bottom: -40px;
  right: -30px;
}

.em-auth-modal__primary-btn {
  background: var(--accent-color);
  border: none;
  color: #ffffff;
  padding: 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb, 26, 136, 188), 0.25);
  transition: transform 0.2s;
}

.em-auth-modal__secondary-btn {
  background: #ffffff;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s;
}

.em-auth-modal__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

.em-auth-modal__divider-line {
  height: 1px;
  flex: 1;
  background: #e2e8f0;
}

.em-auth-modal__divider-text {
  padding: 0 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.em-auth-modal__note {
  color: #94a3b8;
  font-size: 0.8rem;
}

.location-results--modal {
  z-index: 1100;
  max-height: 200px;
  top: 100%;
}

.location-results--modal .location-result-item:hover,
.location-results--modal .location-result-item.active {
  background-color: #f1f5f9;
  color: var(--accent-color);
}

.em-contact-modal .modal-dialog {
  width: min(980px, 100vw - 1.75rem);
  max-width: 980px;
  margin: 1rem auto;
}

.em-contact-modal .modal-content {
  border: none;
  border-radius: 28px;
  box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.em-contact-modal .modal-header {
  padding: 1.05rem 1.4rem;
  background: var(--accent-gradient, radial-gradient(circle at 10% 15%, var(--secondary-color, #16bd9c) 0%, var(--accent-color, #1a89bc) 100%));
  border-bottom: 0;
  position: relative;
}

.em-contact-modal .modal-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.em-contact-modal .modal-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.em-contact-modal .btn-close {
  background-color: rgba(255, 255, 255, 0.1);
  filter: invert(1) grayscale(100%) brightness(200%);
  border-radius: 50%;
  padding: 0.75rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.em-contact-modal .btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.em-contact-modal .modal-body {
  padding: 1rem 1.4rem;
  background: radial-gradient(circle at 0% 0%, rgba(var(--secondary-color-rgb, 22, 189, 156), 0.045), transparent 40%), radial-gradient(circle at 100% 10%, rgba(var(--accent-color-rgb, 26, 137, 188), 0.055), transparent 42%), #fcfdfe;
  max-height: min(78vh, 760px);
  overflow-y: auto;
}

.em-contact-form {
  position: relative;
}

.em-contact-modal__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.em-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  align-items: start;
  grid-auto-flow: row dense;
}

.em-contact-form-grid--compact {
  gap: 0.75rem;
}

.em-contact-section-title {
  grid-column: span 12;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  font-weight: 800;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.em-contact-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.em-contact-section-title:first-child {
  margin-top: 0;
}

.em-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.em-form-group.is-hidden {
  display: none;
}

.em-contact-form-grid > .em-form-group {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e8eef5;
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: none;
}

.em-contact-form-grid > .em-form-group[data-role=rehearsals-wrapper] {
  padding: 0.8rem;
}

.em-contact-modal .em-form-group[data-role] {
  will-change: max-height, opacity, transform;
}

.em-contact-modal .em-form-group.is-transitioning {
  overflow: hidden;
}

.span-12 {
  grid-column: span 12;
}

.span-8 {
  grid-column: span 8;
}

.span-6 {
  grid-column: span 6;
}

.span-4 {
  grid-column: span 4;
}

.span-3 {
  grid-column: span 3;
}

@media (max-width: 768px) {
  .em-contact-modal .modal-dialog {
    width: calc(100vw - 1.25rem);
    margin: 0.625rem auto;
  }
  .em-contact-modal .modal-body {
    padding: 1.5rem;
    max-height: calc(100dvh - 190px);
  }
  .span-3,
  .span-4,
  .span-6,
  .span-8 {
    grid-column: span 12;
  }
  .em-contact-form-grid {
    gap: 0.85rem;
  }
  .em-contact-form-grid > .em-form-group {
    padding: 0.75rem;
    border-radius: 14px;
  }
}
.em-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-left: 0.25rem;
}

.em-input {
  background-color: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.em-input::-moz-placeholder {
  color: #94a3b8;
}

.em-input::placeholder {
  color: #94a3b8;
}

.em-input:focus {
  background-color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(var(--accent-color-rgb, 26, 136, 188), 0.08);
  outline: none;
}

.em-input[readonly] {
  background-color: #f8fafc;
  color: #64748b;
  border-color: #f1f5f9;
  cursor: default;
  font-weight: 500;
}

select.em-input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 12px;
  padding-right: 2.5rem;
}

select.em-input.is-invalid {
  border-color: #dc3545;
}

.em-pills {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 12px;
  width: 100%;
  gap: 4px;
}

.em-pill-option {
  flex: 1;
  position: relative;
}

.em-pill-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.em-pill-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  text-align: center;
}

.em-pill-input:checked + .em-pill-label {
  background: #fff;
  color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-em-primary:disabled {
  background: #cbd5e1 !important;
  color: #64748b !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed;
}

.em-collapse {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.em-collapse.is-visible {
  max-height: 250px;
  opacity: 1;
}

.em-contact-feedback {
  display: none;
  text-align: right;
}

.em-contact-feedback.is-visible {
  display: block;
}

.modal-footer {
  padding: 1rem 1.4rem;
  background-color: #fff;
  border-top: 1px solid #f1f5f9;
  gap: 1rem;
  justify-content: flex-end;
}

.ts-wrapper.form-control {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.ts-wrapper.form-control .ts-control {
  border-radius: 14px;
  padding: 0.65rem 1rem;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  min-height: auto;
  font-size: 0.95rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-wrapper.form-control.focus .ts-control {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(var(--accent-color-rgb, 26, 136, 188), 0.08);
}

.ts-wrapper.form-control.is-invalid .ts-control {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

.ts-control .item {
  display: flex;
  align-items: center;
}

.ts-wrapper.single .ts-control:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  pointer-events: none;
}

.ts-dropdown {
  border-radius: 16px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  padding: 6px;
  margin-top: 8px;
  z-index: 9999;
}

.ts-dropdown .option {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.ts-dropdown .active {
  background-color: #f1f5f9;
  color: var(--accent-color);
}

textarea.em-input {
  min-height: 100px;
  resize: none;
  line-height: 1.5;
}

.field-hint {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.invalid-feedback {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.35rem;
  padding-left: 0.25rem;
}

.btn-em-primary {
  background: var(--accent-color);
  border: none;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(var(--accent-color-rgb, 26, 136, 188), 0.2);
}

.btn-em-primary:hover {
  background: var(--secondary-color, #1573a0);
  transform: none;
  box-shadow: 0 6px 15px rgba(var(--accent-color-rgb, 26, 136, 188), 0.3);
  color: #fff;
}

.btn-em-secondary {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: #64748b;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-em-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.loading-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.metronome-wrapper {
  position: relative;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.metronome-rod {
  width: 4px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 4px;
  transform-origin: bottom center;
  animation: none;
  position: relative;
}

.metronome-weight {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.metronome-base {
  width: 30px;
  height: 4px;
  background: rgba(var(--accent-color-rgb, 26, 136, 188), 0.3);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  filter: blur(1px);
}

.loading-overlay .metronome-rod {
  animation: metronomeTick 1.05s ease-in-out infinite alternate;
}

@keyframes metronomeTick {
  0% {
    transform: rotate(-35deg);
  }
  100% {
    transform: rotate(35deg);
  }
}
.loading-overlay__text {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.em-contact-success-title {
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.em-contact-success-message {
  color: #64748b;
  font-size: 0.95rem;
}

.error-message {
  font-weight: 600;
  color: #ef4444;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 480px) {
  .em-contact-modal.is-mobile-wizard .modal-content {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }
  .em-contact-modal.is-mobile-wizard .em-contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100dvh;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }
  .em-contact-modal .modal-content {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .em-contact-modal .modal-header {
    padding: 1.1rem 1.1rem 0.95rem;
  }
  .em-contact-modal .modal-title {
    font-size: 1.05rem;
  }
  .em-contact-modal__subtitle {
    font-size: 0.78rem;
  }
  .em-contact-modal .modal-body {
    padding: 1rem;
    max-height: calc(100dvh - 168px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    min-height: 0;
    flex: 1 1 0;
    overscroll-behavior-y: contain;
  }
  .em-contact-modal .modal-footer {
    padding: 0.9rem 1rem 1rem;
    gap: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex: 0 0 auto;
  }
  .em-contact-modal .modal-footer .em-footer-left {
    flex: 0 0 auto;
  }
  .em-contact-modal .modal-footer .em-footer-right {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
  }
  .em-contact-modal .modal-footer .btn-em-primary,
  .em-contact-modal .modal-footer .btn-em-secondary,
  .em-contact-modal .modal-footer .btn-em-link {
    width: auto;
    min-height: 40px;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    line-height: 1.15;
    white-space: nowrap;
  }
  .em-contact-modal .modal-footer .btn-em-primary,
  .em-contact-modal .modal-footer .btn-em-secondary {
    min-width: 118px;
  }
  .em-contact-modal .modal-footer .btn-em-link {
    min-width: 76px;
  }
  .em-contact-form-grid {
    gap: 0.75rem;
  }
  .em-contact-form-grid > .em-form-group {
    padding: 0.7rem;
    border-radius: 13px;
  }
  .em-label {
    font-size: 0.8rem;
  }
  .em-input,
  .ts-wrapper.form-control .ts-control {
    font-size: 0.9rem;
    padding: 0.6rem 0.85rem;
  }
  textarea.em-input {
    min-height: 84px;
  }
  .em-pills {
    gap: 6px;
    padding: 5px;
  }
  .em-pill-label {
    min-height: 44px;
    white-space: normal;
    line-height: 1.15;
  }
}
@media (prefers-reduced-motion: reduce) {
  .em-contact-modal .btn-close,
  .em-input,
  .em-pill-label,
  .btn-em-primary,
  .btn-em-secondary,
  .loading-overlay,
  .em-contact-modal .em-form-group[data-role] {
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 480px) {
  .flatpickr-calendar {
    width: min(340px, 100vw - 0.9rem);
    border-radius: 0.9rem;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  }
  .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
  .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
    width: 40px;
    height: 40px;
    padding: 6px;
  }
  .flatpickr-calendar .flatpickr-current-month {
    height: 42px;
    padding-top: 7px;
    font-size: 1rem;
  }
  .flatpickr-calendar .flatpickr-weekday {
    height: 32px;
    line-height: 32px;
    font-size: 0.76rem;
  }
  .flatpickr-calendar .flatpickr-days {
    width: 100%;
  }
  .flatpickr-calendar .dayContainer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .flatpickr-calendar .flatpickr-day {
    max-width: none;
    height: 42px;
    line-height: 42px;
    font-size: 0.9rem;
    margin-top: 2px;
  }
}
.loading-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.music-equalizer {
  display: flex;
  align-items: flex-end;
  height: 18px;
  gap: 3px;
}

.music-equalizer .bar {
  width: 4px;
  background: var(--accent-gradient-linear, linear-gradient(135deg, var(--secondary-color, #16bd9c), var(--accent-color, #1a89bc)));
  border-radius: 4px;
  animation: equalizer 0.8s ease-in-out infinite;
}

.music-equalizer .bar:nth-child(1) {
  height: 6px;
  animation-delay: 0s;
}

.music-equalizer .bar:nth-child(2) {
  height: 14px;
  animation-delay: 0.1s;
}

.music-equalizer .bar:nth-child(3) {
  height: 18px;
  animation-delay: 0.2s;
}

.music-equalizer .bar:nth-child(4) {
  height: 10px;
  animation-delay: 0.3s;
}

.music-equalizer .bar:nth-child(5) {
  height: 6px;
  animation-delay: 0.4s;
}

@keyframes equalizer {
  0%, 100% {
    height: 6px;
    opacity: 0.7;
  }
  50% {
    height: 18px;
    opacity: 1;
  }
}
.search-loading-message.is-hidden,
.search-end-message.is-hidden {
  display: none;
}

.search-end-message {
  margin-bottom: 2rem;
}

/* 
|---------------------------------------------------------------------------
| Join Sections CTA (Shared)
|---------------------------------------------------------------------------
*/
.join-section {
  padding: 6rem 1.5rem 8rem;
  background: var(--footer-bg-color, #161f22);
  text-align: center;
  border-radius: 40px 40px 0 0;
  color: #fff;
  margin-bottom: -2px; /* Prevent gap with footer */
  position: relative;
  overflow: hidden;
}
.join-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.join-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.join-section .btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color, #16bd9c);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.join-section .btn-join:hover {
  background: #14a88b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Premium Variant (Musicians / Professional Profile) */
.join-section--premium {
  background: radial-gradient(circle at top left, rgba(var(--secondary-color-rgb, 22, 189, 156), 0.2), rgba(var(--secondary-color-rgb, 22, 189, 156), 0) 34%), linear-gradient(160deg, #0c1827 0%, rgba(var(--accent-color-rgb, 26, 137, 188), 0.5) 48%, #161f22 100%);
  border-radius: 0 !important;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.join-section--premium::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: 8%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(200, 165, 100, 0.2) 0%, rgba(200, 165, 100, 0) 70%);
  pointer-events: none;
}
.join-section--premium .join-horizon {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: left;
  position: relative;
  z-index: 1;
}
.join-section--premium .join-copy {
  max-width: 42rem;
}
.join-section--premium .join-kicker {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}
.join-section--premium h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  max-width: 12ch;
}
.join-section--premium p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  text-align: left;
  margin-left: 0;
  margin-bottom: 0;
  max-width: 40rem;
}
.join-section--premium .btn-join {
  min-width: 12rem;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
}
@media (max-width: 991px) {
  .join-section--premium .join-horizon {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .join-section--premium .join-actions {
    width: 100%;
  }
  .join-section--premium .btn-join {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .join-section--premium {
    padding: 4rem 1rem;
    text-align: center;
  }
  .join-section--premium .join-horizon {
    text-align: center;
  }
  .join-section--premium h2 {
    max-width: 100%;
  }
  .join-section--premium p {
    text-align: center;
    margin: 0 auto;
  }
}
