.event-calendar-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  padding: 16px 24px;
  border-radius: 14px;
  background: #fff7e5;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.event-date-box {
  background: #ffe9bf;
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  margin-right: 20px;
  min-width: 90px;
}

.event-date-day {
  font-weight: 600;
  font-size: 18px;
}

.event-date-year {
  font-size: 14px;
  margin-bottom: 8px;
}

.event-date-time {
  font-weight: 600;
  font-size: 16px;
}

.event-main {
  padding-right: 24px;
}

.event-title {
  margin: 0 0 8px;
  font-size: 24px;
}

.event-desc {
  margin: 0;
  font-size: 15px;
}

.event-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.event-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  border: none;
}

.event-btn--primary {
  background: #b8d342;
  color: black;
}

.event-btn--secondary {
  background: #c8dd51;
  color: black;

}

.event-btn:hover {
  filter: brightness(0.95);
}

/* mobil */
@media (max-width: 768px) {
  .event-item {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .event-date-box {
    margin-right: 0;
    margin-bottom: 10px;
    align-self: flex-start;
  }

  .event-actions {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }
}
