/* ============================================================
   404.css — page d'erreur de l'app
   ============================================================ */

.error-404-wrap {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 80px;
  padding: 0 20px;
}

.error-404-wrap .surtitle {
  font-size: 13px;
  color: var(--redlina-graytext-1);
  margin-bottom: 8px;
}

.error-404-wrap h1 {
  margin: 0 0 16px 0;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}

.error-404-wrap .subtitle {
  font-size: 14px;
  color: var(--redlina-black);
  max-width: 400px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

.a-404-home {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border: none;
  border-radius: 12px;
  background: #000;
  color: #F1F1F1;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.a-404-home:hover {
  opacity: 0.8;
}

@media (max-width: 1023px) {
  .error-404-wrap {
    margin-top: 30%;
  }

  .a-404-home {
    display: block;
    width: 100%;
    max-width:250px;
    margin:auto;
    box-sizing: border-box;
  }
}