#location-section,
#event-section {
  margin: 0 auto;
  text-align: center;
  max-width: 1130px;
  display: block;
  padding: var(--s-40) 0;

  .w-full {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .w-lg {
    max-width: 668px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  h2 {
    margin-bottom: 0px;
  }

  .rte {
    display: flex;
    flex-direction: column;
    gap: 30px;
    p {
      color: var(--cr-eclipse);
      text-align: center;
      font-family: "Graphik", Helvetica, sans-serif;
      font-size: 14.5px;
      font-style: normal;
      font-weight: 400;
      line-height: 19.58px;
      margin-bottom: 0px;
    }
  }
}

#location-section::after {
  content: "";
  display: table;
  clear: both;
}

.location-blocks {
  max-width: 1130px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 80px;
  column-gap: 24px;
  padding: 0px 22px;

  .location {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .location-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .location-address {
    a {
      color: var(--cr-eclipse);
      font-family: "Graphik", Helvetica, sans-serif;
      font-size: 11px;
      font-style: normal;
      font-weight: 400;
      line-height: 140%;
      letter-spacing: 0.33px;
      text-transform: uppercase;
      text-decoration: underline;
      text-underline-offset: 4px;
      margin-top: 8px;
      display: block;
    }
  }

  .hours {
    color: var(--cr-eclipse);
    font-family: "Graphik", Helvetica, sans-serif;
    font-size: 12.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.5px;
  }

  .contact_number {
    color: var(--cr-eclipse);
    font-family: "Graphik", Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 11px;
    letter-spacing: 0.55px;
    text-transform: uppercase;
  }

  .location-image {
    width: 100%;
    aspect-ratio: 553 / 369;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }
}

.mobile-only {
  display: none;
}

#event-section .rte {
  max-width: 580px;
  margin: 0 auto;
}

.event-filters {
  display: flex;
  gap: 30px;
  justify-content: center;
}

#event-blocks {
  .events {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .location-details {
    gap: 32px;
  }
  .event_details {
    color: var(--cr-eclipse);
    font-family: "Graphik", Helvetica, sans-serif;
    font-size: 14.5px;
    font-style: italic;
    font-weight: 400;
    line-height: 19.58px;
    gap: 32px;
    display: flex;
    flex-direction: column;

    span {
      font-size: 12.5px;
      line-height: 17.5px;
    }
  }
}

.evt-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (max-width: 767px) {
  #location-section {
    padding: 32px 20px 0px 20px;

    .w-lg,
    .rte {
      gap: 24px;
    }
  }

  .location-heading {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .location-blocks {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    padding: 0px 22px;
    row-gap: 40px;
  }

  .location-cta a {
    width: 100%;
  }

  .mobile-only {
    display: inline-flex;
    color: var(--cr-eclipse);
    font-family: "Graphik", Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.33px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .location-details.hidden,
  .evt-details.hidden {
    display: none;
  }

  .location.is-open .location-details {
    display: flex;
  }

  .events.is-open .event-details {
    display: flex;
    flex-direction: column;
  }

  #event-section {
    .w-full {
      gap: 24px;
    }
  }
  .event-filters {
    flex-direction: column;
    gap: 8px;
  }
  #event-blocks {
    margin: 0px auto 40px;
  }
}