.events-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.event-card {
  padding: 16px 0;
  border-bottom: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-image {
  width: 268px;
  height: 184px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-div {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.event-content {
  flex: 1 1 70%;
  min-width: 200px;
}

.button {
  flex-shrink: 0;
}

.event-title {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 28px;
}

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

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.meta-item img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%);
}

@media (max-width: 768px) {
  .event-title {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 20px;
  }

  .meta-item {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}

@media (max-width: 480px) {
  .events-grid {
    margin-bottom: 25px;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-image {
    width: 100%;
    height: 200px;
  }

  .event-content {
    text-align: left;
  }

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