 

 
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
}

.site-logo img {
  height: 50px;
  width: auto;
  max-width: none;
  filter: brightness(0);
}

@media (max-width: 768px) {
  .site-logo img {
    height: 35px;
  }
}

 
.music-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--navy-primary);
  background: transparent;
  color: var(--navy-primary);
  padding: 0;
}
.music-toggle:hover {
  background: var(--navy-primary);
  color: var(--white);
}
.music-toggle__icon {
  fill: currentColor;
  display: none;
}
.music-toggle[aria-pressed="true"] .music-toggle__icon--stop {
  display: block;
}
.music-toggle[aria-pressed="false"] .music-toggle__icon--play {
  display: block;
}

 
.side-tabs {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--side-tab-width);
  display: flex;
  flex-direction: column;
  border-left: 1px solid #E4E0DC;
  background: var(--white);
  z-index: 500;  
}

.side-tabs__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid #E4E0DC;
  color: var(--navy-primary);
}

.side-tabs__tab:hover {
  background: var(--navy-primary);
  color: var(--white);
}

.side-tabs__tab--tickets {
  background: var(--tan);
  color: var(--white);
}

@media (max-width: 768px) {
  .side-tabs {
    display: none;
  }
}

 
.lang-sel {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.lang-sel__item {
  padding: 0.15rem 0.45rem;
  font-family: 'Mark W04 Heavy', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: var(--brown-primary);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lang-sel__item + .lang-sel__item {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.lang-sel__item:hover,
.lang-sel__item:focus-visible {
  color: var(--navy-primary);
}

.lang-sel__item.is-active {
  color: var(--navy-primary);
  pointer-events: none;
}

 
.home-events__slide {
  padding-bottom: var(--space-2);
  transition: transform 0.8s ease;
}

.home-events__slide:hover {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  .home-events__slide { transition: none; }
  .home-events__slide:hover { transform: none; }
}

.home-events__title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
}

.home-events__title a {
  color: var(--black);
}

.home-events__title a:hover {
  color: var(--link-color);
}

.home-events__meta {
  color: var(--brown-primary);
  font-size: 1rem;
}

.home-events__intro {
  font-weight: 700;
  line-height: 1.5;
  max-width: 46ch;
}

.home-events__day {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.home-events__marker {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-block;
}

.home-events__time {
  color: var(--brown-primary);
}

.home-events__media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

 
.home-events__poster {
  display: block;
  overflow: hidden;
}

.home-events__poster img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.home-events__poster:hover img {
  transform: scale(1.03);
}

 
.home-events__video iframe {
  border: 0;
}

 
.home-events__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-2);
}

.home-events__nav {
  display: flex;
  gap: 0.4rem;
}

.home-events__nav .owl-prev,
.home-events__nav .owl-next {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.home-events__nav .owl-prev svg,
.home-events__nav .owl-next svg {
  width: 18px;
  height: 18px;
}

.home-events__nav .owl-prev:hover,
.home-events__nav .owl-next:hover {
  background: var(--black);
  color: var(--white);
}

.home-events__counter {
  font-size: 0.95rem;
  color: var(--brown-primary);
  letter-spacing: 0.04em;
  margin-right: auto;
}

.home-events__counter b {
  color: var(--black);
}

 
.home-events__dots {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.home-events__dots .owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.home-events__dots .owl-dot.active {
  background: var(--black);
}

 
.home-events__slider:not(.owl-loaded) .home-events__slide:not(:first-child) {
  display: none;
}

@media (max-width: 991.98px) {
  .home-events__media img {
    max-height: 320px;
  }

  .home-events__dots {
    justify-content: center;
  }
}

 
.hero__title {
  border-top: 3px solid var(--navy-primary);
  padding-top: var(--space-2);
}

.hero__text {
  border-top: 1px solid #cfc8c0;
  padding-top: var(--space-2);
  margin-top: var(--space-2);
  color: var(--brown-primary);
  max-width: 40ch;
}

.hero__visual {
  background: var(--tan);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.hero__visual-shapes {
  position: absolute;
  inset: 0;
}

.hero__visual-shapes span {
  position: absolute;
  display: block;
}

.shape-circle {
  border-radius: 50%;
}

 
.calendar-widget {
  position: relative;

  padding: var(--space-4);
}

@media (max-width: 768px) {
  .calendar-widget {
    padding: 0;
  }
}

.calendar-widget__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.calendar-widget__nav button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  color: var(--navy-primary);
  line-height: 1;
}

.calendar-widget__nav button:hover {
  color: var(--blue-accent);
}

.calendar-widget__nav-icon {
  width: 28px;
  height: 18px;
  display: block;
}

.calendar-widget__status {
  font-size: 0.85rem;
  color: var(--brown-primary);
  text-align: center;
  padding: var(--space-3) 0;
  margin: 0;
}

.calendar-widget__label {
  flex: 1;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
}

 
.calendar-widget__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  margin-left: 6px;
  vertical-align: super;
  background: var(--blue-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.calendar-widget__count[hidden] { display: none; }

.calendar-widget__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
}

.calendar-widget__grid .day-label {
  font-weight: 700;
  color: var(--brown-primary);
  padding-bottom: 4px;
}

.calendar-widget__grid .day {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
}
.event_title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-family: 'Mark W04 Heavy', sans-serif;
}
.event_sub_title {
  color: var(--brown-primary);
}

.event_card {
  border: none;
  transition: transform 0.8s ease;
}
.event_card:hover {
  transform: translateY(-5px);
}

 

.line-bold {
  font-weight: 700;
  border-bottom: 8px solid var(--black);
}
 
.post-content p:empty {
  min-height: 1em;
}
 
.post-content a {
  color: var(--link-color);
}
.post-content a:hover {
  color: var(--link-color);
  text-decoration: underline;
}
 
.line-bold--events-head {
  width: 40%;
}
@media (max-width: 991.98px) {
  .line-bold--events-head {
    width: 100%;
  }
}
 
.line-bold--center {
  margin-left: auto;
  margin-right: auto;
}
.line-bold--end {
  margin-left: auto;
}
.line-soft {
  border-bottom: 2px solid var(--black);
}
 
.section-nav__parent {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
.section-nav__parent a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}
.section-nav__parent a:hover { color: var(--blue-accent); }

.section-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 0.35rem 1.25rem;
  max-width: 60%;
  margin-left: auto;
}
.section-nav__link {
  position: relative;
  font-size: 1rem;
  color: var(--navy-primary);
  text-decoration: none;
  padding-bottom: 3px;
  white-space: nowrap;
}
 
.section-nav__link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #A6A6A6;
  bottom: 0;
  left: 0;
  transition: width 0.4s;
}
a.section-nav__link:hover::before { width: 100%; }
.section-nav__link--active::before {
  width: 100%;
  background-color: var(--navy-primary);
}

 
.post-page__eyebrow {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-primary);
  text-decoration: none;
}
.post-page__eyebrow:hover { color: var(--blue-accent); }
.post-page__back {
  color: #000;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1;
}
.post-page__title {
  font-weight: 800;
  line-height: 1.1;
}
.post-page__subhead { font-weight: 800; }
.post-page__intro { font-weight: 500; }

 
.post-image img.img-circle {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

 
.file-year-group { margin-bottom: 1rem; }
.file-year-group__title {
  display: inline-block;
  margin: 1.25rem 0 0.5rem;
  padding-bottom: 0.3rem;
  color: var(--navy-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--tan);
}

 
.cat-year-nav {
  position: sticky;
  top: 0;  
  z-index: 1010;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
  padding: 0.6rem 0;
  margin: 0 0 1.25rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}
 
.cat-year-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.cat-year-nav__link:not(.is-active):hover {
  background: transparent;
  border-color: var(--tan);
  color: var(--tan);
}
.cat-year-nav__link.is-active {
  background: var(--tan);
  border-color: var(--tan);
  color: #fff;
  font-weight: 700;
}
.cat-year-nav__count { display: none; }
.cat-year-nav__link.is-active .cat-year-nav__count { opacity: 0.9; }

.cat-year-head {
  scroll-margin-top: 140px;
  margin: 0.5rem 0 1rem;
}
.cat-year-head__title {
  display: inline-block;
  margin: 0;
  padding-bottom: 0.35rem;
  color: var(--navy-primary);
  font-weight: 700;
  border-bottom: 3px solid var(--blue-accent);
}

 
.cat-card {
  margin-bottom: 1.5rem;
  animation: photoGalleryIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.cat-card__inner {
  background: #fff;
  padding: 0.3rem;
  height: 100%;
  transition: transform 0.25s ease;
}
.cat-card__inner:hover {
  transform: translateY(-2px);
}

.cat-card__title {
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.35rem;
}
.cat-card__title a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cat-card__title a:hover { color: var(--blue-accent); }
.cat-card__clip {
  vertical-align: -1px;
  margin-left: 0.25rem;
  color: #6c757d;
}

.cat-card__meta {
  font-size: 0.8125rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.cat-card__meta a { color: #6c757d; }
.cat-card__meta a:hover { color: var(--blue-accent); }

.cat-card__intro { margin: 0.25rem 0 0.75rem; }

.cat-card__more {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--navy-primary);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cat-card__more:hover {
  color: var(--blue-accent);
  border-color: var(--blue-accent);
}
.cat-card__more .cat-card__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.cat-card__more:hover .cat-card__arrow { transform: translateX(4px); }

 
.cat-card__img {
  display: block;
  overflow: hidden;
  margin-bottom: 1rem;
}
.cat-card__img img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat-card__img:hover img { transform: scale(1.05); }
@media (min-width: 768px) {
   
  .cat-card__img--w { width: var(--img-w, 40%); float: left; margin: 0.25rem 1rem 0.5rem 0; }
  .cat-card__img--center { float: none; margin-left: auto; margin-right: auto; }
   
  .img-w { width: var(--img-w, 40%) !important; }
}
 
.cat-card__img--cover img { object-fit: cover; }
 
.cat-card__img--circle img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  height: auto !important;
}
.cat-card__img--circle:hover img { transform: none; }

 
.cat-card--simple { margin-bottom: 0; }
.cat-card__row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.8rem 0.25rem;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.cat-card__row:hover { background-color: #f7f7f7; }
.cat-card__row-date {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: #6c757d;
  min-width: 5.2em;
}
.cat-card__row-title {
  font-weight: 700;
  color: var(--navy-primary);
  transition: color 0.2s ease;
}
.cat-card__row:hover .cat-card__row-title { color: var(--blue-accent); }
.cat-card__row-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--navy-primary);
  transition: transform 0.25s ease;
}
.cat-card__row:hover .cat-card__row-arrow { transform: translateX(4px); }
.cat-card__row-intro {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0.35rem 0 0;
}

 
.cat-card__bg {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.cat-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat-card__bg:hover img { transform: scale(1.05); }
.cat-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(16, 26, 35, 0) 30%, rgba(16, 26, 35, 0.85) 100%);
}
.cat-card__bg-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem;
}
.cat-card__bg-date {
  display: inline-block;
  background: var(--navy-primary);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.5rem;
}
.cat-card__bg-title { margin: 0; color: #fff; transition: color 0.2s ease; }
.cat-card__bg:hover .cat-card__bg-title { color: #cfe0ea; }
.cat-card__bg-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin: 0.4rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .cat-card { animation: none; }
  .cat-card__img img,
  .cat-card__bg img { transition: none; }
}

 
.photo-gallery__item {
  animation: photoGalleryIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
   
}

.photo-gallery__link {
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.photo-gallery__link img {
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.5s ease;
}
.photo-gallery__link:hover {
  border-color: #cfcfcf;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.14);
}
.photo-gallery__link:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.photo-gallery__carousel {
  animation: photoGalleryIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes photoGalleryIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-gallery__item,
  .photo-gallery__carousel { animation: none; }
  .photo-gallery__link img { transition: none; }
}

 
.file-attach {
  border: 1px solid #e9e9e9;
  background: #fff;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: fileAttachIn 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
 
.file-attach + .file-attach { animation-delay: 0.08s; }
.file-attach + .file-attach + .file-attach { animation-delay: 0.16s; }
.file-attach + .file-attach + .file-attach + .file-attach { animation-delay: 0.24s; }

.file-attach:hover {
  transform: translateY(-2px);
  border-color: #cfcfcf;
}

.file-attach__icon img {
  width: 46px;
  height: 46px;
  display: block;
  transition: transform 0.25s ease;
}
.file-attach:hover .file-attach__icon img {
  transform: scale(1.06);
}

.file-attach__info {
  min-width: 0;
  margin: 0 1rem;
}
.file-attach__name {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy-primary);
  text-decoration: none;
  overflow-wrap: break-word;
  transition: color 0.2s ease;
}
.file-attach__name:hover { color: var(--blue-accent); }
.file-attach__meta {
  font-size: 0.8125rem;
  color: #6c757d;
}

.file-attach__btn { white-space: nowrap; }
.file-attach__btn svg { vertical-align: -2px; }

.file-attach__viewer { margin-top: 1rem; }
.file-attach__viewer iframe,
.file-attach__viewer object {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
}

#filePreviewModal .modal-body iframe,
#filePreviewModal .modal-body object {
  display: block;
  width: 100%;
  height: 75vh;
  border: 0;
}

@keyframes fileAttachIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 575.98px) {
  .file-attach__viewer iframe,
  .file-attach__viewer object { height: 480px; }
}
@media (prefers-reduced-motion: reduce) {
  .file-attach { animation: none; }
}

 
hr.line-soft,
hr.line-medium,
hr.line-bold {
  border: 0;
  opacity: 1;
}
hr.line-soft   { border-top: 2px solid var(--black); }
hr.line-medium { border-top: 4px solid var(--black); }
hr.line-bold   { border-top: 8px solid var(--black); }
.card-footer{
  border:0;
}

