#events > .section-body {
  min-height: 400px;
}

.event-statuses-wrapper {
  width: 15%;
  min-width: fit-content;
  margin: 0px 20px 0px 60px;
  position: relative;
}

.event-statuses {
  list-style: none;
  padding: 0;
  margin: 0;
}

li.status {
  width: 100%;
  border: none;
  background: none;
  color: var(--section-title);
  font-size: 18px;
  border-bottom: 2px solid #0a22398c;
  padding-bottom: 0.5rem;
}

.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

.events-posts-wrapper {
  width: 85%;
}

@media screen and (max-width: 1400px) {
  .event-statuses-wrapper {
    margin: 0px 20px 0px 0px;
  }
}
@media screen and (max-width: 1249px) {
  .events-content {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(313px, 420px)) !important;
  }
}
@media screen and (max-width: 999px) {
  .events-content {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, minmax(313px, 420px)) !important;
  }
  .events-posts-wrapper {
    width: 75%;
  }
  .event-statuses-wrapper {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .events-posts-wrapper {
    width: 100%;
  }

  .event-statuses-wrapper {
    width: 92%;
  }
  .events-content {
    display: grid;
    justify-content: center;
    justify-items: center;
  }
}

.events-month-year {
  font-size: 24px;
  /* color: var(--section-title); */
  color: #26408b;
  /* font-weight: 100; */
}

.events-content {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(313px, 420px));
}

.event-post {
  position: relative;
}

.event-post:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  height: 100%;
  width: 2px;
  background-color: #70707096;
}

@media screen and (max-width: 400px) {
  .events-content {
    grid-template-columns: unset;
  }
}

.event-post:nth-child(even) {
  border-right: none;
}

@media screen and (max-width: 400px) {
  .event-post {
    flex-direction: column;
  }
}

.events-datepicker-buttons {
  align-items: center;
  justify-content: center;
}

.datepicker-btn {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: none;
  border: none;
  font-size: var(--text-md);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #26408b;
}
.datepicker-btn:hover {
  background-color: #f3f2f2;
  width: 35px;
  height: 35px;
}

.all-events-btn {
  /* padding-right: 10rem; */
}

@media screen and (max-width: 768px) {
  .all-events-btn {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.event-thumbnail {
  width: 130px;
  /* width:auto; */
  height: 130px;
  object-fit: cover;
  margin-right: 15px;
}

.event-info > p {
  margin-bottom: 0;
}
.event-info {
  height: 150px;
  width: 170px;
}
.event-date {
  font-size: var(--text-md);
  margin-bottom: 0;
}

.event-title {
  font-size: 15px;
  font-weight: bold;
}

.event-location {
  font-size: var(--text-xs);
  font-weight: lighter;
}

.event-time {
  font-size: var(--text-sm);
}

.event-content {
  max-width: 40ch;
  font-size: var(--text-xs);
  font-weight: lighter;
}

#loading {
  width: 100px;
}

.all-btn-events::before {
  background: var(--secondary);
}

@media (max-width: 1239px) {
  .event-post:not(:last-child)::after {
    display: none;
  }
}
#events {
  scroll-margin-top: 50px;
  margin-top: 40px;
}
