/* ===== Z-INDEX HIERARCHY ===== */
/*
  Proper z-index layering for the entire site:
  -1: Background overlays (body::before)
  1: Main content, sections, grids
  2: Card badges, content overlays
  5: Slider navigation buttons
  100: Sticky elements, tooltips
  9999: Site header (.mainhead)
  10000: Modals, lightboxes (only when active)
*/

/* ===== GLOBAL SITE BACKGROUND - PRISMATIC PHOTO 70% OVERLAY ===== */
/* Applied to body element for site-wide background */
body.artinerary-global-bg {
  background-image: url('/wp-content/uploads/2025/10/23751-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

/* 70% White overlay on body background */
body.artinerary-global-bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.70);
  z-index: -1;
  pointer-events: none;
}

/* Ensure main content is above the background but below header */
body.artinerary-global-bg #page,
body.artinerary-global-bg #main-content,
body.artinerary-global-bg .et-l {
  position: relative;
  z-index: 1;
}

/* Mobile: Use scroll instead of fixed for better performance */
@media (max-width: 768px) {
  body.artinerary-global-bg {
    background-attachment: scroll;
  }

  body.artinerary-global-bg::before {
    position: absolute;
    min-height: 100vh;
  }
}

/* Minimal, theme-friendly styles for Artinerary shortcodes */
.art-events { display: grid; gap: 1rem; }
.art-events__item {
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.art-events__item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.art-events__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 1rem;
}
.art-events__title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.art-events__title a:hover {
  color: #000;
}
.art-events__date {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  padding: 0 1rem;
}
.art-events__cats, .art-events__tags, .art-events__gtags {
  color: #374151;
  font-size: 0.85rem;
  padding: 0 1rem;
  margin-bottom: 0.35rem;
}

.art-event__location { margin: 0.5rem 0; }
.art-event__location-name { font-weight: 600; }
.art-event__location-addr { color: #555; font-size: 0.95rem; }
.art-event__map a { color: inherit; text-decoration: underline; }

.art-event__back { margin-bottom: 0.5rem; }
.art-event__back-link { color: inherit; text-decoration: none; }
.art-event__back-link:hover { text-decoration: underline; }

.art-events__pagination {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.art-events__pagination a,
.art-events__pagination span {
  padding: 0.5rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s ease;
}
.art-events__pagination a:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.art-events__pagination .current {
  background: #000;
  color: #fff;
  border-color: #000;
}

.art-events__view { margin-top: 0.5rem; }
.art-events__view-link { display: inline-block; padding: 0.35rem 0.6rem; border: 1px solid #ddd; border-radius: 4px; text-decoration: none; color: inherit; background: #fafafa; }
.art-events__view-link:hover { background: #f1f1f1; }
.art-events__view--title { margin: 0.25rem 0; }

.art-event__nodates { color:#666; font-size:0.95rem; margin-top:0.5rem; }

/* ===== VIEW TOGGLE (List/Calendar) ===== */
.art-view-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin-bottom: 2rem !important;
  justify-content: flex-end !important;
}

.art-view-toggle__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  background: #fff !important;
  color: #333 !important;
  border: 2px solid #000 !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.art-view-toggle__btn:first-child {
  border-radius: 4px 0 0 4px !important;
  border-right: 1px solid #000 !important;
}

.art-view-toggle__btn:last-child {
  border-radius: 0 4px 4px 0 !important;
  border-left: 1px solid #000 !important;
}

.art-view-toggle__btn:hover {
  background: #f5f5f5 !important;
  color: #333 !important;
}

.art-view-toggle__btn--active,
.art-view-toggle__btn--active:hover {
  background: #000 !important;
  color: #fff !important;
}

.art-view-toggle__btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}

/* Calendar view adjustments when embedded */
.art-events__calendar-view .art-cal-modern--embedded {
  margin: 0;
  border-radius: 12px;
}

/* Mobile toggle styles */
@media (max-width: 520px) {
  .art-view-toggle {
    width: 100% !important;
  }

  .art-view-toggle__btn {
    flex: 1 !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
  }

  .art-view-toggle__btn span {
    display: none !important;
  }

  .art-view-toggle__btn svg {
    width: 20px !important;
    height: 20px !important;
  }
}

/* Events Filter Sidebar */
.art-events-filter {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Field container */
.art-events-filter__field {
  margin-bottom: 1.5rem;
}

/* Labels */
.art-events-filter__label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* Text inputs and date inputs */
.art-events-filter__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  box-sizing: border-box;
}

.art-events-filter__input:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.art-events-filter__input::placeholder {
  color: #9ca3af;
}

/* Select dropdown */
.art-events-filter__select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 48px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  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='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  box-sizing: border-box;
}

.art-events-filter__select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

/* Checkbox group container */
.art-events-filter__checkbox-group {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem;
  background: #fff;
}

/* Individual checkbox */
.art-events-filter__checkbox {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  margin: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.15s ease;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #374151;
}

.art-events-filter__checkbox:hover {
  background-color: #f9fafb;
}

.art-events-filter__checkbox input[type="checkbox"] {
  margin: 0 0.5rem 0 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.art-events-filter__checkbox span {
  flex: 1;
}

/* Action buttons */
.art-events-filter__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
}

.art-events-filter__submit {
  flex: 1;
  padding: 0.875rem 1.5rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.art-events-filter__submit:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.art-events-filter__submit:active {
  transform: translateY(0);
}

.art-events-filter__reset {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.art-events-filter__reset:hover {
  color: #374151;
  text-decoration: underline;
}

/* Mobile toggle button - hidden on desktop */
.art-events-filter__toggle {
  display: none;
}

/* Mobile styles for events filter */
@media (max-width: 768px) {
  .art-events-filter {
    padding: 0;
    border-radius: 8px;
  }

  .art-events-filter__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #374151;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .art-events-filter__toggle:hover {
    background: #f9fafb;
  }

  .art-events-filter__toggle-icon {
    flex-shrink: 0;
  }

  .art-events-filter__toggle span {
    flex: 1;
    text-align: left;
  }

  .art-events-filter__toggle-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .art-events-filter--collapsed .art-events-filter__toggle-arrow {
    transform: rotate(0deg);
  }

  .art-events-filter:not(.art-events-filter--collapsed) .art-events-filter__toggle-arrow {
    transform: rotate(180deg);
  }

  .art-events-filter__body {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
  }

  .art-events-filter--collapsed .art-events-filter__body {
    display: none;
  }

  .art-events-filter__field {
    margin-bottom: 1rem;
  }

  .art-events-filter__label {
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
  }

  .art-events-filter__input,
  .art-events-filter__select {
    padding: 0.625rem 0.75rem;
    min-height: 40px;
    font-size: 0.9375rem;
  }

  .art-events-filter__checkbox-group {
    max-height: 150px;
    padding: 0.5rem;
  }

  .art-events-filter__checkbox {
    padding: 0.375rem;
    font-size: 0.875rem;
  }

  .art-events-filter__actions {
    padding-top: 1rem;
    margin-top: 0.25rem;
    gap: 0.75rem;
  }

  .art-events-filter__submit {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .art-events-filter__reset {
    font-size: 0.875rem;
  }
}

/* AJAX Filter Loading States */
.art-events--fast.is-loading {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

.art-events--fast.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #000;
  border-radius: 50%;
  animation: art-spin 0.8s linear infinite;
}

@keyframes art-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.art-events__empty {
  padding: 3rem 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 1.125rem;
  background: #f9fafb;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Participant Profiles Filter - Matching Events Filter Style */
.art-participant-profiles-filter {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.art-participant-profiles-filter__field {
  margin-bottom: 1.5rem;
}

.art-participant-profiles-filter__label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
  margin-bottom: 0.5rem;
}

.art-participant-profiles-filter__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  box-sizing: border-box;
}

.art-participant-profiles-filter__input:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.art-participant-profiles-filter__input::placeholder {
  color: #9ca3af;
}

.art-participant-profiles-filter__select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 48px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  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='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  box-sizing: border-box;
}

.art-participant-profiles-filter__select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.art-participant-profiles-filter__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
}

.art-participant-profiles-filter__submit {
  flex: 1;
  padding: 0.875rem 1.5rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.art-participant-profiles-filter__submit:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.art-participant-profiles-filter__submit:active {
  transform: translateY(0);
}

.art-participant-profiles-filter__reset {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.art-participant-profiles-filter__reset:hover {
  color: #374151;
  text-decoration: underline;
}

/* Checkbox group container */
.art-participant-profiles-filter__checkbox-group {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem;
  background: #fff;
}

/* Individual checkbox */
.art-participant-profiles-filter__checkbox {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  margin: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.15s ease;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #374151;
}

.art-participant-profiles-filter__checkbox:hover {
  background-color: #f9fafb;
}

.art-participant-profiles-filter__checkbox input[type="checkbox"] {
  margin: 0 0.5rem 0 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.art-participant-profiles-filter__checkbox span {
  flex: 1;
}

/* Images */
.art-events__thumb {
  margin: 0 0 1rem;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
}
.art-events__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.art-events__item:hover .art-events__thumb img {
  transform: scale(1.05);
}
.art-event__image { margin: 0.5rem 0 1rem; }
.art-event__image img { display:block; width:100%; height:auto; border-radius:6px; }


/* Grid and day headings */
.art-events__day {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.01em;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #000;
}
.art-events__day:first-child {
  margin-top: 0;
}
.art-events__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 1rem;
}
.art-events__grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.art-events__grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.art-events__grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Responsive tweaks: fall back to fewer columns on smaller screens */
@media (max-width: 1024px) {
  .art-events__grid--cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .art-events__grid--cols-4,
  .art-events__grid--cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .art-events__day { font-size: 1.25rem; }
}
@media (max-width: 520px) {
  .art-events__grid--cols-4,
  .art-events__grid--cols-3,
  .art-events__grid--cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .art-events__grid { gap: 1rem; }
  .art-events__day { font-size: 1.15rem; }
}

/* Art Detour 2026 Specific Styles */
.art-detour-2026 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem 0;
}

.art-detour-2026__header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #dee2e6;
}

.art-detour-2026__header h2 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.art-detour-2026__dates {
  margin: 0;
  font-size: 1.25rem;
  color: #6c757d;
  font-weight: 500;
}

/* Coming Soon State */
.art-detour-2026--coming-soon {
  text-align: center;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-color: #ffc107;
}

.art-detour-2026__countdown {
  margin-bottom: 1.5rem;
}

.art-detour-2026__countdown h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  color: #856404;
}

.countdown-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.countdown-number {
  font-size: 4rem;
  font-weight: 700;
  color: #856404;
  line-height: 1;
}

.countdown-label {
  font-size: 1.1rem;
  color: #856404;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.art-detour-2026__message {
  font-size: 1.1rem;
  color: #856404;
}

/* Event Grid */
.art-detour-2026__day {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #495057;
  text-align: center;
  padding: 0.75rem;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
}