.day--own,
.day--extern,
.day--co,
.day--expo {
  cursor: pointer;
}

.day--muted {
  color: #b9b3ac;
}

.day--own {
  background: var(--tan);
  color: var(--brown-dark);
}

.day--extern {
  background: var(--blue-accent);
  color: var(--white);
}

.day--co {
  background: var(--navy-primary);
  color: var(--white);
}

.day--expo {
  background: var(--expo);
  color: var(--white);
}

.day--own:hover,
.day--own:focus-visible,
.day--co:hover,
.day--co:focus-visible,
.day--expo:hover,
.day--expo:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 1px;
}

.day--extern:hover,
.day--extern:focus-visible {
  outline: 2px solid var(--navy-primary);
  outline-offset: 1px;
}

.calendar-widget__legend {
  margin-top: var(--space-2);
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--brown-primary);
}

.calendar-widget__legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

 
.calendar-popup {
   
  position: absolute;
  width: 450px;
  background: var(--white);
  border: 1px solid #E4E0DC;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  max-height: 450px;
  overflow-y: auto;
  z-index: 600;
  
}

.calendar-popup__item {
  display: flex;
  flex-shrink: 0;
  padding: var(--space-2);
}

.calendar-popup__item + .calendar-popup__item {
  border-top: 1px solid #E4E0DC;
}

