.event-card,
.event-banner {
  padding: 4rem 0;
}
.event-count {
  padding: 2rem 0 3rem 0;
}
.event-card h2 {
  color: #ffffff;
  margin-bottom: 3rem;
}

.info-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.info-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: 0.8rem;
}

.info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

.info-card-body {
  padding: 1rem 1.5rem 1rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.info-card-body h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: "Schibsted Grotesk", sans-serif;
}
.info-card-body p {
  color: #d1a569;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.1rem;
}

.info-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.info-card-body ul li {
  font-size: 0.9rem;

  line-height: 1.3;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2em;
}
.info-card-body ul li::before {
  content: "\2022";
  color: #0f253d;
  font-size: 0.7em;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.data-item {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 1rem;
  max-width: 250px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.data-item:last-child {
  margin-bottom: 0;
}

.data-item .number {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: bold;
  color: #d1a569;
  line-height: 1;
}

.data-item .divider {
  width: 100%;
  height: 1.5px;
  background-color: #d1a569;
  margin: 2rem 0;
  max-width: 250px;
}

.data-item .description {
  font-size: 1rem;

  line-height: 1.6;
  max-width: 250px;
}
.event-swiper-container {
  position: relative;
  padding-bottom: 50px;
  overflow: hidden;
}

/* 響應式調整 */
@media (max-width: 767.98px) {
  .data-item {
    max-width: 350px;
  }
  .data-item .description {
    max-width: 350px;
  }
  .data-item .divider {
    max-width: 350px;
  }
}

@media (min-width: 768px) {
  .data-item {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .event-card,
  .event-banner {
    padding: 2rem 0;
  }

  .event-count {
    padding: 1rem 0 3rem 0;
  }
  .event-card h2 {
    color: #ffffff;
    margin-bottom: 3rem;
  }

  .data-item .divider {
    margin: 2rem 0 1.5rem 0;
  }
}
