.events-section {
  padding: 60px 25px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.events-heading {
  font-family: 'ivar-regular', serif;
  font-size: 2.8rem;
  font-weight: normal;
  margin-bottom: 56px;
  color: #000;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.event-card {
  display: flex;
  flex-direction: column;
}

.event-flyer {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 20px;
}

.event-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-flyer.placeholder {
  background-color: #e8e7e2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-flyer.placeholder span {
  font-family: 'graphik-regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-title {
  font-family: 'graphik-regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #000;
}

.event-date {
  font-family: 'graphik-regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: #888;
}

.event-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: #000;
  color: #f6f5f0;
  font-family: 'graphik-regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.event-btn:hover {
  color: #f6f5f0;
  opacity: 0.75;
}

.event-btn--full {
  background: #aaa;
  cursor: default;
  pointer-events: none;
  text-align: center;
}

.event-btn--full:hover {
  opacity: 1;
}

.nav-active {
  opacity: 0.5;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 543px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-heading {
    font-size: 2rem;
  }
}
