<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.card {
  border: none;
  border-radius: 10px;
  text-decoration: none;
  color: rgb(var(--dark-gray));
}

.card-image {
  position: relative;
  height: 0;
  padding-top: 50%;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-label {
  position: absolute;
  bottom: 10px;
}

.business-card .card-info {
  background: rgba(var(--light-gray), 0.55);
  border-radius: 0 0 16px 16px;
}

.business-card .label {
  right: 10px;
  z-index: 1;
}

.business-card .card-image.flat-corner {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.business-card .card-image {
  padding-top: 76%;
  z-index: 0;
}

.business-card .card-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  left: 0;
  top: 20%;
  background: linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0));
  z-index: 1;
}

.event-card {
  border-radius: 16px;
  background: rgb(var(--light));
  overflow: hidden;
  min-height: 317px;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0px 6px 12px rgba(158, 158, 158, 0.10),0px 23px 23px rgba(158, 158, 158, 0.09), 0px 51px 30px rgba(158, 158, 158, 0.05), 0px 90px 36px rgba(158, 158, 158, 0.01), 0px 141px 39px rgba(158, 158, 158, 0.00);
}

.event-card:hover .card-info .title {
  color: rgb(var(--primary));
  transition: all 0.2s ease-in-out;
}

.event-card:hover .card-image img {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

.event-card:hover, .events-listing .event-card:focus {
  color: inherit;
}

.event-card .card-image {
  position: relative;
  overflow: hidden;
  height: 176px;
  width: 100%;
}

.event-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.event-card .card-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.event-card .card-info {
  display: flex;
  gap: 13px;
  padding: 25px 23px;
  min-height: 100%;
  height: fit-content;
}

.event-card .card-info .card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 5px;
}

.event-card .card-info .card-date .month {
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
  text-transform: uppercase;
  color: rgb(var(--primary));
}

.event-card .card-info .card-date .day {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  margin: 0;
}

.event-card .card-info .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  margin: 0 0 10;
  transition: all 0.2s ease-in-out;
}

.event-card .card-info .extract {
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .business-card-col {

  }
}

@media screen and (max-width: 767px) {
  .event-card .card-image {
      height: 210px;
  }

  .event-card .card-info {
      padding: 24px 24px 22px;
  }

  .event-card .card-info .card-date {
      position: absolute;
      top: 0;
      left: 24px;
      gap: 3px;
      padding: 8px 12px 10px;
      border-radius: 0 0 8px 8px;
      background: rgb(var(--light));
  }

  .event-card .card-label {
      left: 24px;
      bottom: 24px;
      padding: 10px 17px;
      line-height: 100%;
  }
}
</pre></body></html>