/* style/original.css */

/* Base styles for the page content, ensuring text color on dark background */
.page-original {
  background-color: var(--site-bg); /* Inherits from shared.css, expected #0A0A0A */
  color: #FFF6D6; /* Main text color for dark backgrounds */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Section padding and max-width */
.page-original__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Headings */
.page-original__section-title {
  color: #F2C14E; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 42px); /* H2 font size constraint */
  font-weight: 700;
  line-height: 1.2;
}

.page-original__section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  color: #FFF6D6;
}