.we-events-archive{
  padding: clamp(40px, 4vw, 70px) 0;
  background: #fff;
}

.we-events-archive__inner{
  width: var(--container);
  margin: 0 auto;
}

.we-events-archive__head{
  margin-bottom: 26px;
}

.we-events-archive__title{
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.we-events-archive__intro{
  line-height: 1.7;
}

.we-events-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.we-event-row{
  padding: 0;
  border-top: 0;
}

.we-event-row__inner{
  width: var(--container);
  margin: 0 auto;

  padding: 18px 18px 16px;
  background: #ffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);

  position: relative;
}

.we-event-row__link{
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 14px;
}

.we-event-row__text,
.we-carousel{
  position: relative;
  z-index: 2;
}

.we-event-row__title a,
.we-event-row__title-link{
  position: relative;
  z-index: 3;
}

.we-event-row__text{
  padding: 0 0 12px;
}

.we-event-row__title{
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 800;
}

.we-event-row__title a{
  color: inherit;
  text-decoration: none;
}

.we-event-row__title a:hover{
  text-decoration: underline;
}

.we-event-row__excerpt{
  color: #333;
  line-height: 1.7;
}

.we-events-archive .event-card__meta{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  min-height: calc(1.4em * 2 + 6px);
}

.we-events-archive .event-card__meta-item{
  display: flex;
  align-items: center;
}

.we-events-archive .event-card__icon{
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 8px;
}

.we-carousel{
  position: relative;
  margin-top: 10px;
  padding-inline: 52px;
}

.we-carousel__track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 0 14px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.we-carousel__track::-webkit-scrollbar{ display: none; }

.we-carousel__slide{
  position: relative;
  flex: 0 0 auto;
  height: clamp(160px, 18vw, 220px);
  width: auto;
  max-width: min(70vw, 560px);

  border-radius: 12px;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  scroll-snap-align: start;

  display: flex;
  align-items: center;
  justify-content: center;
}

.we-carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;

  z-index: 6; 
}

.we-carousel__btn--prev{ left: 8px; }
.we-carousel__btn--next{ right: 8px; }

.we-carousel__btn:hover{
  transform: translateY(-50%) scale(1.06);
}

.we-lightbox__open{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;

  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-carousel__slide img{
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;

  pointer-events: none; 
}

/* =========================
   LIGHTBOX (fullscreen)
========================= */
html.we-lock,
html.we-lock body{
  overflow: hidden;
}

.we-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;

  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  z-index: 9999;
}

.we-lightbox.is-open{
  opacity: 1;
  visibility: visible;
}

.we-lightbox__img{
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  object-fit: contain;
  background: #111;
}

.we-lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

@media (max-width: 700px){
  .we-event-row__inner{
    padding: 16px 14px 14px;
    border-radius: 12px;
  }

  .we-event-row__link{
    border-radius: 12px;
  }

  .we-carousel{
    padding-inline: 44px;
  }

  .we-carousel__slide{
    max-width: 82vw;
  }

  .we-lightbox{
    padding: 16px;
  }
}



.we-event-row__text{
  position: relative;
  z-index: 2;
}
.we-carousel{
  position: relative;
  z-index: 2;
}
.we-event-row__link{
  z-index: 1;
}

.we-event-row__more-link{
	font-weight: 700;
}

.we-event-row__more-link:hover {
    text-decoration: underline;
}
a{
	font-weight: bold;
}

a:hover{
	font-weight: bold;
	text-decoration: underline;
}

.site-nav__menu a:hover{
	font-weight: 600;
	text-decoration: none;
}