.calendar-popup__thumb {
  width: 180px;
  height: 100px;
  flex-shrink: 0;
}

.calendar-popup__body {
  padding: 20px;
  min-width: 0;
}

.calendar-popup__title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  line-height: 1.25;
  color: var(--navy-primary);
}

.calendar-popup__title:hover {
  color: var(--blue-accent);
  text-decoration: underline;
}

.calendar-popup__meta {
  font-size: 0.78rem;
  color: var(--brown-primary);
}

@media (max-width: 900px) {
  .calendar-popup {
    left: 0 !important;
    right: 0;
    top: 100% !important;
    margin-top: var(--space-1);
    width: auto !important;
  }
}

 
.event-card__thumb {
  background: var(--navy-secondary);
  color: var(--tan);
  font-size: 0.75rem;
  text-align: center;
}

.news-card__thumb {
  aspect-ratio: 1 / 1;
}

 
.hero__visual,
.event-card__thumb,
.news-card__thumb {
  overflow: hidden;
}

.hero__visual img,
.event-card__thumb img,
.news-card__thumb img {
  transition: transform 0.4s ease;
}

.hero__visual:hover img,
.event-card__thumb:hover img,
.news-card__thumb:hover img {
  transform: scale(1.08);
}

.news-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-accent);
}

 
.hp-section__title {
  font-family: var(--font-headings);
  font-weight: 700;
}

