/**
 * 404 Page styles for LeanPress theme
 * @package LeanPress
 */

.error-404-section {
  padding: 4rem 0;
  text-align: center;
}

.error-404-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-title {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--c-primary);
}

.error-subtitle {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin: 0.5rem 0 1.5rem;
}

.error-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: var(--c-text-light);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.error-actions .btn {
  min-width: 200px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.error-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
