.event_item {
  padding: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--accent_1);
}

.event_item__border {
  width: 1px;
  background: var(--border);
}

.event_item__date {
  width: 236px;
}

@media (max-width: 1024px) {
  .event_item {
    padding: 24px;
  }

  .event_item__date {
    width: 134px;
  }
}

@media (max-width: 900px) {
  .event_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .event_item__border {
    width: 100%;
    height: 1px;
  }

  .event_item__date {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 680px) {
  .event_item {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .event_item__date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}