.featured-events {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

@media (min-width: 767px) {
    .featured-events {
        grid-template-rows: auto 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .featured-events {
        grid-template-rows: auto 1fr;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.featured-events .featured-event-description {
  font-size: 16px;
  color: var(--global-palette5);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.event-categories {
  font-size: 16px;
}

.event-categories span {
  margin-right: 0.125rem;
}

.event-categories span + span:before {
  content: ','
}

.featured-events .event-title {
    text-transform: none;
    line-height: 40px;
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-style: normal;
    padding: 0;
    display: block;
    line-height: 1.2;
    word-wrap: break-word;
    margin-top:0;
}

 .featured-events .event-title a {
    color: var(--global-palette1);
}
 .featured-events .event-title a:hover {
    color: var(--global-palette2);
}

 .featured-events .featured-event {
  background-color: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
}

 .featured-events .featured-event-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

 .featured-event-image img {
  width: 100%;
  max-width: none;
  height: 296px;
  display: block;
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

.featured-event-content .kt-btn-wrap {
  display: block;
  margin-top: auto;
}

.featured-event-content .kt-btn-wrap .kt-btn-has-svg-true.button {
  width:auto;
  display: inline-flex;
  margin-top: 0.75rem;
  border-radius: 500px;
  color: var(--global-palette9);
  background-color: #fff;
  text-transform: none;
  padding: 8px 18px 10px 18px;
  background-color: var(--global-palette1);
  border-radius: 0;
  font-size: 18px;
}
.featured-event-content .kt-btn-wrap .kt-btn-has-svg-true.button:hover {
 color: var(--global-palette9);
  background-color: var(--global-palette2);
}

.featured-event-content .kt-btn-wrap .kt-btn-has-svg-true.button .kt-btn-svg-icon {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.featured-event-content .kt-btn-wrap .kt-btn-has-svg-true.button .kt-btn-svg-icon svg {
  display: inline-block;
  vertical-align: middle;
}