.hp-page-content img {
  max-width: 100%;
  height: auto;
}

 
.hp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hp-card__media {
  display: block;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 3 / 2;
}

.hp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hp-card__media:hover img {
  transform: scale(1.06);
}

.hp-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.hp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  font-size: 0.8rem;
  color: var(--brown-primary);
  margin-bottom: 0.4rem;
}

.hp-card__meta a {
  color: var(--brown-primary);
  text-decoration: none;
}

.hp-card__meta a:hover {
  color: var(--link-color);
}

.hp-card__title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
   
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-card__title a {
  color: var(--black);
  text-decoration: none;
}

.hp-card__title a:hover {
  color: var(--link-color);
}

.hp-card__intro {
  color: var(--brown-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
   
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

 
.hp-card__more {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.85rem;
}

.hp-card--center {
  text-align: center;
}

.hp-card--center .hp-card__meta {
  justify-content: center;
}

.hp-card--center .hp-card__more {
  align-self: center;
}

 
.hp-poster {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 340px;
  height: 100%;
  text-decoration: none;
}

.hp-poster--plain {
  background: var(--navy-primary);
}

.hp-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hp-poster:hover img {
  transform: scale(1.05);
}

.hp-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);
}

.hp-poster__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.5rem;
  color: var(--white);
}

.hp-poster__date {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.hp-poster__title {
  display: block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-top: 0.25rem;
}

.hp-poster__intro {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

 
.hp-list__item {
  display: block;
  height: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--black);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hp-list__item:hover {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
  color: var(--white);
}

.hp-list__title {
  font-weight: 700;
}

.hp-list__date {
  margin-right: 0.5rem;
  color: var(--brown-primary);
  font-size: 0.8rem;
}

.hp-list__item:hover .hp-list__date {
  color: rgba(255, 255, 255, 0.8);
}

.hp-list__intro {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--brown-primary);
}

.hp-list__item:hover .hp-list__intro {
  color: rgba(255, 255, 255, 0.85);
}

 
.hp-mbox {
  display: block;
  height: 100%;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--black);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-mbox:hover {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
  color: var(--white);
}

.hp-mbox--hoverup:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hp-mbox--center {
  text-align: center;
}

.hp-mbox__icon {
  display: block;
  margin-bottom: 1rem;
}

.hp-mbox__icon img {
  max-height: 72px;
  width: auto;
}

.hp-mbox__title {
  display: block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hp-mbox__title--sm { font-size: 1.05rem; }
.hp-mbox__title--md { font-size: 1.3rem; }
.hp-mbox__title--lg { font-size: 1.5rem; }

.hp-mbox__desc {
  display: block;
  color: var(--brown-primary);
  font-size: 0.9rem;
}

.hp-mbox:hover .hp-mbox__desc {
  color: rgba(255, 255, 255, 0.85);
}

.hp-mbox__more {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--link-color);
}

.hp-mbox:hover .hp-mbox__more {
  color: var(--white);
}

 
.hp-carousel .owl-nav,
.hp-nav {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
}

.hp-carousel .owl-nav .owl-prev,
.hp-carousel .owl-nav .owl-next,
.hp-nav .owl-prev,
.hp-nav .owl-next {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black) !important;
  background: transparent !important;
  color: var(--black) !important;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 0;
}

.hp-carousel .owl-nav .owl-prev:hover,
.hp-carousel .owl-nav .owl-next:hover,
.hp-nav .owl-prev:hover,
.hp-nav .owl-next:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}

.hp-carousel .owl-nav .owl-prev.disabled,
.hp-carousel .owl-nav .owl-next.disabled,
.hp-nav .owl-prev.disabled,
.hp-nav .owl-next.disabled {
  opacity: 0.35;
}

