/**
 * Rise 360 Theme - Main Styles
 * Minimal base styles to support Rise blocks
 */

/* ===== BASE LAYOUT ===== */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  margin: 0;
}

body {
  font-family: var(--rise-font-family, var(--font-family-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif));
  color: #000;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

/* ===== RISE CONTENT WRAPPER ===== */
.page__content-container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0;
}

/* ===== TYPOGRAPHY RESET ===== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin: 0;
  line-height: 1.94;
  font-size: 1.7rem;
}

/* ===== UTILITY CLASSES ===== */
.visually-hidden-always {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
