

.view-events .view-content h3.field-content a,
.view-news .view-content h3.field-content a {
  color: black;
  font-weight: normal;
}






.paragraph--type--image-gallery .photoswipe-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: var(--grid-gap);

  @media (min-width: 31.25rem) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.card .field {
  margin-block-end: 0;
}

.card .node__title {
  margin-block: 0;
}


.card {
  & .node__title {
    margin-block: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
  }

  & .node__meta {
    margin-block-end: 0.5rem;
  }

  & .lead {
    font-size: 1rem;
    font-weight: normal;
  }
}


.node__content .paragraph {
  padding-block-end: 1rem;
  border-block-end: 1px solid;
}

.event-info {
  /*display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;*/
}

.event-place {
  display: block;
  width: fit-content;
  padding-block: 6px;
  padding-inline: 6px;
  border: 2px solid;
  font-size: 14px;
  font-weight: bold;

  &:hover {
    background-color: aqua;
  }

  & a {
    color: black;
    text-decoration: none;
  }
}

.event-date {
  margin-block-end: 16px;
  font-size: 15px;
  font-weight: bold;
}


.more-info {
  & a {
    display: inline-flex;
    align-items: center;
    color: black;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    transition: all 150ms ease-in-out;

    &::after {
      content: "";
      width: 10px;
      height: 14px;
      margin-top: 1px;
      margin-left: 8px;
      background-color: black;
      mask-image: url("data:image/svg+xml,%3Csvg width='10' height='14' viewBox='0 0 10 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.90625 7.53125L2.84375 13.625C2.53125 13.9062 2.0625 13.9062 1.78125 13.625L1.0625 12.9062C0.78125 12.625 0.78125 12.1562 1.0625 11.8438L5.875 7L1.0625 2.1875C0.78125 1.875 0.78125 1.40625 1.0625 1.125L1.78125 0.40625C2.0625 0.125 2.53125 0.125 2.84375 0.40625L8.90625 6.5C9.1875 6.78125 9.1875 7.25 8.90625 7.53125Z' fill='black'/%3E%3C/svg%3E%0A");
      transition: all 150ms ease-in-out;
    }

    &:is(:hover)::after {
      margin-inline-start: 30px;
    }
  }
}



.more-info {
  height: fit-content;
  padding-block-start: 12px;
  border-block-start: 1px solid;
}

.event-info {
  margin-block-start: auto;
}


.field--name-field-image-column {
  @media (min-width: 1000px) {
    position: relative;

    & img {
      max-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
  }
}

.region--content {
  display: block;
}

.node__content {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-gap: var(--grid-gap);

  & > div {
    grid-column: 1 / -1;
  }
}
