#events > .section-body {
  min-height: 400px;
}

.event-statuses-wrapper {
  width: 25%;
  min-width: fit-content;
  padding: 50px 50px 50px 0;
  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: 20px;
  border-bottom: 3px solid var(--section-title);
  padding-bottom: 0.5rem;
}

.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

.events-posts-wrapper {
  width: 75%;
}

@media screen and (max-width: 768px) {
  .events-posts-wrapper {
    width: 100%;
  }

  .event-statuses-wrapper {
    width: 100%;
  }
}

.events-month-year {
  font-size: 24px;
  color: #1b5c99;
}

.events-content {
  display: grid;
  gap: 3rem;
  /* grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(340px, 420px));
}
/* .events-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Adjust the gap value based on your preference 
} */

.event-post {
  position: relative;
}

.event-post::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px; /* Adjust the distance of the line from the right side */
  height: 100%;
  width: 2px; /* Width of the vertical line */
  background-color: #707070; /* Color of the line */
}

@media screen and (max-width: 400px) {
  .events-content {
    grid-template-columns: unset;
  }
  .events-content h4 {
    text-align: center;
  }
}

@media screen and (max-width: 787px) {
  .events-content h4 {
    text-align: center !important;
  }
  .all-events-btn {
    justify-content: center !important;
    padding-right: 0rem !important;
  }
}

.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: #1b5c99;
  transition: all ease 0.3s !important;
}
.datepicker-btn:hover {
  background-color: #1b5c99;
  color: white !important;
  width: 35px;
  height: 35px;
}
#events button {
  transition: all ease 0.3s !important;
}
#events button:hover .fa-solid {
  background-color: #1b5c99;
  border-radius: 60px;
  color: #fff !important;
  padding: 10px 14px;
}

.event-statuses-wrapper {
  padding-left: 3rem;
}
.all-events-btn {
  padding-right: 10rem;
}

.event-thumbnail {
  width: 150px;
  /* width:auto; */
  height: 150px;
  object-fit: cover;
  margin-right: 15px;
}

.event-info {
  width: 50%;
}

.event-info > p {
  margin-bottom: 0;
}

.event-date {
  font-size: var(--text-md);
  margin-bottom: 0;
}

.event-title {
  font-size: var(--text-sm);
  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::after {
    display: none;
  }
}
