.home-slider {
  width: 100%;
  margin-top: calc(44px + env(safe-area-inset-top));
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  container-type: inline-size;
}

.home-slider .swiper-slide {
  aspect-ratio: 4 / 3.1;
  background-color: transparent;
  border-radius: 1rem;
  overflow: hidden;
}

.slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.logo-slide img {
  width: 45%;
  min-width: 100px;
  max-width: 160px;
  border-radius: 1rem;
  height: auto;
  margin-bottom: 1rem;
}

.logo-slide h1 {
  font-weight: 400;
  margin: 0;
  font-size: clamp(1.25rem, 10cqw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-slide h1 span {
  display: block;
  font-size: clamp(0.75rem, 3.5cqw, 0.875rem);
  color: #a0a0a0;
  margin: 0.5rem 1rem 0;
  line-height: 1.4;
  font-weight: 400;
}

.logo-slide p {
  font-size: clamp(0.75rem, 3.5cqw, 0.875rem);
  color: #a0a0a0;
  margin: 0.5rem 1rem 0;
  line-height: 1.4;
}

.event-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  justify-content: flex-start;
  align-items: stretch;
}

.event-img {
  width: 100%;
  aspect-ratio: 3 / 2; /* 1.5:1 ratio */
  background-size: cover;
  background-position: center;
  position: relative;
}
.event-slide .event-info {
  flex: 1;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
  width: 100%;
  background-color: rgba(34,34,34,0.7); /* 70% opacity */
  text-align: left;
  align-items: flex-start;
}

.event-slide h3 {
  font-size: 1.25em;
  font-weight: 400;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-slide p {
  margin: 0;
  font-size: 1rem;
  padding-bottom: 0;
}

.event-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-date {
  font-size: 1rem;
}

.event-location {
  font-size: 1rem;
  color: #bbb;
} 