/* css/magazine.css */
body { background-color: var(--bg-main); color: var(--text-main); }
.article-container { max-width: 700px; margin: 0 auto; padding: 20px; }

.article-content h2 { line-height: 1.4; }
.article-content p { font-size: 16px; line-height: 1.6; }


.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px; /* Wide on PC */
  padding: 16px;
  margin: 30px 0 20px 0;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.3);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}