.hp-carousel .owl-dots,
.hp-dots {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

 
.hp-carousel .owl-dot,
.hp-dots .owl-dot {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.hp-carousel .owl-dot span,
.hp-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: transparent;
}

.hp-carousel .owl-dot.active span,
.hp-dots .owl-dot.active span {
  background: var(--black);
}

 
.hp-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hp-section__head .hp-section__title { margin-bottom: 0; }
.hp-section__head-spacer { margin-right: auto; }

.hp-section__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.hp-section__controls .hp-nav,
.hp-section__controls .hp-dots { margin-top: 0; }

@media (max-width: 991.98px) {
  .hp-section__controls {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

 
.hp-carousel.owl-loaded {
  display: flex;
  flex-direction: column;
}

.hp-carousel .owl-stage-outer { order: 2; }
.hp-carousel .owl-nav  { order: 3; margin-top: 1rem; margin-bottom: 0; }
.hp-carousel .owl-dots { order: 4; margin-top: 1rem; margin-bottom: 0; justify-content: flex-end; }
.hp-carousel--dots-bottom .owl-dots { order: 5; }

 
.hp-carousel--arrows-mid { position: relative; }

.hp-carousel--arrows-mid .owl-nav {
  order: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.hp-carousel--arrows-mid .owl-nav button.owl-prev,
.hp-carousel--arrows-mid .owl-nav button.owl-next {
  pointer-events: auto;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.92) !important;
}

 
 
@media (prefers-reduced-motion: no-preference) {
  @keyframes hpRevealDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

   
  .hp-carousel .owl-item.active .hp-card__media,
  .hp-carousel .owl-item.active .hp-card__meta,
  .hp-carousel .owl-item.active .hp-card__title,
  .hp-carousel .owl-item.active .hp-card__intro,
  .hp-carousel .owl-item.active .hp-card__more {
    animation: hpRevealDown 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .hp-carousel .owl-item.active .hp-card__media { animation-delay: 0.05s; }
  .hp-carousel .owl-item.active .hp-card__meta  { animation-delay: 0.16s; }
  .hp-carousel .owl-item.active .hp-card__title { animation-delay: 0.26s; }
  .hp-carousel .owl-item.active .hp-card__intro { animation-delay: 0.36s; }
  .hp-carousel .owl-item.active .hp-card__more  { animation-delay: 0.46s; }

   
  .home-events__slider .owl-item.active .home-events__title,
  .home-events__slider .owl-item.active .home-events__meta,
  .home-events__slider .owl-item.active .home-events__intro,
  .home-events__slider .owl-item.active .home-events__date,
  .home-events__slider .owl-item.active .home-events__actions {
    animation: hpRevealDown 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .home-events__slider .owl-item.active .home-events__title   { animation-delay: 0.10s; }
  .home-events__slider .owl-item.active .home-events__meta    { animation-delay: 0.20s; }
  .home-events__slider .owl-item.active .home-events__intro   { animation-delay: 0.30s; }
  .home-events__slider .owl-item.active .home-events__date    { animation-delay: 0.40s; }
  .home-events__slider .owl-item.active .home-events__actions { animation-delay: 0.50s; }
}

 
.hp-card__media { position: relative; }
.hp-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.hp-card:hover .hp-card__media img,
.hp-card__media:hover img { transform: scale(1.07); }
.hp-card:hover .hp-card__media::after,
.hp-card__media:hover::after { opacity: 1; }

 
.hp-card:hover .hp-card__title a { color: var(--link-color); }
.hp-card__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.hp-card:hover .hp-card__arrow { transform: translateX(5px); }

 
 
.hp-side {
  position: relative;
  z-index: 20;
}

.hp-next {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hp-side__sticky {
    position: sticky;
    top: 110px;
    z-index: 20;
  }
}

 
.hp-next__count {
  color: var(--brown-primary);
  font-size: 0.7em;
}

.hp-next__range {
  color: var(--brown-primary);
  font-size: 0.9rem;
  text-transform: lowercase;
}

 
.hp-next__badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  background: var(--tan);
  color: var(--navy-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

 
.hp-section__empty {
  margin: 0;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--blue-accent);
  background: rgba(83, 137, 166, 0.08);
  color: var(--brown-primary);
  font-size: 0.9rem;
  font-style: italic;
}

 
@media (prefers-reduced-motion: no-preference) {
  .hp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--hp-delay, 0ms);
    will-change: opacity, transform;
  }

  .hp-reveal.hp-reveal--in {
    opacity: 1;
    transform: none;
  }

   
  .hp-reveal--card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hp-reveal--card .hp-card__media { opacity: 0; }
  .hp-reveal--card.hp-reveal--in .hp-card__media {
    animation: hpRevealDown 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    animation-delay: 0.05s;
  }
}

 
.site-footer {
  --f-muted: rgba(255, 255, 255, 0.56);
  --f-line: rgba(255, 255, 255, 0.13);
  background: var(--black);
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer__inner {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.site-footer__grid { align-items: flex-start; }

.site-footer__title {
  font-family: 'Mark W04 Heavy', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin: 0 0 1.1rem;
}

 
.site-footer__logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) { .site-footer__logo { height: 100px; } }

.site-footer__mission {
  color: var(--f-muted);
  max-width: 32ch;
  margin: 0 0 1.4rem;
  font-size: 0.93rem;
}

.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: var(--white);
  flex: 0 0 auto;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.site-footer__social a svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--black);
  transform: translateY(-2px);
}

 
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.site-footer__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  transition: color 0.18s ease, gap 0.18s ease;
}
.site-footer__links a::before {
  content: "";
  width: 8px;
  height: 1px;
  background: var(--tan);
  transition: width 0.18s ease;
}
.site-footer__links a:hover { color: var(--tan); gap: 13px; }
.site-footer__links a:hover::before { width: 16px; }

 
.site-footer__next {
  background: #17130F;
  border: 1px solid var(--f-line);
  border-left: 3px solid var(--tan);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
.site-footer__date {
  flex: 0 0 auto;
  text-align: center;
  line-height: 1;
  font-family: 'Mark W04 Heavy', sans-serif;
}
.site-footer__date .d { display: block; font-size: 1.7rem; color: var(--tan); }
.site-footer__date .m {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--f-muted);
  margin-top: 4px;
}
.site-footer__ev .ev {
  font-family: 'Mark W04 Heavy', sans-serif;
  font-size: 1rem;
  margin: 0 0 0.2rem;
}
.site-footer__ev .sub { color: var(--f-muted); font-size: 0.84rem; margin: 0 0 0.55rem; }
.site-footer__ev a {
  color: var(--black);
  background: var(--tan);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  display: inline-block;
  transition: background-color 0.18s ease;
}
.site-footer__ev a:hover { background: var(--white); }

.site-footer__box { color: var(--f-muted); font-size: 0.9rem; line-height: 1.5; }
.site-footer__box b { color: var(--white); font-weight: 700; }
.site-footer__box a { color: var(--tan); text-decoration: none; }
 
.site-footer__box::first-line { color: var(--white); font-weight: 700; }

 
.site-footer__band {
  margin-top: 2.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--f-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer__contact { display: grid; gap: 0.45rem; color: var(--f-muted); font-size: 0.92rem; }
.site-footer__contact .row-item { display: flex; gap: 10px; align-items: baseline; }
.site-footer__contact svg { width: 15px; height: 15px; fill: var(--tan); flex: 0 0 auto; position: relative; top: 2px; }
.site-footer__contact a { color: var(--white); text-decoration: none; }
.site-footer__contact a:hover { color: var(--tan); }
.site-footer__map {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  padding: 11px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.site-footer__map:hover { background: var(--tan); color: var(--black); border-color: var(--tan); }

 
.site-footer__bottom {
  border-top: 1px solid var(--f-line);
  padding: 1.25rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.8rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--f-muted);
}
.site-footer__partners { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.site-footer__partners .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__partners b { color: rgba(255, 255, 255, 0.72); font-weight: 700; font-size: 0.82rem; }
.site-footer__totop {
  color: var(--f-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--f-line);
  padding: 7px 13px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.site-footer__totop:hover { color: var(--tan); border-color: var(--tan); }

#adminbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-size: 0.8rem;
}
#adminbar .admin-navbar {
    background-color: #1f1f1f;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
#adminbar .admin-navbar .navbar-nav {
    margin-left: 10px;
    font-size: 14px;
  
}
#adminbar .admin-navbar .nav-link,
#adminbar .admin-navbar .dropdown-item {
    color: #f8f9fa;
    font-size: 14px;
}
#adminbar .admin-navbar .nav-link:hover,
#adminbar .admin-navbar .nav-link:focus,
#adminbar .admin-navbar .dropdown-item:hover,
#adminbar .admin-navbar .dropdown-item:focus {
    color: #ffffff;
    background-color: #343a40;
}
#adminbar .admin-navbar .dropdown-menu {
    background-color: #2b2b2b;
    border-color: #3a3a3a;
}
#adminbar .admin-navbar .text-light,
#adminbar .admin-navbar .text-light:hover {
    color: #f8f9fa !important;
}
#adminbar .admin-navbar .form-inline {
    margin: 0;
    padding-right: 1rem;
}
 
