.trust-page {
  margin-bottom: 8rem;

  /* HERO */
  & .vacancy-hero {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-inverted);

    @media (min-width: 768px) {
      height: 20rem;
      flex-direction: row;
      justify-content: center;
      text-align: left;
    }

    & .trust-logo {
      max-height: 10rem;
      height: auto;
      width: auto;
      object-fit: contain;
      display: block;
    }

    & .header-text {
      font-size: var(--font-size-2xl);
    }
  }

  /* CONTENT */
  & .trust-page-content {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (min-width: 992px) {
      margin-top: 4rem;
    }

    /* HEADER */
    & .trust-header {
      padding-block: 1rem;

      @media (min-width: 768px) {
        padding-block: 2rem;
        padding-inline: 1rem;
      }

      & .establishment-logo {
        max-height: 125px;
        width: auto;
        object-fit: contain;
        display: block;
      }

      & .establishment-name {
        margin-bottom: 1rem;
        text-align: center;

        @media (min-width: 768px) {
          margin-bottom: 0;
        }

        @media (min-width: 992px) {
          text-align: left;
        }
      }

      & .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;

        @media (min-width: 768px) {
          flex-direction: row;
          gap: 2rem;
        }

        @media (min-width: 992px) {
          gap: 3rem;
        }

        @media (min-width: 1200px) {
          gap: 4rem;
        }

        & .actions-wrapper {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1rem;

          @media (min-width: 992px) {
            justify-content: start;
            gap: 2rem;
          }
        }
      }
    }

    & .about-us-heading,
    & .contact-details-heading,
    & .attachments-heading {
      margin-top: 0;
    }

    & .trust-page-bottom-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;

      @media (min-width: 992px) {
        grid-template-columns: 1fr 1fr;
      }
    }
  }
}
