/* ============================================================================
   PUBLIC CONTENT PAGE STYLES
   ============================================================================

   Styles for about.html, faqs.html, gallery.html, policies_index.html,
   policy_detail.html, and site_not_ready.html.
   Built on design-system.css and public/base.css.

   ========================================================================== */

@import url('../design-system.css');

/* ============================================================================
   ABOUT PAGE
   ============================================================================ */

/* Grid with tighter gap for about layout */
.about-grid {
  display: grid;
  gap: 18px;
}

/* Hero image section */
.about-hero-section {
  overflow: hidden;
  padding: 0;
}

.about-hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Body copy text */
.about-body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-primary);
  opacity: 0.95;
  white-space: pre-line;
}

/* ============================================================================
   FAQs PAGE
   ============================================================================ */

.faq-question {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
}

.faq-answer {
  margin-top: 10px;
  color: var(--color-text-secondary);
  white-space: pre-wrap;
  line-height: 1.75;
  font-size: 15px;
}

/* ============================================================================
   GALLERY PAGE
   ============================================================================ */

/* Gallery card — no internal padding, image flush */
.gallery-card {
  padding: 0;
  overflow: hidden;
  background: #fafafa;
}

.gallery-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid var(--color-border-light);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================================================
   POLICIES INDEX
   ============================================================================ */

/* Policy link row — section used as an anchor */
.policy-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.policy-link-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.policy-link-title {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
}

/* ============================================================================
   POLICY DETAIL
   ============================================================================ */

.policy-detail-title {
  font-size: clamp(28px, 4vw, 38px);
}

.policy-detail-body {
  margin-top: 16px;
  color: var(--color-text-primary);
  opacity: 0.95;
  white-space: pre-wrap;
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================================================
   SITE NOT READY
   ============================================================================ */

.not-ready-header {
  max-width: 720px;
  margin: 40px auto 0;
}

.not-ready-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.not-ready-body + .not-ready-body {
  margin-top: 16px;
}

.not-ready-link {
  color: var(--color-text-primary);
  font-weight: 700;
}
