.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.event {
  position: relative;
  background: linear-gradient(180deg, rgb(220, 220, 220) 0%, rgb(255, 255, 255) 95%);
  border-radius: 5px;
  height: 600px;
  flex: 1 1 calc(20% - 20px);
  border: solid 1px #e6e5e5;
  display: flex;
  flex-direction: column;
  padding: 15px;
  color: #000;
  transition: background 0.3s ease-in-out;
  overflow: hidden;
  z-index: 0;
}
.event::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 255, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.event:hover::before {
  opacity: 1;
}
.event * {
  position: relative;
  z-index: 2;
}
.event:hover {
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.event:hover .blurb,
.event:hover .event-signup {
  display: block;
}
.event:hover .thumbnail {
  display: none;
}
.event:hover {
  background-size: 300%;
  background-position: center center;
  color: #fff;
  background-image: url("");
}
.event:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 50, 160, 0.3);
  z-index: 1;
  pointer-events: none;
  transition: background-color 0.3s ease;
}

.event-content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.event-date {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.event-day {
  font-size: 5.9rem;
  font-weight: bold;
  line-height: 1;
}

.event-month-year {
  font-size: 1.5rem;
}

.meeting-name {
  font-size: 20px;
  margin: 10px 0;
}

.blurb {
  display: none;
  font-size: 1.5rem;
  margin-top: 10px;
  color: #fff;
}

.speakers {
  padding-top: 10px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-signup {
  display: none;
  margin-top: 15px;
}

.event-location {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.event-button {
  display: inline-block;
  width: 90%;
  text-align: center;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: solid 1px #fff;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
}
.event-button:hover {
  background-color: #fff;
  color: #0032a0;
}

.thumbnail {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  transition: all 0.3s ease;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #0032a0;
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.pagination-button:hover {
  background-color: #0032a0;
  color: #ddd;
}
.pagination-button.active {
  background-color: #0032a0;
  color: #fff;
  pointer-events: none;
}

#event_head {
  display: flex;
  margin-bottom: 20px;
}
#event_head .left-column {
  width: 40%;
  background-size: cover;
  background-position: center;
  height: 300px;
}
#event_head .right-column {
  width: 60%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1#event-name {
  font-size: 2.9rem;
  color: #0032a0;
}

#event-date {
  font-size: 1.9rem;
  color: #555;
}

.event_detail_info {
  display: flex;
  margin-left: 10%;
  margin-right: 10%;
}
.event_detail_info .left-column {
  width: 40%;
  padding: 20px;
}
.event_detail_info .right-column {
  width: 60%;
  padding: 20px;
}
.event_detail_info .right-column .blurb {
  font-size: 1.4em;
}

.past-event {
  color: red;
}

.future-event {
  color: green;
}

#eventcontact > span {
  font-size: 1.9rem;
}

#contact-location {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: solid 1px #bbbcbc;
}

#event-present {
  font-size: 2.4rem;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: solid 1px #bbbcbc;
}

#contact-name {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}

#event-email {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: solid 1px #bbbcbc;
}
#event-email > a {
  text-decoration: none;
  color: #0032a0;
}

#event-date-time {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #bbbcbc;
  border-top: solid 1px #bbbcbc;
}

.left-column .event_date {
  font-size: 2.2em !important;
  font-weight: 400;
}

.event-blurb {
  font-weight: 400;
  font-size: 1.9rem;
}

.event-hr {
  border: solid 1px;
  background: #0032a0;
}

.event-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0032a0;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}
.event-button:hover {
  color: #fff;
  background-color: #0056b3;
}

.event {
  position: relative !important;
}

.filter-dropdown {
  margin-bottom: 20px;
  width: 300px;
  margin-left: 10px;
}

#filter {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  width: 220px;
}

#filter-label {
  color: #0032a0;
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 10%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 320px;
  position: relative;
  border-radius: 4px;
}
.modal-content h2 {
  font-size: 2.1rem;
  color: #0032a0;
}
.modal-content p {
  font-size: 1.8rem;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.submit-button {
  background-color: #0032a0;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.submit-button:hover {
  background-color: #0056b3;
}

@media (min-width: 1200px) {
  .event {
    flex: 1 1 calc(25% - 20px);
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .event {
    flex: 1 1 calc(33.333% - 20px);
  }
}
@media (max-width: 767px) {
  .event {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .event {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  #event_head {
    flex-direction: column;
  }
  #event_head .left-column,
  #event_head .right-column {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
  }
  #event_head .left-column {
    height: 200px;
  }
  .event_detail_info {
    flex-direction: column;
  }
  .event_detail_info .left-column,
  .event_detail_info .right-column {
    width: 100%;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  h1#event-name {
    font-size: 1.8em;
    color: #0032a0;
  }
  #event_head {
    flex-direction: column;
    margin-bottom: 15px;
  }
  #event_head .left-column {
    height: 150px;
  }
  #event_head .right-column {
    padding: 0px;
    text-align: center;
  }
  .event_detail_info {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .event_detail_info .left-column,
  .event_detail_info .right-column {
    width: 100%;
    padding: 0px;
    margin: 0px;
    text-align: center;
  }
  .event_detail_info .left-column {
    margin-bottom: 15px;
  }
  .event_button {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/*# sourceMappingURL=events.css.map */
