@layer pages {
  dt, dd {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }

  dt {
    color: #171617;
    margin-bottom: 24px;
  }

  dd {
    color: #575757;
  }

  #hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    div {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 60px;

      h2 {
        margin-bottom: 0;
      }

      h3 {
        font-size: 22px;
        line-height: 30px;
        font-weight: 700;
        width: 300px;
      }

      span {
        color: #575757;
        font-size: 14;
        line-height: 22px;
        font-weight: 500;
      }
    }

    img {
      max-width: 100%;
      border-radius: 16px;
    }
  }

  #description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 70px;

    @media (min-width: 580px) {
      flex-direction: row;
    }

    > div:first-child {

      @media (min-width: 580px) {
        width: 65%;
      }

      h3 {
        font-size: 28px;
        line-height: 39px;
        font-weight: 700;
        margin-bottom: 8px;
      }

      p {
        font-size: 14px;
        line-height: 22px;
        color: #575757;
      }
    }

    > div:last-child {
      display: flex;
      background-color: #E2E1D933;
      padding: 32px;
      border: 1px solid #E2E1D9;
      border-radius: 20px;

      @media (min-width: 580px) {
        width: 35%;
      }

      dl {
        >div {
          &:not(:last-child) {
            margin-bottom: 24px;
          }
        }
      }

      dd {
        color: #575757;
        padding: 4px 12px;
        border: 1px solid #999999;
        border-radius: 90px;
        width: max-content;
        font-weight: 400;
      }
    }
  }

  #details {
    img {
      max-width: 100%;
      margin-bottom: 40px;
      border-radius: 16px;

      &:not(:first-child) {
        margin-top: 72px;
      }
    }
  }

  .data-list {
    > div {
      margin-top: 40px;
    }
  }
}
