.event-calendar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 120px;

}

.event-calendar .day-month {
  width: 120px;
  border: 4px solid var(--navy-blue);
  border-radius: 15px;
  aspect-ratio: 1;
  overflow: hidden;
  /*
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  */

}

.event-calendar .month {
  background-color: var(--orange);
  color: white;
  padding: 5px 0;
  flex: 0;
  width: 100%;
}

.event-calendar .day {
  color: white;
  padding: 5px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;

}



.event-calendar .time {
  min-width: 140px;
}