.art-detour-2026__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.art-detour-2026__grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.art-detour-2026__grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.art-detour-2026__grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.art-detour-2026__item {
  background: rgba(255,255,255,0.9);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.art-detour-2026__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.art-detour-2026__thumb {
  margin: 0 0 1rem;
}

.art-detour-2026__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.art-detour-2026__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.art-detour-2026__title a {
  color: inherit;
  text-decoration: none;
}

.art-detour-2026__title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.art-detour-2026__time {
  color: #6c757d;
  font-size: 1rem;
  font-weight: 500;
}

/* Error and Empty States */
.art-detour-2026--error,
.art-detour-2026--empty {
  text-align: center;
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* Responsive Design for Art Detour */
@media (max-width: 1024px) {
  .art-detour-2026__grid--cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .art-detour-2026__header h2 { font-size: 2rem; }
  .countdown-number { font-size: 3rem; }
}

@media (max-width: 768px) {
  .art-detour-2026__grid--cols-4,
  .art-detour-2026__grid--cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .art-detour-2026 { padding: 1.5rem; }
  .art-detour-2026__header h2 { font-size: 1.75rem; }
  .countdown-number { font-size: 2.5rem; }
}

@media (max-width: 520px) {
  .art-detour-2026__grid--cols-4,
  .art-detour-2026__grid--cols-3,
  .art-detour-2026__grid--cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .art-detour-2026 { padding: 1rem; }
  .art-detour-2026__header h2 { font-size: 1.5rem; }
  .countdown-number { font-size: 2rem; }
}

/* ===== LOCATION STYLING ===== */

/* Location Archive Styling */
.art-locations {
  margin: 1rem 0;
}

.art-locations--grid {
  display: grid;
  gap: 1.5rem;
  margin: 1rem 0;
}

.art-locations--cols-1 { grid-template-columns: 1fr; }
.art-locations--cols-2 { grid-template-columns: repeat(2, 1fr); }
.art-locations--cols-3 { grid-template-columns: repeat(3, 1fr); }
.art-locations--cols-4 { grid-template-columns: repeat(4, 1fr); }
.art-locations--cols-5 { grid-template-columns: repeat(5, 1fr); }
.art-locations--cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 768px) {
  .art-locations--cols-3,
  .art-locations--cols-4,
  .art-locations--cols-5,
  .art-locations--cols-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .art-locations--grid { grid-template-columns: 1fr; }
}

/* Organizations Grid */
.art-organizations--grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

.art-organizations--cols-2 { grid-template-columns: repeat(2, 1fr); }
.art-organizations--cols-3 { grid-template-columns: repeat(3, 1fr); }
.art-organizations--cols-4 { grid-template-columns: repeat(4, 1fr); }
.art-organizations--cols-5 { grid-template-columns: repeat(5, 1fr); }
.art-organizations--cols-6 { grid-template-columns: repeat(6, 1fr); }

.art-organizations--cols-7 { grid-template-columns: repeat(7, 1fr); }
.art-organizations--cols-8 { grid-template-columns: repeat(8, 1fr); }

/* Force square logos inside organization grids */
.art-organizations--grid .art-card img,
.art-organizations--grid .art-card__placeholder {
  width: 100%;
  height: auto;           /* override base 180px height */
  aspect-ratio: 1 / 1;    /* square */
  object-fit: cover;      /* fill the square */
  object-position: center center; /* center crop */
}



@media (max-width: 1024px) and (min-width: 769px) {
  /* Tablet: collapse 8/7 cols to 4 */
  .art-organizations--cols-8 { grid-template-columns: repeat(4, 1fr); }
  .art-organizations--cols-7 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile and small tablets: 2 columns */
  .art-organizations--cols-8,
  .art-organizations--cols-7 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  /* Very small phones: still 2 columns per request */
  .art-organizations--grid { grid-template-columns: repeat(2, 1fr); }
}

/* Location Card Styling - Matches Event Cards */
.art-location-card {
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.art-location-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.art-location-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
}

.art-location-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.art-location-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.art-location-card:hover .art-location-card__image img {
  transform: scale(1.05);
}

.art-location-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  text-align: center;
}

.art-location-card__placeholder-icon {
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.art-location-card__placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.art-location-card__content {
  padding: 1rem;
}

.art-location-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.art-location-card__title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.art-location-card__title a:hover {
  color: #000;
}

.art-location-card__address {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
  line-height: 1.4;
  font-weight: 500;
}

.art-location-card__actions {
  margin-top: 1rem;
}

.art-location-card__view-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.art-location-card__view-link:hover {
  background: #222;
  color: #fff;
}

/* Organization Card Styling - Matches Event/Location Cards */
.art-organization-card {
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.art-organization-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.art-organization-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

.art-organization-card:hover .art-organization-card__image {
  transform: scale(1.02);
}

.art-organization-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.art-organization-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.art-organization-card:hover .art-organization-card__image img {
  transform: scale(1.05);
}

.art-organization-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  text-align: center;
}

.art-organization-card__placeholder-icon {
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.art-organization-card__placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Image container for positioning paid badge overlay */
.art-organization-card__image-container {
  position: relative;
  width: 100%;
}

/* Paid service badge - top-left corner overlay on organization cards */
.art-organization-card__paid-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.art-organization-card__paid-badge svg {
  width: 16px;
  height: 16px;
}

.art-organization-card__content {
  padding: 1rem;
}

.art-organization-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.art-organization-card__title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.art-organization-card__title a:hover {
  color: #000;
}

.art-organization-card__actions {
  margin-top: 1rem;
}

.art-organization-card__view-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.art-organization-card__view-link:hover {
  background: #222;
  color: #fff;
}

/* Individual Location Detail Styling */
.art-location--detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.art-location__back {
  margin: 0 0 1rem;
}

.art-location__back-link {
  color: #0073aa;
  text-decoration: none;
  font-size: 0.9rem;
}

.art-location__back-link:hover {
  text-decoration: underline;
}

.art-location__header {
  margin: 0 0 1.5rem;
}

.art-location__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.art-location__image {
  margin: 0 0 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.art-location__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.art-location__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  text-align: center;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
}

.art-location__placeholder-icon {
  margin-bottom: 1rem;
  opacity: 0.6;
}

.art-location__placeholder-text {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.8;
}

.art-location__address,
.art-location__events {
  margin: 0 0 2rem;
}

.art-location__address h3,
.art-location__events h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.art-location__address-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.art-location__map {
  margin: 1rem 0 0;
}

.art-location__map-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #0073aa;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.art-location__map-link:hover {
  background: #005a87;
  color: white;
}

/* Location Error and Empty States */
.art-locations--error,
.art-locations--empty,
.art-location--error,
.art-location--not-found {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  color: #6c757d;
  margin: 1rem 0;
}

/* ===== HOMEPAGE SECTIONS ===== */

/* Homepage Events Section */
.art-home-events {
  margin: 3rem 0;
  padding: 2rem 0;
}

.art-home-events__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 1rem;
}

.art-home-events__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.art-home-events__more-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #0073aa;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.art-home-events__more-link:hover {
  background: #005a87;
  color: white;
  text-decoration: none;
}

.art-home-events__more-link::after {
  content: '→';
  margin-left: 0.5rem;
}

.art-home-events__content {
  margin-top: 1rem;
}

/* Homepage Locations Section */
.art-home-locations {
  margin: 3rem 0;
  padding: 2rem 0;
  background: #f8f9fa;
  border-radius: 12px;
}

.art-home-locations__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 1rem;
}

.art-home-locations__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.art-home-locations__more-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #212121;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.art-home-locations__more-link:hover {
  background: #000000;
  color: white;
  text-decoration: none;
}

.art-home-locations__more-link::after {
  content: '→';
  margin-left: 0.5rem;
}

.art-home-locations__content {
  padding: 0 2rem;
}

.art-home-locations__map-container {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.art-home-locations__map {
  width: 100%;
  border: none;
  border-radius: 8px;
}

.art-home-locations__grid {
  margin-top: 2rem;
}

/* Responsive Design for Homepage Sections */
@media (max-width: 768px) {
  .art-home-events__header,
  .art-home-locations__header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .art-home-events__title,
  .art-home-locations__title {
    font-size: 1.5rem;
  }

  .art-home-events,
  .art-home-locations {
    margin: 2rem 0;
    padding: 1.5rem 0;
  }

  .art-home-locations__content {
    padding: 0 1rem;
  }

  .art-home-locations__header {
    padding: 0 1rem 1rem;
  }
}

/* ===== PARTICIPANT PROFILES ===== */

/* Single Participant Profile */
.art-participant-profile--single {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.art-participant-profile__back {
  margin-bottom: 2rem;
}

.art-participant-profile__back-link {
  color: #212121;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.art-participant-profile__back-link:hover {
  color: #000000;
  text-decoration: underline;
}

/* Hero Image */
.art-participant-profile__hero {
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.art-participant-profile__hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* 2-Column Layout Container */
.art-participant-profile__container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

/* SIDEBAR */
.art-participant-profile__sidebar {
  position: sticky;
  top: 2rem;
}

.art-participant-profile__avatar {
  margin-bottom: 1.5rem;
}

.art-participant-profile__avatar-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.art-participant-profile__avatar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.art-participant-profile__avatar-placeholder-icon {
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.art-participant-profile__avatar-placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.art-participant-profile__category {
  font-size: 20px;
  color: #6c757d;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 2rem 0;
  line-height: 1.4;
}

/* MAIN CONTENT */
.art-participant-profile__content {
  min-width: 0;
}

.art-participant-profile__name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.art-participant-profile__website {
  margin-bottom: 1rem;
}

.art-participant-profile__website-link {
  display: block;
  background: #212121;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}

.art-participant-profile__website-link:hover {
  background: #000000;
  color: white;
  text-decoration: none;
}

/* Social Links */
.art-participant-profile__social {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.art-participant-profile__social-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.art-participant-profile__social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.art-participant-profile__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  color: #2c3e50;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.art-participant-profile__social-link:hover {
  background: #212121;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(33, 33, 33, 0.3);
}

.art-participant-profile__social-link i {
  font-size: 20px;
}

.art-participant-profile__followers {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.art-participant-profile__followers-count {
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 500;
}

.art-participant-profile__category {
  color: #6c757d;
  font-size: 1.1rem;
}

.art-participant-profile__category-label {
  font-weight: 600;
}

.art-participant-profile__bio {
  margin-bottom: 2rem;
}

.art-participant-profile__bio-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #212121;
  padding-bottom: 0.5rem;
}

.art-participant-profile__bio-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
}

.art-participant-profile__gallery {
  margin-bottom: 2rem;
}

.art-participant-profile__gallery-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #212121;
  padding-bottom: 0.5rem;
}

.art-participant-profile__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.art-participant-profile__gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  height: 0;
  padding-bottom: 100%; /* Creates 1:1 aspect ratio */
}

.art-participant-profile__gallery-item:hover {
  transform: translateY(-2px);
}

.art-participant-profile__gallery-item:hover .art-gallery-overlay {
  opacity: 1;
}

.art-gallery-lightbox {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.art-participant-profile__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.art-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.art-gallery-overlay i {
  color: white;
  font-size: 32px;
}

/* Lightbox Modal */
.art-lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100000; /* Above everything including header when active */
  align-items: center;
  justify-content: center;
}

.art-lightbox-modal.active {
  display: flex;
}

.art-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.art-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100001; /* Above lightbox background */
}

.art-lightbox-close:hover {
  background: #212121;
  color: white;
  transform: rotate(90deg);
}

.art-lightbox-prev,
.art-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100001; /* Above lightbox background */
}

