.yk-section--events {
  margin-bottom: 56px;
}
.yk-section--events .yk-section__title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #222;
}
.yk-section--events .yk-grid {
  display: grid;
  gap: 22px;
}
.yk-section--events .yk-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.yk-section--events .yk-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.yk-section--events .yk-card__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.yk-section--events .yk-card__body {
  padding: 12px 14px 14px;
}
.yk-section--events .yk-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}
.yk-section--events .yk-card__title a {
  color: #222;
}
.yk-section--events .yk-card__excerpt {
  font-size: 13px;
  color: #5c5c5c;
  margin: 0 0 8px;
  line-height: 1.5;
}
.yk-section--events .yk-card__meta {
  font-size: 12px;
  color: #9a9a9a;
  margin: 0;
}
@media (max-width: 767px) {
  .yk-section--events .yk-grid--3 {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .yk-section--events .yk-card__thumb img {
    height: 150px;
  }
}
