.activity-page {
  padding: 1.25rem 0;
  max-width: 90rem;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.5;

  @media (width > 760px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    column-gap: 1.25rem;
    align-items: start;
  }

  @media (width > 1023px) {
    grid-template-columns: auto 29.625rem;
  }

  @media (width > 1199px) {
    column-gap: 2.5rem;
  }

  h1 {
    font-size: 4rem;
  }

  li {
    margin-bottom: 1rem;
  }

  .field__label {
    font-size: 2.5rem;
    font-weight: 750;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--Alias-Secondary-500);

    @media (width > 760px) {
      font-size: 3rem;
    }
  }

  .field--name-field-excerpt {
    margin-bottom: 1.5rem;

    @media (width > 760px) {
      font-size: 1.5rem;
    }
  }

  .col-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .col-2 .field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;

    >* {
      margin: 0;
      padding: 0;
    }

  }
}

.activity-page__main {
  @media (width > 760px) {
    grid-area: 1 / 1 / 2 / 2;
  }
}

.activity-page__footer {
  @media (width > 760px) {
    grid-area: 2 / 1 / 3 / 3;
  }
}

.activity-page__sidebar {
  .field__label {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  @media (width > 760px) {
    grid-area: 1 / 2 / 2 / 3;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
}

.activity-page__main-featured {
  margin-bottom: 3rem;

  .field__label {
    font-size: 1.375rem;
    font-weight: 750;
  }

  .field--label-inline,
  .field--label-visually_hidden {
    .field__item {
      font-size: 1.375rem;
    }
  }
}

.field--name-field-next-default-price {
  display: flex;
  font-weight: 750;
  line-height: 1;
  font-size: 1.375rem;
  gap: 0.5rem;
  align-items: center;
  color: var(--Alias-Secondary-500);
}

.activity-page__main-bottom {
  margin-bottom: 3rem;
}

.activity-page__footer {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 38px 0 rgba(106, 122, 147, 0.24);
  margin-bottom: 3rem;

  @media (width > 760px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    column-gap: 2.5rem;
  }
}

.activity-page__sidebar-top {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 38px 0 rgba(106, 122, 147, 0.24);
  margin-bottom: 1.5rem;

  .price {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.125rem;
  }

  .field--name-field-date {
    margin-bottom: 1.125rem;
  }

  .datetime {
    text-transform: uppercase;
    font-size: 0.875rem;
  }
}

.activity-page__sidebar-bottom {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 38px 0 rgba(106, 122, 147, 0.24);
  margin-bottom: 3rem;
}