@media (max-width: 991.98px) {
    #adminbar { display: none !important; }
    .body { margin-top: 0 !important; }
    .body > .navbar.sticky-top { margin-top: 0 !important; }
}

 
.timeline-sticky {
  display: flex;
  gap: var(--space-3, 2rem);
  align-items: flex-start;
}

.timeline-years {
  flex: 0 0 calc(25% - var(--space-3));
  position: sticky;
  top: 80px;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow: hidden auto;
  padding-right: var(--space-4);
  border-right: 2px solid #E4E0DC;
  z-index: 10;
}

.timeline-year {
  padding: var(--space-2) 16px var(--space-2) 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--brown-primary);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.timeline-year::before {
  content: '';
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E4E0DC;
  transition: background 0.2s ease, transform 0.2s ease;
}

.timeline-year:hover {
  color: var(--navy-primary);
  transform: translateX(8px);
}

.timeline-year:hover::before {
  background: var(--navy-primary);
  transform: translateY(-50%) scale(1.3);
}

.timeline-year.active {
  color: var(--tan);
  font-weight: 700;
  font-size: 1.25rem;
}

.timeline-year.active::before {
  background: var(--tan);
  width: 12px;
  height: 12px;
  right: -13px;
}

.timeline-content {
  flex: 1;
  min-height: 100vh;
  padding-left: var(--space-2);
}

.timeline-section {
  margin-bottom: var(--space-5, 4rem);
  scroll-margin-top: 120px;
}

.timeline-section-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: var(--space-2);
}

.timeline-section-content {
  color: var(--brown-primary);
  line-height: 1.6;
}

 
.timeline-years::-webkit-scrollbar {
  width: 6px;
}

.timeline-years::-webkit-scrollbar-track {
  background: transparent;
}

.timeline-years::-webkit-scrollbar-thumb {
  background: #D4CECC;
  border-radius: 3px;
}

.timeline-years::-webkit-scrollbar-thumb:hover {
  background: #C4BFBA;
}

