#block-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#block-not-found .bread-crumb {
  display: flex;
  align-items: center;
  padding: 18px 0 0 25px;
}

#block-not-found .bread-crumb .ico-right {
  margin: 0 16px;
}

#block-not-found .bread-crumb .bread-crumd_title {
  width: 150px;
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #6C6C6C;
}
#block-not-found .box-text{
  padding: 100px 0;
}

#block-not-found .content-not-found {
  width: 100%;
  text-align: center;
  background: #0000000A;
  display: flex;
  flex-direction: column-reverse;
}

#block-not-found .text-1 {
  color: #333442;
  font-size: 38px;
}

#block-not-found .text-2 {
  color: #333442;
  font-size: 16px;
}

#block-not-found .text-3 {
  color: #333442;
  font-size: 16px;
  margin-bottom: 120px;
}
#block-not-found .related-post__btn-wrap {
  padding-top: 50px;
  margin-bottom: 350px;
}
.related-post__btn-back {
  width: 312px;
  height: 64px;
  color: #fff;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--body-font-family);
  background-color: var(--dark-gray);
  border-radius: 32px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  gap: 32px;
}
.related-post__btn-back:hover {
  transform: scale(1.05);
}

.related-post__btn-back::before {
  position: absolute;
  content: '';
  width: 36px;
  height: 36px;
  top: 14px;
  left: 16px;
  background: url(./../../svg/icon_arrow_left.svg) no-repeat;
  background-position: center;
  background-color: #474855;
  border-radius: 18px;
}

.related-post__btn-back:hover::before {
  transition: transform 0.3s ease;
  transform: translateX(-5px); 
}
#block-not-found .back-home {
  text-align: center;
  font-size: 2.25rem;
  margin-top: 30px;
}

#block-not-found .back-home a {
  border-bottom: 2px solid #000000;
}

#block-not-found .back-home a:hover {
  color: #cb5e59;
}

@media screen and (max-width: 1919px) {
  #block-not-found .text-3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 1366px) {
  #block-not-found .text-1 {
    font-size: 7.125rem;
  }
  #block-not-found .text-3 {
    font-size: 2rem;
  }
  #block-not-found .back-home {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  #block-not-found .content-not-found {
    flex-direction: column;
  }

  #block-not-found .text-1 {
    font-size: 5rem;
  }
  #block-not-found .text-3 {
    font-size: 1.25rem;
  }
  #block-not-found .back-home {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  #block-not-found .text-1 {
    font-size: 4.6875rem;
  }
  #block-not-found .text-3 {
    font-size: 1.25rem;
  }
  #block-not-found .back-home {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 480px) {
  #block-not-found {
    width: 100%;
  }
  #block-not-found .text-1 {
    font-size: 24px;
  }
  #block-not-found .text-3 {
    font-size: 14px;
  }
  #block-not-found .back-home {
    font-size: 1.25rem;
  }
  #block-not-found .related-post__btn-back {
    width: 90%;
  }
}