/* ==========================================================================
   ZANTI PHARMACY — ABOUT PAGE STYLES (assets/css/pages/about.css)
   Loaded after style.css. Uses shared design tokens only.
   ========================================================================== */

/* ---- Two-column story split ------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--sp-7);
  align-items: center;
}

.about-copy > p + p {
  margin-top: var(--sp-4);
}

.about-copy .lead {
  margin-top: var(--sp-4);
}

/* Icon checklist used in story + community sections */
.about-check-list {
  list-style: none;
  margin: var(--sp-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--slate);
  font-size: var(--fs-sm);
}

.about-check-list .icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 3px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--brand);
}

.about-check-list strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---- Decorative SVG panel --------------------------------------------- */
.about-art {
  position: relative;
}

.about-art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  box-shadow: var(--shadow-brand);
  padding: var(--sp-5);
  overflow: hidden;
}

.about-art-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.about-art-frame svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Small floating caption chips over the panel */
.about-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.about-chip .icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.about-chip-1 {
  top: 6%;
  left: -14px;
}

.about-chip-2 {
  bottom: 8%;
  right: -12px;
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1023px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .about-art {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .about-chip-1 {
    left: 8px;
  }

  .about-chip-2 {
    right: 8px;
  }
}

@media (max-width: 599px) {
  .about-art-frame {
    padding: var(--sp-4);
  }

  .about-chip {
    font-size: 12px;
    padding: 8px 12px;
  }
}