@media (max-width: 991.98px) {
  .timeline-sticky {
    flex-direction: column;
    gap: var(--space-3);
  }

  .timeline-years {
    flex: 1 1 auto;
    position: sticky;
    top: 80px;
    max-height: none;
    height: auto;
    border-right: none;
    border-bottom: 2px solid #E4E0DC;
    padding-right: var(--space-3);
    padding-bottom: var(--space-2);
    padding-left: var(--space-3);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
     
    background: var(--white);
    z-index: 50;
  }

  .timeline-year {
    white-space: nowrap;
    flex-shrink: 0;
    padding: var(--space-2) var(--space-2) var(--space-2) 0;
    font-size: 0.95rem;
  }

  .timeline-year:hover {
    color: var(--tan);
    transform: none;
  }

  .timeline-year::before {
    display: none;
  }

  .timeline-year.active {
    font-size: 1.1rem;
    
  }

  .timeline-content {
    flex: 1;
    padding-left: 0;
  }

  .timeline-section {
    margin-bottom: var(--space-3);
    scroll-margin-top: 200px;
  }
}

 

 
.bands-list .band-card__thumb { overflow: hidden; }
.bands-list .band-card__thumb img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .45s ease;
}
.bands-list .band-card__thumb:hover img { transform: scale(1.05); }

