/* Auxiliary Pages Styles */

.page-main {
  min-height: calc(100vh - 200px);
}

.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-deep-navy) 100%);
  color: var(--color-bg);
  padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 6) 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bg);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.page-subtitle {
  font-size: 18px;
  color: var(--color-slate-lighter);
  line-height: 1.5;
}

.page-content {
  padding: calc(var(--spacing-unit) * 8) 0;
  background-color: var(--color-bg);
}

.content-block {
  max-width: 800px;
  margin: 0 auto calc(var(--spacing-unit) * 6) auto;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.2;
  text-align: left;
}

.content-block p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.empty-notice {
  text-align: center;
  font-style: italic;
  color: var(--color-slate-light);
  padding: calc(var(--spacing-unit) * 8) 0;
}

/* Content Layout Variations */
.content-center {
  text-align: center;
}

.content-center h2 {
  text-align: center;
}

.content-with-image {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
}

.content-with-image.reverse {
  direction: rtl;
}

.content-with-image.reverse > * {
  direction: ltr;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--spacing-unit) * 1);
}

.content-with-illustration {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
}

.illustration-svg {
  width: 100%;
}

.illustration-svg svg {
  width: 100%;
  height: auto;
  border-radius: calc(var(--spacing-unit) * 1);
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .content-block h2 {
    font-size: 24px;
  }

  .content-with-image,
  .content-with-illustration {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 4);
  }

  .content-with-image.reverse {
    direction: ltr;
  }
}
