.venue_highlights {
  padding: 5rem 0;
  background-color: rgba(221, 200, 138, 0.08);
}
.venue_highlights .sub_title {
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary_color);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.venue_highlights .title-thc {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 720px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}
.venue_highlights .desc {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  color: var(--text_color, #1c1d20);
}
.venue_highlights .venue-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.venue_highlights .venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(114, 25, 7, 0.1);
}
.venue_highlights .venue-card__image {
  margin-bottom: 1rem;
  overflow: hidden;
}
.venue_highlights .venue-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: inherit;
}
.venue_highlights .venue-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--primary_color);
}
.venue_highlights .venue-card__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text_color, #1c1d20);
  flex: 1;
}
.venue_highlights .venue-card__link {
  margin-top: 1rem;
  text-align: left;
}