.bands-list .band-card__title a { color: #000; transition: color .25s ease; }
.bands-list .band-card__title a:hover { color: var(--tan); }
.bands-list .band-card__intro { line-height: 1.5; }

@media (prefers-reduced-motion: reduce) {
  .bands-list .band-card__thumb img { transition: none; }
}

 

.band-page .band-page__hero-link { overflow: hidden; }
.band-page .band-page__hero img {
  max-height: 70vh;
  object-fit: cover;
  transition: transform .6s ease;
}
.band-page .band-page__hero-link:hover img { transform: scale(1.02); }

.band-page .band-page__eyebrow {
  color: #000;
  font-weight: 700;
  transition: transform .25s ease, color .25s ease;
}
.band-page .band-page__eyebrow:hover {
  color: var(--tan);
  transform: translateX(4px);
}

.band-page .band-page__title { font-weight: 800; line-height: 1.05; }
.band-page .band-page__subhead { font-weight: 800; }
.band-page .band-page__intro { line-height: 1.6; }

 
.band-page .band-page__content p { margin-bottom: 1.1rem; }
.band-page .band-page__content.is-collapsed {
  max-height: 220px;
  overflow: hidden;
  position: relative;
}
.band-page .band-page__content.is-collapsed::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(rgba(255,255,255,0), #fff);
}
.band-page .band-page__expand {
  background: none;
  border: 0;
  padding: 0;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease;
}
.band-page .band-page__expand:hover { color: var(--tan); }

 
.band-page .band-page__person {
  width: 300px;
  transition: transform .3s ease;
}
.band-page .bp-member .band-page__person { width: auto; }
.band-page .band-page__person:hover { transform: translateY(-5px); }
.band-page .band-page__photo { overflow: hidden; }
.band-page .band-page__person img {
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .45s ease;
}
.band-page .band-page__person:hover img { transform: scale(1.06); }
.band-page .band-page__person-name { color: #000; line-height: 1.25; transition: color .25s ease; }
.band-page .js-artist-popup { cursor: pointer; }
.band-page .js-artist-popup:hover .band-page__person-name { color: var(--tan); }

.band-page .band-page__search { position: relative; background: #f1f1f1; transition: background .25s ease; }
.band-page .band-page__search:focus-within { background: #ececec; box-shadow: inset 0 -2px 0 var(--tan); }
.band-page .band-page__search input {
  width: 100%;
  background: transparent;
  border: 0;
  padding: .9rem 3rem .9rem 1rem;
  outline: none;
}
.band-page .band-page__search .fa-search {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: .55;
}

 
.band-page .bp-group { border-top: 1px solid #d9d9d9; }
.band-page .bp-group:last-child { border-bottom: 1px solid #d9d9d9; }
.band-page .bp-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: .85rem 0;
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, padding-left .25s ease;
}
.band-page .bp-group__head:hover { background: #f7f7f7; padding-left: .6rem; }
.band-page .bp-group__name { font-weight: 700; }
.band-page .bp-group__icon { transition: transform .3s ease; }
.band-page .bp-group__icon::before { content: '+'; font-size: 1.3rem; font-weight: 600; line-height: 1; display: inline-block; }
.band-page .bp-group.is-open .bp-group__icon::before { content: '\2212'; }
.band-page .bp-group__head:hover .bp-group__icon { transform: rotate(90deg); }
.band-page .bp-group__body { display: none; }
.band-page .bp-group.is-open .bp-group__body { display: block; }

 
.band-page .band-page__glink { overflow: hidden; }
.band-page .band-page__glink img { transition: transform .45s ease; }
.band-page .band-page__glink:hover img { transform: scale(1.05); }

 
.band-page .band-page__ev { transition: transform .3s ease; }
.band-page .band-page__ev:hover { transform: translateY(-4px); }
.band-page .band-page__ev-thumb { overflow: hidden; }
.band-page .band-page__ev-thumb img { transition: transform .45s ease; }
.band-page .band-page__ev:hover .band-page__ev-thumb img { transform: scale(1.05); }
.band-page .band-page__ev-title a { color: #000; transition: color .25s ease; }
.band-page .band-page__ev-title a:hover { color: var(--tan); }


 
@keyframes bpFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.band-page .bp-anim { animation: bpFadeUp .7s cubic-bezier(.22,.61,.36,1) both; }

@media (prefers-reduced-motion: reduce) {
  .band-page .bp-anim { animation: none; }
  .band-page .band-page__person,
  .band-page .band-page__person img,
  .band-page .band-page__hero img,
  .band-page .band-page__glink img,
  .band-page .band-page__ev,
  .band-page .band-page__ev-thumb img,
  .band-page .bp-group__head,
  .band-page .bp-group__icon,
  .band-page .band-page__eyebrow { transition: none; }
}

 

body.artist-popup-open { overflow: hidden; }

.artist-popup__overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 15, 15, .78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: apFade .25s ease both;
}

.artist-popup__box {
  position: relative;
  width: min(1100px, 100%);
}

 
.artist-popup__close {
  position: absolute;
  top: 0;
  right: -3.25rem;
  z-index: 1;
  background: none;
  border: 0;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color .25s ease, transform .25s ease;
}
.artist-popup__close:hover { color: var(--tan); transform: rotate(90deg); }

.artist-popup {
  position: relative;
  background: #fff;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 3.5rem 3rem;
  animation: apUp .35s cubic-bezier(.22, .61, .36, 1) both;
}

 
@media (max-width: 1250px) {
  .artist-popup__overlay { padding-top: 3.5rem; }
  .artist-popup__close { top: -3rem; right: .25rem; }
}

.artist-popup__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.artist-popup__media img { width: 100%; height: auto; }

.artist-popup__line {
  width: 40%;
  border-bottom: 8px solid var(--black);
  margin-bottom: 1.25rem;
}

.artist-popup__name {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: .5rem;
}

.artist-popup__role {
  color: var(--brown-primary);
  margin-bottom: 1.75rem;
}

.artist-popup__text { line-height: 1.7; }
.artist-popup__text p { margin-bottom: 1.1rem; }
.artist-popup__intro { line-height: 1.6; }

@media (max-width: 767.98px) {
  .artist-popup { padding: 2rem 1.25rem; }
  .artist-popup__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .artist-popup__media { max-width: 260px; }
  .artist-popup__name { font-size: 2.1rem; }
}

@keyframes apFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes apUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .artist-popup__overlay, .artist-popup { animation: none; }
  .artist-popup__close { transition: none; }
}

 

.scroll-top {
  position: fixed;
   
  right: calc(var(--side-tab-width, 0px) + 1.25rem);
  bottom: 1.5rem;
  z-index: 400;  
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-primary);
  color: #fff;
  border: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background .25s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.scroll-top:hover { background: var(--tan); }
.scroll-top svg { display: block; }

@media (max-width: 768px) {
   
  .scroll-top { right: 1rem; bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: none; }
}
 
.sp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--sp-delay, 0s);
}
.sp-reveal.is-inview { opacity: 1; transform: none; }

 
.artist-row__thumb,
.artist-page__portrait a { display: block; overflow: hidden; }
.artist-row__thumb img,
.artist-page__portrait a img { transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.artist-row__thumb:hover img,
.artist-page__portrait a:hover img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  .sp-reveal { opacity: 1; transform: none; transition: none; }
  .artist-row__thumb img,
  .artist-page__portrait a img { transition: none; }
  .artist-row__thumb:hover img,
  .artist-page__portrait a:hover img { transform: none; }
}

 
.accordion {
  --bs-accordion-color: var(--navy-primary);
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: var(--navy-primary);
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;

  --bs-accordion-btn-color: var(--navy-primary);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1.35rem;
  --bs-accordion-btn-focus-box-shadow: none;

   
  --bs-accordion-active-color: var(--navy-primary);
  --bs-accordion-active-bg: transparent;

  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0.5rem;
}

 
.accordion-item {
  background: transparent;
  border: 0;
}
.accordion > .accordion-item:not(:first-child) {
  border-top: 1px solid var(--navy-primary);
}

 
.accordion-button {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
  background: transparent;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  outline: 0;
}
 
.accordion-button:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 3px;
}
.accordion-button:hover {
  color: var(--blue-accent);
}

 
.accordion-button::after {
  width: 1.15rem;
  height: 1.15rem;
  background-size: 1.15rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3e%3cpath d='M12 4v16M4 12h16'/%3e%3c/svg%3e");
  transform: none;
  transition: opacity .2s ease-out;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3e%3cpath d='M4 12h16'/%3e%3c/svg%3e");
  transform: none;
}
.accordion-button:hover::after {
  opacity: .6;
}

 
.accordion-body {
  background: transparent;
  padding-bottom: 1.6rem;
}
.accordion-body > *:last-child { margin-bottom: 0; }

 
@media (max-width: 575.98px) {
  .accordion { --bs-accordion-btn-padding-y: 1rem; }
  .accordion-button { font-size: 0.95rem; }
}

 
.accordion-item { scroll-margin-top: 140px; }

 
.accordion-item.is-linked {
  box-shadow: 0 0 0 2px var(--blue-accent);
  transition: box-shadow .4s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after,
  .accordion-item.is-linked { transition: none; }
}

 
.pagination .page-item.active .btn,
.pagination .page-item.active .page-link {
  background-color: var(--navy-primary);
  border-color: var(--navy-primary);
  color: #fff;
  cursor: default;
  pointer-events: none;
  font-weight: 700;
}
