
body.single-event .gfield_required_text { 
    margin-left: 10px; 
    color: #ff0000; 
}
body.single-event .gfield { 
    margin-bottom: 10px; 
}
body.single-event .gform_wrapper input, body.single-event .gform_wrapper textarea {
    box-shadow: none;
}

.event-archive {
  padding: 24px 16px;
}

.event-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.event-list {
  display: block; 
}

.event-card + .event-card {
  margin-top: 18px;
}

.event-card {
  position: relative;
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
  padding-left: 10px; 
}

.event-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: #020b60;
}

.event-card__bar {
  display: none;
}

.event-card__media,
.event-card__content,
.event-card__cta {
  display: block;
  width: 100%;
}

.event-card__media {
  padding: 14px 16px 8px 16px;
}

.event-card__thumb {
  display: block;
  width: 100%;
}

.event-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  object-fit: cover;
}

.event-card__thumb--placeholder {
  display: block;
  width: 100%;
  height: 180px;
  background: #f2f2f2;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
}

.event-card__content {
  padding: 8px 16px 12px 16px;
  border-left: none;
}

.event-card__title {
  margin: 0 0 8px 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.event-card__title a {
  color: #0c0c0c;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.event-card__title a:hover {
  text-decoration-thickness: 3px;
}

.event-card__excerpt {
  margin: 0 0 10px 0;
  color: #3b3b3b;
  font-size: 16px;
  line-height: 1.4;
}

.event-card__date {
  display: block;
  color: #3b3b3b;
  font-size: 16px;
}

.event-card__date-icon {
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
  color: #6b6b6b;
  margin-right: 8px;
}

.event-card__cta {
  padding: 0 16px 16px 16px;
}

.event-pagination {
  margin-top: 22px;
}

.event-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 6px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  text-decoration: none;
  color: #111;
  background: #fff;
}

.event-pagination .page-numbers.current {
  background: #f5f5f5;
  font-weight: 700;
}

@media (min-width: 900px) {
  .event-card {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    align-items: center;
    padding-left: 10px;
    min-height: 140px;
  }

  .event-card__media {
    padding: 14px 16px;
  }

  .event-card__thumb {
    width: 210px;
    max-width: 100%;
  }

  .event-card__thumb--placeholder {
    width: 210px;
    height: 120px;
  }

  .event-card__content {
    padding: 14px 18px;
    border-left: 1px solid #ededed;
  }

  .event-card__cta {
    padding: 14px 18px;
    text-align: right;
  }
}