.error-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 6.25rem;
}

.error-page-header {
  margin-bottom: 3.375rem;
}

.error-page-title {
  font-weight: var(--semibold);
  font-size: var(--H4-font-size);
  line-height: var(--H4-line-weight);

  @media (min-width: 992px) {
    font-size: var(--H3-font-size);
    line-height: var(--H3-line-weight);
  }
}

.error-info-text {
  font-weight: var(--regular);
  font-size: var(--Small-Body-font-size);
  line-height: var(--Small-Body-line-weight);

  @media (min-width: 992px) {
    font-size: var(--Body-font-size);
    line-height: var(--Body-line-weight);
  }
}

.lt-error-page {
  max-width: 666px;
  width: 100%;
}

.lt-error-page__articles {
  border-radius: 0.75rem;
  padding: 0.75rem;
  background-color: #fff;
  width: 100%;

  @media (min-width: 768px) {
    padding: 1rem 1.5rem;
  }
}

.suggested-error-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-inline: 1.125rem;
}

.error-page-articles-header {
  font-weight: var(--medium);
  font-size: var(--Body-font-size);
  line-height: var(--Body-line-weight);
  border-bottom: 0.5px solid var(--stonegrey-400);
  padding-bottom: 0.75rem;

  @media (min-width: 992px) {
    font-size: var(--Paragraph-font-size);
    line-height: var(--Paragraph-line-weight);
  }
}

.suggested-articles {
  margin-bottom: 0;
  margin-top: 0.75rem;
  list-style: none;
  padding: 0;
}

.lt-suggested-article {
  padding: 0.5rem;

  &:hover {
    background-color: var(--stonegrey-200);
  }

  a {
    font-weight: var(--regular);
    font-size: var(--Small-Body-font-size);
    line-height: var(--Small-Body-line-weight);
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
}