.art-lightbox-prev {
  left: 20px;
}

.art-lightbox-next {
  right: 20px;
}

.art-lightbox-prev:hover,
.art-lightbox-next:hover {
  background: #212121;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.art-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
}

/* Responsive lightbox styles */
@media (max-width: 768px) {
  .art-lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .art-lightbox-prev,
  .art-lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .art-lightbox-prev {
    left: 10px;
  }

  .art-lightbox-next {
    right: 10px;
  }

  .art-lightbox-counter {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .art-lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  .art-lightbox-image {
    max-height: 85vh;
  }
}

.art-participant-profile__tags {
  margin-bottom: 1rem;
}

.art-participant-profile__tags-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.art-participant-profile__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.art-participant-profile__tag {
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.art-participant-profile__followers {
  color: #6c757d;
  font-size: 1rem;
}

/* Participant Profiles Grid - Matches Event Grid */
.art-participant-profiles--grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.art-participant-profiles--grid[data-cols="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.art-participant-profiles--grid[data-cols="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.art-participant-profiles--grid[data-cols="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .art-participant-profiles--grid[data-cols="4"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .art-participant-profiles--grid[data-cols="4"],
  .art-participant-profiles--grid[data-cols="3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .art-participant-profiles--grid[data-cols="4"],
  .art-participant-profiles--grid[data-cols="3"],
  .art-participant-profiles--grid[data-cols="2"] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .art-participant-profiles--grid {
    gap: 1rem;
  }
}

/* Participant Profile Card - Matches Event Cards */
.art-participant-profile-card {
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.art-participant-profile-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.art-participant-profile-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
}

.art-participant-profile-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.art-participant-profile-card__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.art-participant-profile-card:hover .art-participant-profile-card__image-img {
  transform: scale(1.05);
}

.art-participant-profile-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  text-align: center;
}

.art-participant-profile-card__placeholder-icon {
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.art-participant-profile-card__placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.art-participant-profile-card__content {
  padding: 1rem;
}

.art-participant-profile-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.art-participant-profile-card__title-link {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.art-participant-profile-card__title-link:hover {
  color: #000;
}

.art-participant-profile-card__category {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.art-participant-profile-card__bio {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.art-participant-profile-card__gallery {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.art-participant-profile-card__gallery-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.art-participant-profile-card__website {
  margin-bottom: 0.5rem;
}

.art-participant-profile-card__website-link {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.art-participant-profile-card__website-link:hover {
  color: #000;
}

.art-participant-profile-card__followers {
  color: #6b7280;
  font-size: 0.85rem;
}

/* Participant Profiles Filter - Matches Events Filter */
.art-participant-profiles-filter {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}

/* Fast Filter Bar - Stacked layout */
.art-participant-profiles-filter--fast {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}
.art-participant-profiles-filter--fast .art-filter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.art-participant-profiles-filter--fast .art-filter__row--dropdowns {
  gap: 0.75rem;
}
.art-participant-profiles-filter--fast .art-filter__row--actions {
  gap: 1rem;
}
.art-participant-profiles-filter--fast input[type="text"],
.art-participant-profiles-filter--fast select {
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 0;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.art-participant-profiles-filter--fast input[type="text"]:focus,
.art-participant-profiles-filter--fast select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}
.art-participant-profiles-filter--fast .art-filter__search {
  flex: 1;
  min-width: 200px;
  width: 100%;
}
.art-participant-profiles-filter--fast .art-filter__category {
  flex: 1;
  min-width: 160px;
}
.art-participant-profiles-filter--fast .art-filter__city {
  flex: 1;
  min-width: 140px;
}
.art-participant-profiles-filter--fast .art-filter__sort {
  min-width: 130px;
}
.art-participant-profiles-filter--fast .art-filter__aap-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}
.art-participant-profiles-filter--fast .art-filter__aap {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000;
}
.art-participant-profiles-filter--fast .art-filter__count {
  margin-left: auto;
  font-size: 0.9rem;
  color: #6b7280;
  white-space: nowrap;
}
.art-participant-profiles-filter--fast .art-filter__reset {
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.art-participant-profiles-filter--fast .art-filter__reset:hover {
  background: #222;
}

/* Responsive for fast filter */
@media (max-width: 768px) {
  .art-participant-profiles-filter--fast .art-filter__row--dropdowns {
    flex-direction: column;
  }
  .art-participant-profiles-filter--fast .art-filter__category,
  .art-participant-profiles-filter--fast .art-filter__city,
  .art-participant-profiles-filter--fast .art-filter__sort {
    width: 100%;
  }
  .art-participant-profiles-filter--fast .art-filter__row--actions {
    flex-wrap: wrap;
  }
  .art-participant-profiles-filter--fast .art-filter__count {
    flex: 1 1 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
}

.art-participant-profiles-filter__row {
  margin-bottom: 1rem;
}

.art-participant-profiles-filter__row:last-of-type {
  margin-bottom: 0;
}

.art-participant-profiles-filter__row label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.art-participant-profiles-filter__row input[type="text"],
.art-participant-profiles-filter__row select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 0;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.art-participant-profiles-filter__row input[type="text"]:focus,
.art-participant-profiles-filter__row select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.art-participant-profiles-filter__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.art-participant-profiles-filter__actions button {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.art-participant-profiles-filter__actions button:hover {
  background: #222;
  transform: translateY(-1px);
}

.art-participant-profiles-filter__reset {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.art-participant-profiles-filter__reset:hover {
  color: #000;
  text-decoration: underline;
}

/* Error states */
.art-participant-profiles--error,
.art-participant-profiles--empty,
.art-participant-profile--error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #f5c6cb;
  text-align: center;
  margin: 1rem 0;
}

.art-participant-profiles--empty {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}

/* Responsive Design */
@media (max-width: 968px) {
  .art-participant-profile__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .art-participant-profile__sidebar {
    position: static;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .art-participant-profile__avatar {
    margin-bottom: 0;
  }

  .art-participant-profile__name {
    font-size: 2rem;
  }

  .art-participant-profile__gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 600px) {
  .art-participant-profile__sidebar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .art-participant-profile__name {
    font-size: 1.75rem;
  }
}

/* ===== LOAD MORE FUNCTIONALITY ===== */

.art-load-more-container {
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
}

.art-load-more-btn {
  background: #212121;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(33, 33, 33, 0.2);
}

.art-load-more-btn:hover:not(:disabled) {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 33, 33, 0.3);
}

.art-load-more-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.art-load-more-spinner {
  margin-top: 1rem;
  color: #6c757d;
  font-style: italic;
}

/* Container classes for different grid types */
.art-participant-profiles-container,
.art-locations-container,
.art-events-container {
  position: relative;
}

/* Loading state animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.art-participant-profile-card,
.art-location-card,
.art-event-card {
  animation: fadeIn 0.5s ease-out;
}

/* Event Card Styles (for art_events_fast shortcode) */
.art-event-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.art-event-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.art-event-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}
.art-event-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.art-event-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.art-event-card:hover .art-event-card__image img {
  transform: scale(1.05);
}
.art-event-card__content {
  padding: 1rem;
}
.art-event-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.art-event-card__title a {
  color: inherit;
  text-decoration: none;
}
.art-event-card__title a:hover {
  text-decoration: underline;
}
.art-event-card__time {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}
.art-event-card__location {
  font-size: 0.875rem;
  color: #888;
}

/* Participant Profiles Explorer */
.art-participant-profiles-explorer { margin: 1rem 0 2rem; }
.art-participant-profiles-explorer__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.art-participant-profiles-explorer__filters input[type="text"],
.art-participant-profiles-explorer__filters select {
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 0;
  min-width: 180px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.art-participant-profiles-explorer__filters input[type="text"]:focus,
.art-participant-profiles-explorer__filters select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}
.art-participant-profiles-explorer__filters .art-filter__search {
  flex: 1;
  min-width: 200px;
}
.art-participant-profiles-explorer__filters .art-filter__category {
  min-width: 160px;
}
.art-participant-profiles-explorer__filters .art-filter__sort {
  min-width: 100px;
}
.art-participant-profiles-explorer__filters .art-filter__aap-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}
.art-participant-profiles-explorer__filters .art-filter__aap {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000;
}
.art-participant-profiles-explorer__filters .art-filter__count {
  margin-left: auto;
  font-size: 0.9rem;
  color: #6b7280;
  white-space: nowrap;
}
.art-participant-profiles-explorer__filters .art-filter__reset {
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.art-participant-profiles-explorer__filters .art-filter__reset:hover {
  background: #222;
}
.art-participant-profiles-explorer__grid { margin-top: 1rem; }

/* Responsive filters for participant profiles explorer */
@media (max-width: 768px) {
  .art-participant-profiles-explorer__filters {
    flex-wrap: wrap;
  }
  .art-participant-profiles-explorer__filters .art-filter__search {
    flex: 1 1 100%;
    order: 1;
  }
  .art-participant-profiles-explorer__filters .art-filter__category {
    order: 2;
    flex: 1;
  }
  .art-participant-profiles-explorer__filters .art-filter__sort {
    order: 3;
  }
  .art-participant-profiles-explorer__filters .art-filter__aap-label {
    order: 4;
  }
  .art-participant-profiles-explorer__filters .art-filter__reset {
    order: 5;
  }
  .art-participant-profiles-explorer__filters .art-filter__count {
    flex: 1 1 100%;
    order: 6;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Locations Explorer Overrides */
.art-locations-explorer { margin: 1rem 0 2rem; }
.art-locations-explorer__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.art-locations-explorer__filters input[type="text"],
.art-locations-explorer__filters select {
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 0;
  min-width: 180px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.art-locations-explorer__filters input[type="text"]:focus,
.art-locations-explorer__filters select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}
.art-locations-explorer__map { border-radius:8px; overflow:hidden; box-shadow:0 2px 8px rgba(0,0,0,.08); }
.art-locations-explorer__grid { margin-top:1rem; }
.art-locations-explorer .art-location-card.is-active { outline:2px solid #000; outline-offset:2px; }

/* Reset button styling */
.art-locations-explorer__filters .art-filter__reset {
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.art-locations-explorer__filters .art-filter__reset:hover {
  background: #222;
}

/* Force 5/3/1 responsive columns inside explorer */
.art-locations-explorer .art-locations--grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) {
  .art-locations-explorer .art-locations--grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .art-locations-explorer .art-locations--grid { grid-template-columns: 1fr; }
}

/* Organizations Explorer Overrides */
.art-organizations-explorer { margin: 1rem 0 2rem; }
.art-organizations-explorer__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.art-organizations-explorer__filters input[type="text"],
.art-organizations-explorer__filters select {
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 0;
  min-width: 180px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.art-organizations-explorer__filters input[type="text"]:focus,
.art-organizations-explorer__filters select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}
.art-organizations-explorer__grid { margin-top: 1rem; }
.art-organizations-explorer .art-organization-card.is-active { outline:2px solid #000; outline-offset:2px; }

/* Sort dropdown styling */
.art-organizations-explorer__filters .art-filter__sort {
  padding: 0.65rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  min-width: 100px;
}

/* AAP checkbox label styling */
.art-organizations-explorer__filters .art-filter__aap-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}
.art-organizations-explorer__filters .art-filter__aap {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000;
}

/* Paid service checkbox label styling */
.art-organizations-explorer__filters .art-filter__paid-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}
.art-organizations-explorer__filters .art-filter__paid {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000;
}

/* Results count */
.art-organizations-explorer__filters .art-filter__count {
  margin-left: auto;
  font-size: 0.9rem;
  color: #6b7280;
  white-space: nowrap;
}

/* Reset button styling */
.art-organizations-explorer__filters .art-filter__reset {
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.art-organizations-explorer__filters .art-filter__reset:hover {
  background: #222;
}

/* Responsive filters */
@media (max-width: 768px) {
  .art-organizations-explorer__filters {
    flex-wrap: wrap;
  }
  .art-organizations-explorer__filters .art-filter__search {
    flex: 1 1 100%;
    order: 1;
  }
  .art-organizations-explorer__filters .art-filter__sort {
    order: 2;
  }
  .art-organizations-explorer__filters .art-filter__aap-label {
    order: 3;
  }
  .art-organizations-explorer__filters .art-filter__paid-label {
    order: 4;
  }
  .art-organizations-explorer__filters .art-filter__reset {
    order: 5;
  }
  .art-organizations-explorer__filters .art-filter__count {
    flex: 1 1 100%;
    order: 6;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Force 5/3/1 responsive columns inside explorer */
.art-organizations-explorer .art-organizations--grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) {
  .art-organizations-explorer .art-organizations--grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .art-organizations-explorer .art-organizations--grid { grid-template-columns: 1fr; }
}


/* ===== SIMPLE SLIDER ===== */
.art-slider { position: relative; --gap: 12px; }
.art-slider__viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.art-slider__viewport::-webkit-scrollbar { display: none; }
.art-slider__track { display: flex; gap: var(--gap); scroll-behavior: smooth; }
.art-slider__item { flex: 0 0 auto; }

/* 6 columns visible by default */
.art-slider--cols-6 .art-slider__item { flex-basis: calc((100% - 5 * var(--gap)) / 6); }
.art-slider--cols-5 .art-slider__item { flex-basis: calc((100% - 4 * var(--gap)) / 5); }
.art-slider--cols-4 .art-slider__item { flex-basis: calc((100% - 3 * var(--gap)) / 4); }
.art-slider--cols-3 .art-slider__item { flex-basis: calc((100% - 2 * var(--gap)) / 3); }
.art-slider--cols-2 .art-slider__item { flex-basis: calc((100% - 1 * var(--gap)) / 2); }
.art-slider--cols-1 .art-slider__item { flex-basis: 100%; }

/* Card with title overlay */
.art-card { position: relative; border-radius: 8px; overflow: hidden; background: #f3f3f3; display: block; }
.art-card img { display: block; width: 100%; height: 180px; object-fit: cover; }
.art-card__placeholder { width: 100%; height: 180px; background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.art-card__title { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 10px; color: #fff; font-size: 0.95rem; line-height: 1.2; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 100%); }

/* Linked card styles */
.art-card--linked { text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.art-card--linked:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.art-card--linked .art-card__title { color: #fff; }

/* Badge in top-right of slider card */
.art-card__badge { position: absolute; top: 8px; right: 8px; z-index: 2; }
.art-card__badge-inner { display: inline-block; padding: 4px 8px; font-size: .85rem; line-height: 1; color: #fff; background: rgba(0,0,0,.65); border-radius: 999px; box-shadow: 0 1px 3px rgba(0,0,0,.25); }

/* Paid service badge in top-left of slider card */
.art-card__paid-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.art-card__paid-badge svg {
  width: 16px;
  height: 16px;
}

/* Arrows */
.art-slider__btn { position: absolute; top: 50%; transform: translateY(-50%); border: 1px solid #ddd; background: rgba(255,255,255,0.9); color: #333; width: 36px; height: 36px; border-radius: 18px; display: grid; place-items: center; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.08); z-index: 5; }
.art-slider__btn:hover { background: #fff; }
.art-slider__btn--prev { left: -8px; }
.art-slider__btn--next { right: -8px; }

/* Responsive: fall back to fewer columns */
@media (max-width: 1024px) {
  .art-slider--cols-6 .art-slider__item { flex-basis: calc((100% - 3 * var(--gap)) / 4); }
}
@media (max-width: 768px) {
  .art-slider--cols-6 .art-slider__item,
  .art-slider--cols-5 .art-slider__item { flex-basis: calc((100% - 1 * var(--gap)) / 2); }
}
@media (max-width: 520px) {
  .art-slider--cols-6 .art-slider__item,
  .art-slider--cols-5 .art-slider__item,
  .art-slider--cols-4 .art-slider__item,
  .art-slider--cols-3 .art-slider__item { flex-basis: 100%; }
}

/* ===== HERO SLIDER ===== */
.art-hero { position: relative; border-radius: 0; overflow: hidden; }
.art-hero__viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.art-hero__viewport::-webkit-scrollbar { display: none; }
.art-hero__track { display: flex; }
.art-hero__slide { position: relative; flex: 0 0 100%; height: 0; padding-top: calc(41.667% + 90px); }
.art-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.art-hero__bg::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 75%; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%); }
.art-hero__bg--mobile { display: none; }


.art-hero__content { position: absolute; left: 50%; right: auto; bottom: 0; transform: translateX(-50%); width: min(100%, 1440px); padding: calc(4em + 60px) 1.5rem; color: #fff; background: none; }
.art-hero__title { margin: 0 0 .25rem; font-size: 60px; line-height: 1.1; font-weight: 800; max-width: 800px; color:#fff !important; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.art-hero__desc { margin: 0 0 .5rem; font-size: 20px; color:#fff; opacity: .95; max-width: 800px; text-shadow: 1px 1px 3px rgba(0,0,0,0.6); }
.art-hero__btn-cta { display: inline-block; padding: .6rem 1rem; border-radius: 0; background: #000; color:#fff; text-decoration:none; font-weight:700; font-size:22px; font-family:'Oswald', Arial, sans-serif; text-transform:uppercase; border:2px solid #fff; margin-top:12px; }
.art-hero__btn-cta:hover { background: #000; color:#fff; border-color:#fff; }
.art-hero__btn { position: absolute; top: 50%; transform: translateY(-50%); border: 1px solid #ddd; background: rgba(255,255,255,0.9); color: #333; width: 40px; height: 40px; border-radius: 20px; display: grid; place-items: center; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.08); z-index: 5; }
/* Mobile: all sliders and hero use 1:1 aspect */
@media (max-width: 768px) {
  /* simple sliders */
  .art-card img, .art-card__placeholder { height: auto; aspect-ratio: 1 / 1; }
  /* hero slider */
  .art-hero__slide { padding-top: 100%; }
  .art-hero__bg--desktop { display: none; }
  .art-hero__bg--mobile { display: block; }
}

/* ===== LOCATION DETAIL LAYOUT ===== */
.art-location__map-embed { width: min(100vw, 1440px); max-width: none; margin: 0 auto; height: 600px; background: #e9ecef; position: relative; left: 50%; transform: translateX(-50%); }
.art-location__map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.art-location__body { width: min(100vw, 1440px); max-width: none; margin: 2rem auto; padding: 0 1rem; display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; position: relative; left: 50%; transform: translateX(-50%); }
.art-location__left .art-location__image img { display: block; width: 100%; height: auto; }
.art-location__desc { margin-top: 1rem; font-size: 1.05rem; line-height: 1.6; color: #222; }
.art-location__meta-title { margin: 0 0 .5rem; font-size: 1.1rem; font-weight: 700; }
.art-location__meta-list { list-style: none; margin: 0; padding: 0; }
.art-location__meta-list li { margin: .35rem 0; }
@media (max-width: 1024px) {
  .art-location__body { grid-template-columns: 1fr; }
}

/* Move thumbnail to right and reduce size */
.art-location__left .art-location__image { display: none; }
.art-location__right .art-location__image { margin-bottom: 1rem; text-align: center; }
.art-location__right .art-location__image img { display: inline-block; width: 100%; height: auto; max-width: 360px; border-radius: 8px; }
.art-location__logo { object-fit: contain; background: #fff; padding: 1rem; }

/* Gallery */
.art-location__gallery { margin-top: 2rem; }
.art-location__gallery-title { margin: 0 0 1rem; font-size: 1.5rem; font-weight: 700; }
.art-location__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.art-location__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: #f5f5f5;
}
.art-location__gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.art-location__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.art-location__gallery-item:hover img {
  transform: scale(1.05);
}

/* Social Links */
.art-location__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.art-location__social-list li {
  margin: 0;
}
.art-location__social-list a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.art-location__social-list a:hover {
  background: #000;
  color: #fff;
}

/* Directions Link */
.art-location__directions-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.art-location__directions-link:hover {
  background: #005a87;
}

/* Hours Note */
.art-location__hours-note {
  font-style: italic;
  color: #666;
  margin: 0;
}

/* Mobile map height tweak */
@media (max-width: 768px) {
  .art-location__map-embed { height: 360px; }
  .art-location__gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}


/* === Location Detail: Sidebar spacing + unified button styling === */
.art-location__right { display: flex; flex-direction: column; gap: 1.5rem; }
.art-location__right .art-location__image { margin-bottom: 1.25rem; }

/* Consistent block rhythm inside the sidebar */
.art-location__meta-block { margin: 0; padding: 0; }
.art-location__meta-block + .art-location__meta-block { border-top: 1px solid #eee; padding-top: 1.25rem; }

/* Meta titles – compact, readable headings */
.art-location__meta-title {
  margin: 0 0 .5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Lists inside blocks – remove bullets/indent regardless of theme overrides */
.art-location .art-location__meta-list { list-style: none !important; padding-left: 0 !important; margin: 0; }
.art-location__meta-list li { margin: .25rem 0; }

/* Unified button style for this shortcode (directions + social links) */
.art-location__directions-link,
.art-location__social-list a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1rem;
  background: #000; /* black */
  color: #fff !important; /* ensure readable on black */
  text-decoration: none;
  border-radius: 0; /* no radius */
  border: 1px solid #000;
  font-family: 'Oswald', sans-serif; /* Oswald */
  font-weight: 700; /* bold */
  text-transform: uppercase; /* uppercase */
  letter-spacing: .04em;
  font-size: 20px; /* per request */
  line-height: 1;
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
  transition: transform .02s ease-in-out, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.art-location__directions-link:hover,
.art-location__social-list a:hover { background: #111; border-color: #111; color: #fff; transform: translateY(-1px); }

/* Space the social buttons a bit from the title */
.art-location__social-list { margin-top: .25rem; }



/* Hide arrow buttons - replaced with dots navigation */
.art-hero__btn--prev,
.art-hero__btn--next { display: none !important; }

/* Navigation dots */
.art-hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.art-hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.art-hero__dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.art-hero__dot--active {
  background: #fff;
  border-color: #fff;
}

/* Make viewport support touch/swipe */
.art-hero__viewport {
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.art-hero__viewport:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .art-hero__content { padding: 2.25em 1rem; }
  .art-hero__title { font-size: 34px; max-width: 90vw; }
  .art-hero__desc { font-size: .95rem; }

  /* Smaller dots on mobile */
  .art-hero__dots {
    bottom: 15px;
    gap: 8px;
  }

  .art-hero__dot {
    width: 10px;
    height: 10px;
  }
}



/* Event map embed */
.art-event__map-embed { width: min(100vw, 1440px); max-width: none; margin: 0 auto 1.5rem; height: 600px; background: #e9ecef; position: relative; left: 50%; transform: translateX(-50%); }
.art-event__map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 768px) {
  .art-event__map-embed { height: 360px; }
}


/* ===== EVENT DETAIL LAYOUT ===== */
.art-event__body { width: min(100vw, 1440px); max-width: none; margin: 2rem auto; padding: 0 1rem; display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; position: relative; left: 50%; transform: translateX(-50%); }
@media (max-width: 1024px) {
  .art-event__body { grid-template-columns: 1fr; }
}
.art-event__right .art-event__image { margin-bottom: 1rem; text-align: center; }
.art-event__right .art-event__image img { display: inline-block; width: 100%; height: auto; max-width: 360px; }
.art-event__location { margin: 1rem 0; }
.art-event__contact { margin: 1rem 0; }
.art-event__dates-title { margin-top: 1.5rem; }
.art-event__dates { list-style: none; margin: .5rem 0 0; padding: 0; }
.art-event__nodates { color: #666; font-style: italic; margin-top: .5rem; }


/* ===== MONTH CALENDAR ===== */
.art-month-cal { margin: 1rem 0; }
.art-month-cal__header { margin-bottom: .75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.art-month-cal__title { margin: 0; font-size: 2rem; font-weight: 800; letter-spacing: .02em; }

/* Navigation controls */
.art-month-cal__nav { display: flex; gap: .5rem; align-items: center; }
.art-month-cal__nav-btn {
  padding: .5rem .85rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: all .15s ease;
  cursor: pointer;
}
.art-month-cal__nav-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.art-month-cal__nav-btn--today {
  background: #2f9e44;
  color: #fff;
  border-color: #2f9e44;
}
.art-month-cal__nav-btn--today:hover {
  background: #268a3a;
  border-color: #268a3a;
  color: #fff;
}

.art-month-cal__grid { display: grid; gap: 8px; }
.art-month-cal__grid--7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.art-month-cal__dow { font-weight: 700; color: #444; text-align: center; padding: 8px 4px; font-size: .9rem; text-transform: uppercase; letter-spacing: .02em; }
.art-month-cal__cell { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; min-height: 120px; position: relative; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.04); aspect-ratio: 1 / 1; transition: border-color .2s ease, box-shadow .2s ease; }
.art-month-cal__cell--pad { background: #f9fafb; border: 1px solid #f1f3f5; }
.art-month-cal__cell.is-weekend { background: #fafbfc; }
.art-month-cal__day { appearance: none; border: 0; background: transparent; width: 100%; height: 100%; padding: 10px; cursor: pointer; text-align: left; display: block; position: relative; transition: background .15s ease; }
.art-month-cal__day:hover { background: #f8fafc; }
.art-month-cal__day:focus { outline: 2px solid #2f9e44; outline-offset: -2px; }
.art-month-cal__day.is-selected { outline: 0; box-shadow: inset 0 0 0 3px #2f9e44; background: #f1fbf4; }

/* Day number - top-left */
.art-month-cal__daynum { position:absolute; top:6px; left:8px; padding:3px 6px; border-radius:6px; font-weight:700; font-size:.85rem; background:transparent; color:#111; transition: all .2s ease; }
.is-today .art-month-cal__daynum { background: #2f9e44; color: #fff; box-shadow: 0 2px 4px rgba(47,158,68,.3); }

/* Event count badge - centered, round */
.art-cal-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #2f9e44;
  background: rgba(47,158,68,.12);
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(47,158,68,.15);
  transition: all .2s ease;
}
.has-events .art-month-cal__day:hover .art-cal-count {
  background: rgba(47,158,68,.2);
  color: #268a3a;
  transform: translate(-50%, -50%) scale(1.05);
}
.art-month-cal__day.is-selected .art-cal-count {
  background: rgba(47,158,68,.25);
  box-shadow: inset 0 0 0 2px rgba(47,158,68,.3);
}

/* Thumbnail stack under count */
.art-cal-thumbs {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  pointer-events: none;
}
.art-cal-thumbdot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-size: cover;
  background-position: center;
  margin-left: -10px; /* overlap */
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}
.art-cal-thumbs .art-cal-thumbdot:first-child { margin-left: 0; }
@media (max-width: 600px){
  .art-cal-thumbdot { width: 22px; height: 22px; margin-left: -8px; }
}

/* Results area */
.art-month-cal__results { margin-top: 1.5rem; }
.art-month-cal__results-title { margin: 0 0 .75rem; font-size: 1.35rem; font-weight: 800; color: #111; }
.art-cal-loading { padding: 1rem; text-align: center; color: #6b7280; font-style: italic; }
.art-cal-empty { padding: 1rem; text-align: center; color: #9ca3af; }

/* Event list */
.art-cal-list { list-style: none; padding: 0; margin: 0; }
.art-cal-item { padding: .5rem .25rem; border-top: 1px dashed #e9ecef; }
.art-cal-item:first-child { border-top: 0; }
.art-cal-item__time { font-size: .8rem; color: #6b7280; font-weight: 600; margin-bottom: .15rem; }
.art-cal-item__link { color: #0073aa; text-decoration: none; font-weight: 600; }
.art-cal-item__link:hover { color: #005f8d; text-decoration: underline; }

/* Tooltip preview */
.art-cal-tooltip {
  position: absolute;
  display: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: .5rem .75rem;
  z-index: 100;
  width: 480px;
  pointer-events: none;
  max-height: 400px;
  overflow-y: auto;
}
.art-cal-item--preview {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .4rem 0;
  border-top: 0;
}
.art-cal-thumb {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  background: #f1f3f5;
}
.art-cal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.art-cal-item__meta {
  min-width: 0;
  flex: 1;
}
.art-cal-item__title {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .15rem;
  font-size: .95rem;
}
.art-cal-item__desc {
  font-size: .85rem;
  color: #555;
  line-height: 1.35;
}

.art-cal-preview .art-cal-list { max-height: 360px; overflow: hidden; }

/* Responsive adjustments */
@media (max-width: 900px){
  .art-month-cal__cell { min-height: 90px; }
  .art-month-cal__title { font-size: 1.5rem; }
  .art-month-cal__header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px){
  .art-month-cal__dow { font-size: .75rem; }
  .art-month-cal__grid { gap: 6px; }
  .art-cal-tooltip { width: 280px; }
  .art-month-cal__nav { width: 100%; justify-content: space-between; }
  .art-month-cal__nav-btn { padding: .4rem .65rem; font-size: .85rem; }
}


/* ===== Mobile calendar refinements ===== */
@media (max-width: 600px) {
  .art-month-cal { margin: 0.5rem 0; }
  .art-month-cal__title { font-size: 1.35rem; }
  /* Tighter grid and true squares sized by width */
  .art-month-cal__grid { gap: 3px; }
  .art-month-cal__dow { font-size: 0.72rem; padding: 4px 2px; letter-spacing: 0.01em; }
  .art-month-cal__cell { border-radius: 8px; min-height: 0; box-sizing: border-box; }
  .art-month-cal__day { padding: 6px; }
  .art-month-cal__daynum { top: 3px; left: 5px; font-size: 0.72rem; }
  /* Smaller event count bubble */
  .art-cal-count { width: 28px; height: 28px; font-size: 0.85rem; }
  .art-month-cal__results-title { font-size: 1.1rem; }
}

@media (max-width: 380px) {
  .art-month-cal__grid { gap: 2px; }
  .art-month-cal__day { padding: 5px; }
  .art-month-cal__daynum { top: 3px; left: 4px; font-size: 0.7rem; }
  /* Even smaller on extra-narrow screens */
  .art-cal-count { width: 24px; height: 24px; font-size: 0.8rem; }
}

/* ===== COMMA-SEPARATED LISTS ===== */
.art-list--paragraph { margin: 1.5rem 0; }
.art-list--paragraph p { font-size: 1rem; line-height: 1.6; margin-bottom: 1rem; }
.art-list--paragraph a { color: #0073aa; text-decoration: none; transition: color 0.2s ease; }
.art-list--paragraph a:hover { color: #005177; text-decoration: underline; }
.art-list__view-all { margin-top: 1rem; }
.art-list--empty { color: #666; font-style: italic; }

/* ===== SINGLE ORGANIZATION ===== */
.art-organization--single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.art-organization__back {
  margin-bottom: 2rem;
}

.art-organization__back-link {
  color: #212121;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.art-organization__back-link:hover {
  color: #000000;
  text-decoration: underline;
}

.art-organization__header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.art-organization__logo {
  flex-shrink: 0;
}

.art-organization__logo-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid #f8f9fa;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: white;
  padding: 0.5rem;
}

.art-organization__logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #6c757d;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

.art-organization__logo-placeholder-icon {
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.art-organization__logo-placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.art-organization__info {
  flex: 1;
}

.art-organization__name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.art-organization__website {
  margin-bottom: 1rem;
}

.art-organization__website-link {
  display: inline-block;
  background: #212121;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.art-organization__website-link:hover {
  background: #000000;
  color: white;
  text-decoration: none;
}

.art-organization__description {
  margin-bottom: 2rem;
}

.art-organization__description-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #212121;
  padding-bottom: 0.5rem;
}

.art-organization__description-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
}

.art-organization__contact {
  margin-bottom: 2rem;
}

.art-organization__contact-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #212121;
  padding-bottom: 0.5rem;
}

.art-organization__contact-details {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
}

.art-organization__contact-item {
  margin-bottom: 0.75rem;
}

.art-organization__contact-item a {
  color: #212121;
  text-decoration: none;
  transition: color 0.3s ease;
}

.art-organization__contact-item a:hover {
  color: #000000;
  text-decoration: underline;
}

.art-organization--error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #f5c6cb;
  text-align: center;
  margin: 1rem 0;
}

/* Responsive Design for Organizations */
@media (max-width: 768px) {
  .art-organization--single {
    padding: 1rem;
    margin: 1rem;
  }

  .art-organization__header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .art-organization__logo-img {
    width: 120px;
    height: 120px;
  }

  .art-organization__name {
    font-size: 2rem;
  }
}

/* Disable hover tooltips on touch devices */
@media (hover: none) and (pointer: coarse) {
  .art-cal-tooltip { display: none !important; }
}

/* ===== PRISMATIC EVENT SECTIONS ===== */

/* Base Prismatic Styles */
.art-prismatic {
  margin: 3rem 0;
  padding: 4rem 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* 85% White Overlay for ALL patterns (default) */
.art-prismatic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

/* Override default overlay for specific opacity variations */
.art-prismatic.art-prismatic--no-overlay::before {
  background: rgba(255, 255, 255, 0) !important;
}

.art-prismatic.art-prismatic--overlay-25::before {
  background: rgba(255, 255, 255, 0.25) !important;
}

.art-prismatic.art-prismatic--overlay-50::before {
  background: rgba(255, 255, 255, 0.50) !important;
}

.art-prismatic.art-prismatic--overlay-70::before {
  background: rgba(255, 255, 255, 0.70) !important;
}

.art-prismatic__header {
  text-align: center;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
  z-index: 2;
}

.art-prismatic__title {
  margin: 0 0 0.75rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.art-prismatic__subtitle {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  color: #555;
  font-weight: 400;
  font-style: normal;
  font-family: 'Courier New', Courier, monospace;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.art-prismatic__classes {
  margin: 0;
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
  font-style: normal;
  font-family: 'Courier New', Courier, monospace;
  background: rgba(0, 0, 0, 0.03);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Ensure content is above patterns */
.art-prismatic .art-events__day,
.art-prismatic .art-events__grid,
.art-prismatic .art-events__item {
  position: relative;
  z-index: 2;
}

/* Pattern 1: Geometric (Complex geometric pattern in greyscale) */
.art-prismatic--geometric {
  --s: 200px;
  --c1: #d0d0d0;
  --c2: #e8e8e8;
  --c3: #a8a8a8;
  --c4: #c0c0c0;
  --c5: #f5f5f5;

  --_g: var(--c1) 25%, var(--c2) 0 50%, #0000 0;
  --_l1: var(--c5) 0 1px, #0000 0 calc(25% - 1px), var(--c5) 0 25%;
  --_l2: var(--c5) 0 1px, #0000 0 calc(50% - 1px), var(--c5) 0 50%;

  background:
    repeating-linear-gradient(45deg, var(--_l1)),
    repeating-linear-gradient(-45deg, var(--_l1)),
    repeating-linear-gradient(0deg, var(--_l2)),
    repeating-linear-gradient(90deg, var(--_l2)),
    conic-gradient(from 135deg at 25% 75%, var(--_g)),
    conic-gradient(from 225deg at 25% 25%, var(--_g)),
    conic-gradient(from 45deg at 75% 75%, var(--_g)),
    conic-gradient(from -45deg at 75% 25%, var(--_g)),
    repeating-conic-gradient(var(--c3) 0 45deg, var(--c4) 0 90deg);
  background-size: var(--s) var(--s);
}

/* Pattern 2: Checkerboard (Simple checkerboard in greyscale) */
.art-prismatic--checkerboard {
  --s: 100px;
  --c1: #e5e5e5;
  --c2: #b8b8b8;

  background:
    repeating-conic-gradient(var(--c1) 0 45deg, var(--c2) 0 90deg)
    0/var(--s) var(--s);
}

/* Pattern 3: Diamonds (Diamond/angular pattern in greyscale) */
.art-prismatic--diamonds {
  --s: 150px;
  --c1: #c8c8c8;
  --c2: #a0a0a0;
  --c3: #e0e0e0;
  --c4: #b5b5b5;

  background:
    conic-gradient(from 45deg at 75% 75%, var(--c3) 90deg, var(--c1) 0 180deg, #0000 0),
    conic-gradient(from -45deg at 25% 25%, var(--c3) 90deg, #0000 0),
    conic-gradient(from -45deg at 50% 100%, #0000 180deg, var(--c3) 0),
    conic-gradient(from -45deg, var(--c1) 90deg, var(--c2) 0 225deg, var(--c4) 0);
  background-size: var(--s) var(--s);
}

/* Pattern 4: Background Image */
.art-prismatic--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Responsive Design for Prismatic Sections */
@media (max-width: 1024px) {
  .art-prismatic {
    padding: 3rem 1.5rem;
    min-height: 350px;
  }

  .art-prismatic__title {
    font-size: 2.5rem;
  }

  .art-prismatic__subtitle {
    font-size: 1.1rem;
    padding: 0.4rem 0.85rem;
  }

  .art-prismatic__classes {
    font-size: 1rem;
    padding: 0.35rem 0.75rem;
  }

  /* Reduce pattern size on smaller screens */
  .art-prismatic--geometric {
    --s: 150px;
  }

  .art-prismatic--checkerboard {
    --s: 75px;
  }

  .art-prismatic--diamonds {
    --s: 120px;
  }
}

@media (max-width: 768px) {
  .art-prismatic {
    padding: 2.5rem 1rem;
    margin: 2rem 0;
    min-height: 300px;
  }

  .art-prismatic__title {
    font-size: 2rem;
  }

  .art-prismatic__subtitle {
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
  }

  .art-prismatic__classes {
    font-size: 0.95rem;
    padding: 0.35rem 0.7rem;
  }

  /* Further reduce pattern size on mobile */
  .art-prismatic--geometric {
    --s: 100px;
  }

  .art-prismatic--checkerboard {
    --s: 50px;
  }

  .art-prismatic--diamonds {
    --s: 80px;
  }

  /* Disable fixed background on mobile for better performance */
  .art-prismatic--image {
    background-attachment: scroll;
  }
}

@media (max-width: 520px) {
  .art-prismatic {
    padding: 2rem 1rem;
    min-height: 250px;
  }

  .art-prismatic__title {
    font-size: 1.75rem;
  }

  .art-prismatic__subtitle {
    font-size: 0.9rem;
    padding: 0.35rem 0.65rem;
  }

  .art-prismatic__classes {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ===== STANDALONE PATTERN CLASSES FOR DIVI SECTIONS ===== */
/* Apply these classes directly to Divi sections without using shortcodes */

/* Geometric Prism Pattern */
.prismatic-geometric {
  --s: 200px;
  --c1: #d0d0d0;
  --c2: #e8e8e8;
  --c3: #a8a8a8;
  --c4: #c0c0c0;
  --c5: #f5f5f5;

  --_g: var(--c1) 25%, var(--c2) 0 50%, #0000 0;
  --_l1: var(--c5) 0 1px, #0000 0 calc(25% - 1px), var(--c5) 0 25%;
  --_l2: var(--c5) 0 1px, #0000 0 calc(50% - 1px), var(--c5) 0 50%;

  background:
    repeating-linear-gradient(45deg, var(--_l1)),
    repeating-linear-gradient(-45deg, var(--_l1)),
    repeating-linear-gradient(0deg, var(--_l2)),
    repeating-linear-gradient(90deg, var(--_l2)),
    conic-gradient(from 135deg at 25% 75%, var(--_g)),
    conic-gradient(from 225deg at 25% 25%, var(--_g)),
    conic-gradient(from 45deg at 75% 75%, var(--_g)),
    conic-gradient(from -45deg at 75% 25%, var(--_g)),
    repeating-conic-gradient(var(--c3) 0 45deg, var(--c4) 0 90deg);
  background-size: var(--s) var(--s);
  position: relative;
}

/* Checkerboard Grid Pattern */
.prismatic-checkerboard {
  --s: 100px;
  --c1: #e5e5e5;
  --c2: #b8b8b8;

  background:
    repeating-conic-gradient(var(--c1) 0 45deg, var(--c2) 0 90deg)
    0/var(--s) var(--s);
  position: relative;
}

/* Diamond Facets Pattern */
.prismatic-diamonds {
  --s: 150px;
  --c1: #c8c8c8;
  --c2: #a0a0a0;
  --c3: #e0e0e0;
  --c4: #b5b5b5;

  background:
    conic-gradient(from 45deg at 75% 75%, var(--c3) 90deg, var(--c1) 0 180deg, #0000 0),
    conic-gradient(from -45deg at 25% 25%, var(--c3) 90deg, #0000 0),
    conic-gradient(from -45deg at 50% 100%, #0000 180deg, var(--c3) 0),
    conic-gradient(from -45deg, var(--c1) 90deg, var(--c2) 0 225deg, var(--c4) 0);
  background-size: var(--s) var(--s);
  position: relative;
}

/* 85% White Overlay - Apply this class along with a pattern class */
.prismatic-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
  pointer-events: none;
}

/* Prismatic Photo Overlay Variations */
/* No Overlay (0%) */
.art-prismatic--no-overlay::before {
  background: rgba(255, 255, 255, 0) !important;
}
.prismatic-overlay-0::before {
  background: rgba(255, 255, 255, 0) !important;
}

/* Light Overlay (25%) */
.art-prismatic--overlay-25::before {
  background: rgba(255, 255, 255, 0.25) !important;
}
.prismatic-overlay-25::before {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* Medium Overlay (50%) */
.art-prismatic--overlay-50::before {
  background: rgba(255, 255, 255, 0.50) !important;
}
.prismatic-overlay-50::before {
  background: rgba(255, 255, 255, 0.50) !important;
}

/* Heavy Overlay (70%) */
.art-prismatic--overlay-70::before {
  background: rgba(255, 255, 255, 0.70) !important;
}
.prismatic-overlay-70::before {
  background: rgba(255, 255, 255, 0.70) !important;
}

/* Ensure content is above overlay when using standalone classes */
.prismatic-overlay > * {
  position: relative;
  z-index: 1;
}

/* Responsive pattern sizes for standalone classes */
@media (max-width: 1024px) {
  .prismatic-geometric {
    --s: 150px;
  }

  .prismatic-checkerboard {
    --s: 75px;
  }

  .prismatic-diamonds {
    --s: 120px;
  }
}

@media (max-width: 768px) {
  .prismatic-geometric {
    --s: 100px;
  }

  .prismatic-checkerboard {
    --s: 50px;
  }

  .prismatic-diamonds {
    --s: 80px;
  }
}

/* ===== ART D'CORE GALA 2026 SHOWCASE ===== */
/* Prominent showcase section for Artlink's 13th Annual Art d'Core Gala */

.art-dcore-gala-2026 {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

/* Badge */
.art-dcore-gala-2026__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f7f7f7;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Icons */
.art-dcore-gala-2026__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Subtitle - applies to all layouts */
.art-dcore-gala-2026__subtitle {
  color: #B71468;
}

/* ===== HERO STYLE ===== */
.art-dcore-gala-2026--hero {
  padding: 4rem 2rem;
  text-align: center;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-dcore-gala-2026__hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 3rem;
  border-radius: 8px;
}

.art-dcore-gala-2026__hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 8px;
  z-index: 0;
}

.art-dcore-gala-2026__hero-content > * {
  position: relative;
  z-index: 1;
}

.art-dcore-gala-2026--hero .art-dcore-gala-2026__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.art-dcore-gala-2026--hero .art-dcore-gala-2026__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #B71468;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.art-dcore-gala-2026--hero .art-dcore-gala-2026__date,
.art-dcore-gala-2026--hero .art-dcore-gala-2026__time,
.art-dcore-gala-2026--hero .art-dcore-gala-2026__location {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.art-dcore-gala-2026--hero .art-dcore-gala-2026__description {
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.art-dcore-gala-2026--hero .art-dcore-gala-2026__badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.art-dcore-gala-2026__datetime {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.art-dcore-gala-2026__date,
.art-dcore-gala-2026__time {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

.art-dcore-gala-2026__location {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 2rem;
}

.art-dcore-gala-2026__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #444;
  margin: 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.art-dcore-gala-2026__cta {
  margin-top: 2rem;
}

.art-dcore-gala-2026__button {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: #fff;
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  border: 2px solid #000;
  transition: all 0.3s ease;
  box-shadow: none;
  letter-spacing: 0.5px;
}

.art-dcore-gala-2026__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #000;
  color: #fff;
}

.art-dcore-gala-2026__button--small {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* ===== CARD STYLE ===== */
.art-dcore-gala-2026--card {
  padding: 2.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
}

.art-dcore-gala-2026--card .art-dcore-gala-2026__title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.art-dcore-gala-2026--card .art-dcore-gala-2026__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.art-dcore-gala-2026__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.art-dcore-gala-2026__meta-item {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* ===== BANNER STYLE ===== */
.art-dcore-gala-2026--banner {
  padding: 1.5rem 2rem;
  background: #fff;
  border-left: 5px solid #0073aa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.art-dcore-gala-2026__banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.art-dcore-gala-2026__banner-left {
  flex: 1;
}

.art-dcore-gala-2026--banner .art-dcore-gala-2026__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.art-dcore-gala-2026--banner .art-dcore-gala-2026__date {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}

/* ===== SPLIT LAYOUTS (Image + Content) ===== */
.art-dcore-gala-2026--split-left,
.art-dcore-gala-2026--split-right {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.art-dcore-gala-2026__split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.art-dcore-gala-2026__split-container--reverse {
  direction: rtl;
}

.art-dcore-gala-2026__split-container--reverse > * {
  direction: ltr;
}

.art-dcore-gala-2026__image-column {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.art-dcore-gala-2026__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-dcore-gala-2026__content-column {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.art-dcore-gala-2026__info-list {
  margin: 1.5rem 0;
}

.art-dcore-gala-2026__info-item {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.art-dcore-gala-2026__info-item strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* ===== FEATURE LAYOUT (Image on top) ===== */
.art-dcore-gala-2026--feature {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 2rem auto;
}

.art-dcore-gala-2026__feature-container {
  display: flex;
  flex-direction: column;
}

.art-dcore-gala-2026__feature-image {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  height: 400px;
}

.art-dcore-gala-2026__feature-image .art-dcore-gala-2026__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-dcore-gala-2026__feature-content {
  padding: 3rem;
  text-align: center;
}

.art-dcore-gala-2026__feature-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.art-dcore-gala-2026__feature-meta .art-dcore-gala-2026__meta-item {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.art-dcore-gala-2026--feature .art-dcore-gala-2026__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.art-dcore-gala-2026--feature .art-dcore-gala-2026__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.art-dcore-gala-2026--feature .art-dcore-gala-2026__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #444;
  margin: 2rem 0;
  text-align: left;
}

/* ===== FULLWIDTH HERO (Edge-to-edge with background image) ===== */
.art-dcore-gala-2026--fullwidth {
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.art-dcore-gala-2026__fullwidth-container {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image-only mode (no text overlay) */
.art-dcore-gala-2026.art-dcore-gala-2026--fullwidth .art-dcore-gala-2026__fullwidth-container--image-only {
  min-height: 800px;
  background-color: #000;
}

.art-dcore-gala-2026.art-dcore-gala-2026--fullwidth .art-dcore-gala-2026__fullwidth-container--image-only .art-dcore-gala-2026__fullwidth-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
}

.art-dcore-gala-2026__fullwidth-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.art-dcore-gala-2026__fullwidth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.art-dcore-gala-2026__fullwidth-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 12px;
}

.art-dcore-gala-2026__badge--light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.art-dcore-gala-2026__title--large {
  font-size: 4rem;
  font-weight: 900;
  margin: 1rem 0;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.art-dcore-gala-2026__subtitle--light {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.art-dcore-gala-2026__fullwidth-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.art-dcore-gala-2026__meta-item--light {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.art-dcore-gala-2026__meta-item--light .art-dcore-gala-2026__icon {
  color: #fff;
  opacity: 0.9;
}

.art-dcore-gala-2026__description--light {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 2rem auto;
  max-width: 800px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.art-dcore-gala-2026__button--large {
  font-size: 22px;
  padding: 0.6rem 1rem;
}

.art-dcore-gala-2026__button--light {
  background: #fff;
  color: #000000;
  border: 2px solid #fff;
}

.art-dcore-gala-2026__button--light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .art-dcore-gala-2026--hero {
    padding: 3rem 1.5rem;
    min-height: 400px;
  }

  .art-dcore-gala-2026--hero .art-dcore-gala-2026__title {
    font-size: 2rem;
  }

  .art-dcore-gala-2026--hero .art-dcore-gala-2026__subtitle {
    font-size: 1.125rem;
  }

  .art-dcore-gala-2026__datetime {
    flex-direction: column;
    gap: 1rem;
  }

  .art-dcore-gala-2026__description {
    font-size: 1rem;
  }

  .art-dcore-gala-2026--card {
    padding: 2rem 1.5rem;
  }

  .art-dcore-gala-2026--card .art-dcore-gala-2026__title {
    font-size: 1.5rem;
  }

  .art-dcore-gala-2026__banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .art-dcore-gala-2026--banner .art-dcore-gala-2026__title {
    font-size: 1.25rem;
  }

  /* Split layouts stack on mobile */
  .art-dcore-gala-2026__split-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .art-dcore-gala-2026__split-container--reverse {
    direction: ltr;
  }

  .art-dcore-gala-2026__image-column {
    height: 300px;
  }

  .art-dcore-gala-2026__content-column {
    padding: 2rem 1.5rem;
  }

  .art-dcore-gala-2026--split-left .art-dcore-gala-2026__title,
  .art-dcore-gala-2026--split-right .art-dcore-gala-2026__title {
    font-size: 1.75rem;
  }

  /* Feature layout adjustments */
  .art-dcore-gala-2026__feature-image {
    height: 250px;
  }

  .art-dcore-gala-2026__feature-content {
    padding: 2rem 1.5rem;
  }

  .art-dcore-gala-2026--feature .art-dcore-gala-2026__title {
    font-size: 1.75rem;
  }

  .art-dcore-gala-2026__feature-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .art-dcore-gala-2026--feature .art-dcore-gala-2026__description {
    font-size: 1rem;
  }

  /* Fullwidth adjustments */
  .art-dcore-gala-2026__fullwidth-container {
    min-height: 500px;
  }

  .art-dcore-gala-2026__fullwidth-content {
    padding: 3rem 1.5rem;
  }

  .art-dcore-gala-2026__title--large {
    font-size: 2.5rem;
  }

  .art-dcore-gala-2026__subtitle--light {
    font-size: 1.125rem;
  }

  .art-dcore-gala-2026__fullwidth-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .art-dcore-gala-2026__meta-item--light {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }

  .art-dcore-gala-2026__description--light {
    font-size: 1.125rem;
  }

  .art-dcore-gala-2026__button--large {
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
  }
}

/* ===== COMPREHENSIVE Z-INDEX FIXES ===== */
/* Ensure all Artinerary sections and elements stay below the site header */

/* All main content sections should be at z-index 1 */
.art-events,
.art-locations,
.art-participant-profiles,
.art-events-container,
.art-locations-container,
.art-participant-profiles-container,
.art-slider,
.art-hero,
.art-month-cal,
.art-prismatic,
.art-dcore-gala-2026,
.art-home-events,
.art-home-locations {
  position: relative;
  z-index: 1 !important;
}

/* Content overlays and patterns at z-index 0-2 */
.art-prismatic::before,
.art-dcore-gala-2026__hero-overlay,
.art-dcore-gala-2026__fullwidth-overlay,
.prismatic-overlay::before {
  z-index: 0 !important;
}

.art-prismatic__content,
.art-dcore-gala-2026__hero-content > *,
.art-dcore-gala-2026__fullwidth-content,
.prismatic-overlay > * {
  z-index: 1 !important;
}

/* Card badges and small overlays */
.art-card__badge {
  z-index: 2 !important;
}

/* Navigation buttons for sliders */
.art-slider__btn,
.art-hero__btn {
  z-index: 5 !important;
}

/* Tooltips and sticky elements */
.art-cal-tooltip {
  z-index: 100 !important;
}

/* Lightbox - only goes above header when active */
.art-lightbox {
  z-index: 100000 !important;
}

.art-lightbox-close,
.art-lightbox-prev,
.art-lightbox-next {
  z-index: 100001 !important;
}

/* Ensure site header stays on top of all content (but below lightbox) */
/* Theme Builder Header */
.et-l--header,
header.et-l--header,
.et-l--header .et_builder_inner_content,
.et-l--header .et_pb_section,
.et-l--header .mainhead,
.mainhead,
.et_pb_section.mainhead,
.et_pb_sticky_module.mainhead,
.et-l--header .et_pb_row,
.et-l--header .et_pb_column,
/* Standard Divi Header */
#main-header,
#main-header.et-fixed-header,
.et-fixed-header,
#top-header,
#et-top-navigation {
  z-index: 99999 !important;
}

/* ===== SKELETON LOADER ===== */
/* Match the exact grid layout of .art-locations-explorer .art-locations--grid */
.art-skeleton-loader {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .art-skeleton-loader {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .art-skeleton-loader {
    grid-template-columns: 1fr;
  }
}

.art-skeleton-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.art-skeleton-card__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.art-skeleton-card__content {
  padding: 16px;
}

.art-skeleton-card__title {
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 12px;
}

.art-skeleton-card__text {
  height: 16px;
  width: 80%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ===== MODERN CALENDAR ===== */
.art-cal-modern {
  --cal-accent: #111;
  --cal-accent-light: rgba(0,0,0,.06);
  --cal-border: #e5e7eb;
  --cal-text: #111;
  --cal-text-muted: #6b7280;
  --cal-bg: #fff;
  --cal-cell-size: 80px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: var(--cal-bg);
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  box-sizing: border-box;
  overflow-x: auto;
}

/* Ensure calendar view doesn't overflow parent */
.art-events__calendar-view {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

/* Modern header */
.art-cal-modern__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.art-cal-modern__month {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cal-text);
}

.art-cal-modern__stats {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.art-cal-modern__count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cal-text);
}

.art-cal-modern__label {
  font-size: 1rem;
  color: var(--cal-text-muted);
  text-transform: lowercase;
}

/* Navigation */
.art-cal-modern__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-cal-modern__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cal-accent-light);
  border: none;
  color: var(--cal-text);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.art-cal-modern__nav-btn:hover {
  background: var(--cal-accent);
  color: #fff;
}

.art-cal-modern__today-btn {
  padding: 10px 20px;
  background: var(--cal-accent);
  color: #fff;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.art-cal-modern__today-btn:hover {
  background: #333;
  color: #fff;
}

/* Calendar grid */
.art-cal-modern__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.art-cal-modern__dow {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cal-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0 16px;
}

/* Day cells */
.art-cal-modern__cell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  background: #fff;
  border: 1px solid var(--cal-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
  font-family: inherit;
  min-height: 140px;
  text-align: left;
  min-width: 0;
  overflow: hidden;
  word-break: break-word;
}

.art-cal-modern__cell--empty {
  cursor: default;
  background: #fafafa;
  border-color: transparent;
}

.art-cal-modern__cell:not(.art-cal-modern__cell--empty):hover {
  border-color: var(--cal-accent);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.art-cal-modern__cell--today {
  background: #f8f8f8;
  border-color: var(--cal-accent);
  border-width: 2px;
}

.art-cal-modern__cell--today:hover {
  background: #f3f3f3;
}

.art-cal-modern__cell--selected,
.art-cal-modern__cell--selected:hover {
  border-color: var(--cal-accent);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  background: #f5f5f5;
}

/* Cell header with day number and count */
.art-cal-modern__cell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

/* Day number */
.art-cal-modern__daynum {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cal-text);
  line-height: 1;
}

.art-cal-modern__cell--today .art-cal-modern__daynum {
  color: var(--cal-accent);
}

/* Event count badge */
.art-cal-modern__event-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--cal-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 10px;
}

.art-cal-modern__cell--today .art-cal-modern__event-count {
  background: var(--cal-accent);
}

/* Event list in cell */
.art-cal-modern__event-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  overflow: hidden;
}

.art-cal-modern__event-title {
  font-size: 0.7rem;
  line-height: 1.3;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px 4px;
  background: #f0f0f0;
  border-radius: 3px;
}

.art-cal-modern__cell:hover .art-cal-modern__event-title {
  background: #e8e8e8;
}

.art-cal-modern__event-more {
  font-size: 0.65rem;
  color: var(--cal-text-muted);
  padding: 2px 4px;
}

/* Legacy indicator dot - hide when using new layout */
.art-cal-modern__indicator {
  display: none;
}

/* Hint text */
.art-cal-modern__hint {
  text-align: center;
  font-size: 1rem;
  color: var(--cal-text-muted);
  margin: 24px 0 0;
  padding: 0;
}

/* ===== SLIDE-OUT DRAWER ===== */
.art-cal-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  pointer-events: none;
  visibility: hidden;
}

.art-cal-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

/* Overlay */
.art-cal-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.art-cal-drawer.is-open .art-cal-drawer__overlay {
  opacity: 1;
}

/* Panel */
.art-cal-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
  overflow: hidden;
}

.art-cal-drawer.is-open .art-cal-drawer__panel {
  transform: translateX(0);
}

/* Drawer header */
.art-cal-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.art-cal-drawer__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
}

.art-cal-drawer__close {
  width: 40px;
  height: 40px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #374151;
}

.art-cal-drawer__close:hover {
  background: #111;
  color: #fff;
}

/* Drawer content */
.art-cal-drawer__content {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
}

/* Loading state */
.art-cal-drawer__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: #6b7280;
}

.art-cal-drawer__loading p {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.art-cal-drawer__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #111;
  border-radius: 50%;
  animation: drawer-spin 0.8s linear infinite;
}

@keyframes drawer-spin {
  to { transform: rotate(360deg); }
}

/* Empty state */
.art-cal-drawer__empty {
  text-align: center;
  padding: 48px 24px;
  color: #6b7280;
}

.art-cal-drawer__empty p {
  margin: 0;
  font-size: 1rem;
}

/* Events container */
.art-cal-drawer__events {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Event card */
.art-cal-drawer__event {
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.art-cal-drawer__event:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.art-cal-drawer__event-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.art-cal-drawer__event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-cal-drawer__event-content {
  padding: 16px;
}

.art-cal-drawer__event-time {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.art-cal-drawer__event-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

.art-cal-drawer__event-title a {
  color: inherit;
  text-decoration: none;
}

.art-cal-drawer__event-title a:hover {
  text-decoration: underline;
}

.art-cal-drawer__event-desc {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.art-cal-drawer__event-link {
  display: inline-block;
  padding: 8px 16px;
  background: #111;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Oswald', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.art-cal-drawer__event-link:hover {
  background: #333;
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .art-cal-modern {
    padding: 16px;
    border-radius: 12px;
    max-width: 100%;
  }

  .art-cal-modern__header {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
  }

  .art-cal-modern__month {
    font-size: 1.25rem;
  }

  .art-cal-modern__grid {
    gap: 4px;
  }

  .art-cal-modern__cell {
    min-height: 60px;
    padding: 4px;
  }

  .art-cal-modern__daynum {
    font-size: 0.9rem;
  }

  .art-cal-modern__event-count {
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }

  .art-cal-modern__event-list {
    display: none;
  }

  .art-cal-modern__hint {
    font-size: 0.8rem;
    margin-top: 16px;
  }

  .art-cal-drawer__panel {
    max-width: 100%;
  }

  .art-cal-drawer__header {
    padding: 16px;
  }

  .art-cal-drawer__title {
    font-size: 1.1rem;
  }

  .art-cal-drawer__content {
    padding: 16px;
  }

  .art-cal-drawer__event-content {
    padding: 12px;
  }
}

/* ===================================================================
   EVENT DETAIL PAGE - Clean, Modern Layout
   =================================================================== */

.art-event-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  font-family: system-ui, -apple-system, sans-serif;
}

.art-event-detail--fast {
  background: transparent;
}

/* Navigation */
.art-event-detail__nav {
  padding: 20px 0;
  margin-bottom: 10px;
}

.art-event-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.art-event-detail__back:hover {
  color: #111;
  background: #f9fafb;
  transform: translateX(-4px);
}

.art-event-detail__back svg {
  flex-shrink: 0;
}

/* Full-width map */
.art-event-detail__map {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.art-event-detail__map iframe {
  display: block;
}

/* Two-column body layout */
.art-event-detail__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Main content column */
.art-event-detail__main {
  min-width: 0;
}

.art-event-detail__header {
  margin-bottom: 24px;
}

.art-event-detail__title {
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #111;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* Category badges */
.art-event-detail__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.art-event-detail__category-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Description */
.art-event-detail__description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 32px;
}

.art-event-detail__description p {
  margin: 0 0 1em;
}

.art-event-detail__description p:last-child {
  margin-bottom: 0;
}

/* Section titles */
.art-event-detail__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.art-event-detail__section-title svg {
  color: #6b7280;
}

/* Dates list */
.art-event-detail__dates {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.art-event-detail__dates-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.art-event-detail__date-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.art-event-detail__date-item:hover {
  background: #f3f4f6;
}

.art-event-detail__date-day {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.art-event-detail__date-weekday {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.art-event-detail__date-full {
  font-size: 1rem;
  color: #6b7280;
}

.art-event-detail__date-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.art-event-detail__date-time svg {
  color: #9ca3af;
}

/* No dates message */
.art-event-detail__no-dates {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: #f9fafb;
  border-radius: 16px;
  color: #6b7280;
}

.art-event-detail__no-dates svg {
  margin-bottom: 12px;
  opacity: 0.5;
}

.art-event-detail__no-dates p {
  margin: 0;
  font-size: 1rem;
}

/* Sidebar */
.art-event-detail__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Event image */
.art-event-detail__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.art-event-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Action buttons */
.art-event-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.art-event-detail__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 2px solid #111;
  background: #fff;
  color: #111;
}

.art-event-detail__btn:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.art-event-detail__btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.art-event-detail__btn--primary:hover {
  background: #333;
  color: #fff;
}

.art-event-detail__btn svg {
  flex-shrink: 0;
}

/* Info blocks */
.art-event-detail__info-block {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.art-event-detail__info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.art-event-detail__info-title svg {
  color: #9ca3af;
}

.art-event-detail__info-content p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

.art-event-detail__info-content p:last-child {
  margin-bottom: 0;
}

.art-event-detail__location-name {
  font-weight: 600;
  color: #111 !important;
}

.art-event-detail__location-address {
  color: #6b7280 !important;
  font-size: 0.9rem !important;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .art-event-detail__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .art-event-detail__sidebar {
    position: static;
    order: -1;
  }

  .art-event-detail__title {
    font-size: 2rem;
  }

  .art-event-detail__map {
    height: 280px;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .art-event-detail {
    padding: 0 16px 30px;
  }

  .art-event-detail__title {
    font-size: 1.75rem;
  }

  .art-event-detail__date-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .art-event-detail__date-time {
    width: 100%;
    justify-content: center;
  }

  .art-event-detail__map {
    height: 220px;
  }

  .art-event-detail__dates {
    padding: 16px;
  }
}

/* ===================================================================
   LOCATION DETAIL PAGE - Clean, Modern Layout
   =================================================================== */

.art-location-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  font-family: system-ui, -apple-system, sans-serif;
}

.art-location-detail--fast {
  background: transparent;
}

/* Navigation */
.art-location-detail__nav {
  padding: 20px 0;
  margin-bottom: 10px;
}

.art-location-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.art-location-detail__back:hover {
  color: #111;
  background: #f9fafb;
  transform: translateX(-4px);
}

.art-location-detail__back svg {
  flex-shrink: 0;
}

/* Full-width map */
.art-location-detail__map {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.art-location-detail__map iframe {
  display: block;
}

/* Two-column body layout */
.art-location-detail__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Main content column */
.art-location-detail__main {
  min-width: 0;
}

.art-location-detail__header {
  margin-bottom: 24px;
}

.art-location-detail__title {
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #111;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.art-location-detail__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.art-location-detail__address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #9ca3af;
}

.art-location-detail__region {
  margin-top: 8px;
}

.art-location-detail__region-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Description */
.art-location-detail__description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 32px;
}

.art-location-detail__description p {
  margin: 0 0 1em;
}

.art-location-detail__description p:last-child {
  margin-bottom: 0;
}

/* Section titles */
.art-location-detail__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Events grid */
.art-location-detail__events {
  margin-bottom: 32px;
}

.art-location-detail__events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.art-location-detail__event-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.art-location-detail__event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.art-location-detail__event-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f4f6;
}

.art-location-detail__event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-location-detail__event-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.art-location-detail__event-content {
  padding: 14px;
}

.art-location-detail__event-title {
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Sidebar */
.art-location-detail__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Location image */
.art-location-detail__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.art-location-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Action buttons */
.art-location-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.art-location-detail__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 2px solid #111;
  background: #fff;
  color: #111;
}

.art-location-detail__btn:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.art-location-detail__btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.art-location-detail__btn--primary:hover {
  background: #333;
  color: #fff;
}

.art-location-detail__btn svg {
  flex-shrink: 0;
}

/* Info blocks */
.art-location-detail__info-block {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.art-location-detail__info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.art-location-detail__info-title svg {
  color: #9ca3af;
}

.art-location-detail__info-content {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

/* Hours block */
.art-location-detail__hours-block .art-location-detail__info-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.art-location-detail__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f3f4f6;
}

.art-location-detail__hours-row:last-child {
  border-bottom: none;
}

.art-location-detail__hours-day {
  font-weight: 600;
  color: #374151;
}

.art-location-detail__hours-time {
  color: #6b7280;
}

/* Contact info */
.art-location-detail__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.art-location-detail__contact-item svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.art-location-detail__contact-item a {
  color: #374151;
  text-decoration: none;
}

.art-location-detail__contact-item a:hover {
  color: #111;
  text-decoration: underline;
}

/* Gallery */
.art-location-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}

.art-location-detail__gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.art-location-detail__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.art-location-detail__gallery-item:hover img {
  transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .art-location-detail__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .art-location-detail__sidebar {
    position: static;
    order: -1;
  }

  .art-location-detail__title {
    font-size: 2rem;
  }

  .art-location-detail__map {
    height: 280px;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .art-location-detail {
    padding: 0 16px 30px;
  }

  .art-location-detail__title {
    font-size: 1.75rem;
  }

  .art-location-detail__map {
    height: 220px;
  }

  .art-location-detail__events-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .art-location-detail__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
