/* ===============================
   Bidarija – About Page (TQP Style)
   Uses theme.css variables
   =============================== */

.about-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--bg);
  color: var(--text);
}

.about-container {
  max-width: 680px;
  width: 100%;
}

.about-container h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.about-container p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  color: var(--text);
}

.about-container p.about-closing {
  margin-top: 2.2rem;
  font-style: italic;
}

.about-signature {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-signature strong {
  font-weight: 600;
}

.about-signature span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ===============================
   Mobile
   =============================== */

@media (max-width: 600px) {
  .about-page {
    padding: 3rem 1.2rem;
  }

  .about-container h1 {
    font-size: 1.7rem;
  }
}
