/* Events */

.events {
  background-color: var(--white);
}

.events__cards {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.event {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px 3px rgba(7,76,141,0.35);
  box-shadow: 0 0 5px 3px rgba(7,76,141,0.35);
  transition: 0.3s;
}

.event:hover {
  -webkit-box-shadow: 0 0 5px 3px rgba(7,76,141,0.65);
  box-shadow: 0 0 5px 3px rgba(7,76,141,0.65);
}

.event__content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  flex: 1;
}

.event__image img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .events__button {
    text-align: center;
  }
}