@charset "UTF-8";
/* 按鈕尺寸表（左右 padding、字級） */
h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  text-align: center;
}
@media (min-width: 992px) {
  h2 {
    font-size: 40px;
  }
}

h2 + p {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: #000;
  padding-top: 0;
}

.events-latest {
  background: linear-gradient(to bottom, #fff 0%, #f7f7f7 50%);
  padding: 40px 24px;
}
@media (min-width: 992px) {
  .events-latest {
    padding: 40px 80px;
  }
}
.events-latest__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.event-featured {
  width: 100%;
  background-color: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .event-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 640px;
  }
}
@media (min-width: 1200px) {
  .event-featured {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 40px;
    width: 100%;
  }
}
.event-featured__img-wrap {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
  border-radius: 0px;
}
@media (min-width: 1200px) {
  .event-featured__img-wrap {
    flex: 0 0 53.33%;
    aspect-ratio: 1200/630;
    border-radius: 8px;
  }
}
.event-featured__img-wrap img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1200/630;
  transition: transform 0.3s ease;
}
@media (min-width: 1200px) {
  .event-featured__img-wrap img {
    height: 100%;
    aspect-ratio: unset;
  }
}
.event-featured__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 16px 24px;
}
@media (min-width: 992px) {
  .event-featured__body {
    width: 100%;
    padding: 24px;
  }
}
@media (min-width: 1200px) {
  .event-featured__body {
    flex: 1 1 0;
    min-width: 0;
    align-self: stretch;
    padding: 16px 0;
  }
}
.event-featured__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.event-featured__date, .event-featured__time {
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #646464;
  white-space: nowrap;
}
.event-featured__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #000;
}
.event-featured__content h3 {
  font-size: 28px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .event-featured__content h3 {
    font-size: 32px;
  }
}
.event-featured__content p {
  padding-top: 0;
  font-size: 16px;
  line-height: 1.6;
}
.event-featured__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 576px) {
  .event-featured__actions {
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .event-featured__actions {
    margin-top: auto;
  }
}
.event-featured__actions .btn {
  width: 100%;
}
@media (min-width: 576px) {
  .event-featured__actions .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }
}
.event-featured:hover .event-featured__img-wrap img {
  transform: scale(1.07);
}

.events-archive {
  padding: 40px 24px;
}
@media (min-width: 992px) {
  .events-archive {
    padding: 40px 80px 64px;
  }
}
.events-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.events-archive__header h2 {
  margin-bottom: 16px;
}

.event-cards-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .event-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .event-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .event-cards-grid {
    gap: 40px;
  }
}

.event-card {
  border: 1px solid #E3E3E3;
  border-radius: 16px;
  overflow: hidden;
}
.event-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.event-card__img-wrap {
  overflow: hidden;
}
.event-card__img-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 1200/630;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .event-card:hover .event-card__img-wrap img {
    transform: scale(1.07);
  }
}
.event-card__body {
  flex: 1;
  padding: 16px 24px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.event-card__body .subtitle-s {
  transition: color 0.3s ease;
}
.event-card__tags {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}
.event-card:hover .subtitle-s {
  color: #DFA916;
}/*# sourceMappingURL=pg_event-index.css.map */