/* layout */


#block-views-block-events-content-future-list-block-1 {
  margin-top: 2rem;
}


.events-content-list-item-row {
  margin-bottom: 1rem;
}


.events-content-list-item {
  display: flex;
  row-gap: 0.5rem;
  column-gap: 1rem;
  align-items: start;
  flex-direction: column;
  padding: 0.75rem;
  border-radius: 0.375rem;
  height: 100%;
  border: var(--border-block);
  box-shadow: var(--box-shadow-block);
}


/* img */
.events-content-list-item-image {
}


.events-content-list-item-image img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}


/* link */
.events-content-list-item-link a {
  color: var(--link-topic-color);
  font-weight: 600;
  text-align: start;
  font-size: 1rem;
  text-decoration: none;
  line-height: 150%;
  text-decoration: underline;
}


.events-content-list-item-link:hover a {
  color: #f37032;
}


/* text */
.events-content-list-view-title,
.events-content-future-list-view-title {
  font-size: 25px;
  color: #f26c4f;
  font-weight: bold;
  line-height: 150%;
  margin-bottom: 1rem;
  text-transform: uppercase;
}


.events-content-list-item-location p,
.events-content-list-item-time p,
.events-content-list-item-topic p {
  margin: 0px;
  font-weight: 500;
  line-height: 150%;
}


@media screen and (min-width: 576px) {
  .events-content-list-item-image img {
    width: 250px;
  }


  .events-content-list-item {
    flex-direction: row;
  }
}

