/* ==========================================================================
   AYOMIDE / PRAISE TECHY - INNER PAGES STYLING (Multi-Page System)
   ========================================================================== */

/* Inner Page Hero Header */
.page-hero {
  padding: 140px 0 60px 0;
  background-color: var(--bg-surface);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(2, 168, 85, 0.12);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 168, 85, 0.15) 0%, rgba(2, 168, 85, 0) 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', var(--font-body), sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-decoration: none;
}

.page-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: var(--btn-primary-bg);
}

.page-breadcrumb-sep {
  opacity: 0.5;
}

.page-title {
  font-family: 'tiemposHeadline', var(--font-serif), Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.page-subtitle {
  font-family: 'DM Sans', var(--font-body), sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 720px;
}

/* Inner Page Layout & Content */
.page-content-wrap {
  padding: 80px 0 100px 0;
  background-color: var(--bg-canvas);
}

/* Page Section Alternating Backgrounds */
.page-section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid rgba(2, 168, 85, 0.12);
  border-bottom: 1px solid rgba(2, 168, 85, 0.12);
}
