﻿/* PresentTool™ Storytelling — section: concept (production, v3.7.0)
   ──────────────────────────────────────────────────────────────── */

.story-concept {
  position: relative;
  width: 100%;
  background: var(--pt-surface-1);
  color: var(--pt-text);
  padding: 96px 24px;
}

.concept-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

/* ─── Eyebrow ────────────────────────────────────────────────── */
.concept-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--pt-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--pt-primary);
}
.concept-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pt-primary);
}

/* ─── Title (matches .story-section-title — Source Serif italic) ─ */
.concept-title {
  font-family: var(--pt-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pt-text);
  margin: 0 0 28px;
  text-wrap: balance;
}

/* ─── Body ───────────────────────────────────────────────────── */
.concept-body {
  margin-bottom: 0;
}
.concept-body-p {
  font-family: var(--pt-sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--pt-text);
  margin: 0 0 18px;
  font-weight: 400;
}
.concept-body-p:last-child { margin-bottom: 0; }
.concept-body-p::first-letter {
  /* subtle micro-typographic touch only on first paragraph */
}
.concept-body-p:first-of-type {
  color: var(--pt-text);
}

/* ─── Optional metadata grid ─────────────────────────────────── */
.concept-meta {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--pt-border);
}
.concept-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.concept-meta-label {
  font-family: var(--pt-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pt-text-muted);
  margin: 0;
}
.concept-meta-value {
  font-family: var(--pt-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--pt-text);
  margin: 0;
  font-weight: 500;
}

/* ─── Mobile / responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .story-concept { padding: 64px 22px; }
  .concept-body-p { font-size: 15.5px; line-height: 1.6; }
  .concept-meta {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
    padding-top: 22px;
  }
}

@media (max-width: 480px) {
  .concept-eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }
}
