/* css/inline-cards.css — Per-card-type styles for v2 inline chat cards.
   Skin tokens ONLY — no hardcoded hex, font names, border radii, or shadow values.
   All colors come from CSS custom properties defined by skin files.
   Wave 5.6 */

/* ── Base card container (shared by all card types) ──
   IMPORTANT: the [class*="__"] exclusion stops this rule from matching
   BEM child classes (e.g. card-submission-confirmation__text). Without
   it, child spans inherit `display:flex; width:100%; padding+border` and
   the text inside them collapses to 1ch wide (wrapping one char per
   line) because of the .message bubble's `word-break: break-word`.
   `:where()` zeroes the exclusion's specificity contribution so the
   per-card rules below (e.g. .card-submission-confirmation setting
   flex-direction: row) still win on tie. Without :where(), the base
   selector specificity is (0,2,0) and beats single-class rules (0,1,0). */
[class^="card-"]:where(:not([class*="__"])),
[class*=" card-"]:where(:not([class*="__"])) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--bubble-radius);
  font-family: var(--font-base);
  color: var(--fg);
  width: 100%;
  box-sizing: border-box;
}

/* ── Attachment chips ── */
.attachment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.attachment-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-base);
  font-size: 0.8125rem;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  max-width: 240px;
  overflow: hidden;
}

.attachment-chip:hover {
  background: var(--bg-elev);
  border-color: var(--accent);
}

.attachment-chip__icon {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.attachment-chip__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── 1. profile_building_card ── */
.card-profile-building__intro {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

.card-profile-building__fields {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-building-field {
  font-size: 0.875rem;
}

.profile-building-field__key {
  font-weight: 600;
}

/* ── 2. profile_card ── */
.card-profile {
  gap: 6px;
  padding: 16px;
}

.profile-card-fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-row {
  display: flex;
  gap: 8px;
  font-size: 0.875rem;
}

.profile-row__label {
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}

.profile-row__val {
  color: var(--fg);
}

/* ── 3. consent_card ── */
.card-consent {
  gap: 10px;
}

.card-consent__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
}

.card-consent__intro {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

.consent-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  cursor: default;
  line-height: 1.4;
}

.consent-item input {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── 4. task_brief_card ── */
.card-task-brief {
  gap: 8px;
}

.card-task-brief__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
}

.card-task-brief__intro {
  font-size: 0.875rem;
  opacity: 0.75;
  margin: 0;
}

.card-task-brief__body {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  white-space: pre-wrap;
}

.card-task-brief__refs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-task-brief__refs-label {
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.75;
}

/* ── 6. submission_card ── */
.card-submission {
  gap: 6px;
}

.card-submission__body {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  white-space: pre-wrap;
}

.card-submission__tool {
  font-size: 0.8125rem;
  opacity: 0.75;
  margin: 0;
}

.card-submission__notes {
  font-size: 0.8125rem;
}

.card-submission__notes-label {
  font-weight: 600;
}

.card-submission__session { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.session-link-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.6rem; border: 1px dashed var(--border);
  border-radius: 999px; width: fit-content; cursor: default; color: inherit; text-decoration: none;
  opacity: 0.9; font-size: 0.85em;
}
.session-link-chip__icon { opacity: 0.7; }
.card-submission__session-caption { font-size: 0.72em; opacity: 0.6; }

/* ── 7. submission_confirmation ── */
.card-submission-confirmation {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.card-submission-confirmation__icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.card-submission-confirmation__text {
  font-size: 0.875rem;
}

/* ── 8. review_status_card (Wave 8 P4.6: ticker + skip-to-email) ── */
.card-review-status {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.card-review-status__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.card-review-status__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-review-status__text {
  font-size: 0.875rem;
  flex: 1;
  min-width: 0;
}

/* Monospace ticker so the digit-width doesn't jitter as HH ticks 00..48. */
.review-ticker {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  /* Reduce the visual weight against the surrounding card body. */
  opacity: 0.85;
  flex-shrink: 0;
}

.review-skip-btn {
  align-self: flex-start;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  font-family: var(--font-base);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.review-skip-btn:hover {
  background: var(--accent);
  color: var(--bg-elev);
}
.review-skip-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── 9. radar_results_card — AI Fluency Score + archetype additions ── */

/* Archetype headline block */
.afs-archetype {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 2px;
}

.afs-archetype__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}

.afs-archetype__identity {
  font-size: 0.875rem;
  color: var(--fg);
  opacity: 0.6;
  line-height: 1.35;
}

/* Score block: small eyebrow label + hero number + tier */
.afs-score-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
  /* The Score is SPARKS-SIX's own output, so it carries the BRAND surface
     (like the badge below it) rather than the AI-tool chat skin. This keeps
     the hero number on-brand AND WCAG-legible: the skin accent on the light
     chat bubble fell below 3:1 (a11y review 2026-06-01). --brand-* are always
     defined on :root, so this holds in the persona demos and the quiz alike. */
  background: var(--brand-raised, transparent);
  color: var(--brand-ink, var(--fg));
  border: 1px solid var(--brand-line, transparent);
  border-radius: 12px;
  padding: 12px 16px;
}

/* /r/ public-view replacement for the hero score block: same branded surface,
   styled as the conversion CTA ("Take it to see YOUR score."). Without this rule
   it rendered as an unstyled <p> - easy to miss on the key share-loop surface. */
.afs-score-public-cta {
  margin: 0 0 8px;
  background: var(--brand-raised, transparent);
  color: var(--brand-accent, var(--accent));
  border: 1px solid var(--brand-line, transparent);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 700;
}

.afs-score-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand-ink, var(--fg));
  opacity: 0.7;
}

.afs-score-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.afs-score {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--brand-accent, var(--accent));
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.afs-tier {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-ink, var(--fg));
  opacity: 0.85;
}

/* Top Spark line */
.afs-top-spark {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  opacity: 0.8;
  margin: 0;
}

/* Mobile touch target */
@media (max-width: 768px) {
  .afs-score {
    font-size: 2.8rem;
  }
}

/* ── 9. radar_results_card ── */
.card-radar-results {
  gap: 10px;
  /* item E: leave room for the fixed top bar when scrollIntoView({block:"start"})
     brings the badge to the top, so the wordmark isn't occluded (esp. on mobile,
     where the demo-open bar is taller). --top-bar-h is kept in sync by _syncTopBarHeight(). */
  scroll-margin-top: var(--top-bar-h, 72px);
}

.card-radar-results__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
}

.radar-svg-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.radar-svg-wrap svg {
  max-width: 100%;
  height: auto;
}

.tier-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-base);
  font-size: 0.75rem;
  cursor: help;
  color: var(--fg);
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Wave 8 P3.6 — ARIA tooltip pattern (replaces title= which is invisible
   to keyboard, mobile touch, and most screen readers). */
.confidence-info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.confidence-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 260px;
  min-width: 200px;
  padding: 8px 10px;
  background: var(--bg-elev);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: normal;
  white-space: normal;
  pointer-events: none;
}

.confidence-tooltip[hidden] {
  display: none;
}

.per-task-feedback {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.per-task-feedback__title {
  font-size: 0.8125rem;
  font-weight: 700;
  opacity: 0.65;
  margin: 0;
}

.per-task-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.per-task-item {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ── 10. email_arrival_card ── */
.card-email-arrival {
  border: 2px solid var(--accent);
  background: var(--bg-elev);
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  animation: email-scale-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes email-scale-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.card-email-arrival__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-email-arrival__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-email-arrival__subject {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
}

.card-email-arrival__preview {
  font-size: 0.875rem;
  opacity: 0.75;
  margin: 0;
}

.card-email-arrival__cta {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--bg-elev);
  border: none;
  border-radius: var(--bubble-radius);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.card-email-arrival__cta:hover {
  opacity: 0.85;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .card-email-arrival {
    animation: none;
  }
  .attachment-chip {
    transition: none;
  }
}

/* ── Badge container inside radar_results_card ── */
.radar-badge-container {
  width: 100%;
}

/* ── Theme picker (badge theme swatches) ──
   Wave 8 P5.6: switched from cramped text pills ("atelier", "stadium"…)
   to 16×16 colored discs in each theme's signature colour. Hover
   tooltip and aria-label still expose the readable theme name; the
   __label span is visually hidden but kept for assistive tech. */
.badge-theme-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 8px 0 4px;
}

.badge-theme-swatch {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  /* Reset button defaults */
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.badge-theme-swatch:hover {
  opacity: 1;
  transform: scale(1.15);
}

.badge-theme-swatch:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.badge-theme-swatch--active {
  opacity: 1;
  /* Inner ring + outer ring marks the active swatch without recolouring
     its core (so the signature colour remains visible). */
  box-shadow:
    inset 0 0 0 2px var(--bg-elev),
    0 0 0 2px var(--accent);
}

/* SR-only label — keep accessible name but no visible text bleed. */
.badge-theme-swatch__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

/* Per-theme signature colours derived from badge-themes.css.
   atelier=amber, stadium=gold, sectors=red-orange,
   editorial=sienna, cyber=magenta→cyan gradient,
   mono=B/W split, brutalist=yellow. */
.badge-theme-swatch[data-theme="atelier"]   { background: #E07A1F; border-color: #8B4A07; }
.badge-theme-swatch[data-theme="stadium"]   { background: #D4AF37; border-color: #8A6914; }
.badge-theme-swatch[data-theme="sectors"]   { background: #C84A2C; border-color: #6F2814; }
.badge-theme-swatch[data-theme="editorial"] { background: #7C3618; border-color: #5C2914; }
.badge-theme-swatch[data-theme="cyber"]     {
  background: linear-gradient(135deg, #FF00C8 0%, #00F0FF 100%);
  border-color: #00F0FF;
}
.badge-theme-swatch[data-theme="mono"]      {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 49%, #000000 51%, #000000 100%);
  border-color: #555555;
}
.badge-theme-swatch[data-theme="brutalist"] { background: #FFD600; border-color: #000000; }

/* ── Share section ── */
.badge-share-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.badge-share-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--fg);
}

.badge-share-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--bubble-radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-base);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.5;
  white-space: nowrap;
}

/* Disabled share buttons (all of them, in this PoC) previously dimmed to
   opacity 0.45 — which on the brutalist/sparks-six yellow-on-white skins read
   as a broken/half-rendered control (~1.x:1 contrast). Replace the opacity dim
   with a SOLID muted treatment at full opacity so the button reads as a
   deliberately-inactive affordance. The static #9a9a9a line is the Safari
   < 16.4 fallback (color-mix shipped Oct 2022); modern engines cascade-override
   with the per-skin oklab mix. The `opacity: 1` overrides the base
   .badge-share-btn opacity:0.5. */
.badge-share-btn[disabled] {
  opacity: 1;
  cursor: not-allowed;
  color: #9a9a9a;
  color: color-mix(in oklab, var(--fg) 42%, var(--bg-elev));
  border-color: color-mix(in oklab, var(--fg) 20%, var(--bg-elev));
}

.badge-share-btn__icon {
  font-size: 0.875rem;
  line-height: 1;
}

/* ── Mobile: enlarge the results-card controls to usable touch targets ──
   WCAG 2.5.5. On mobile (coarse pointer) the 18px theme swatches, the 18px
   tier info "i", and the compact share buttons are well under the 44px
   guidance. Bump them here; desktop keeps the denser layout (these controls
   sit in a tight badge card where 44px discs would overwhelm the design).
   The swatch min is 34px (a small disc grid; 44px would wrap to many rows);
   info + share buttons go the full 44px. align-items:center keeps glyphs
   centred as the boxes grow. */
@media (max-width: 768px) {
  .badge-theme-swatch {
    min-width: 34px;
    min-height: 34px;
  }
  .info-i,
  .confidence-info-btn {
    min-width: 44px;
    min-height: 44px;
  }
  .badge-share-btn {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge-theme-swatch { transition: none; }
  /* Snap-pop on hover would still occur even without transition — neutralize. */
  .badge-theme-swatch:hover { transform: none; }

  /* J.5 — radar breathe/pulse: disable any SVG animation on the badge radar.
     breatheFrom/breatheTo in SVG_THEMES are currently unused (no <animate>
     elements are created), but this guard future-proofs against any SVG
     animate or animateTransform additions. */
  .badge-frame svg,
  .badge-radar-svg *,
  .badge-radar-wrap svg { animation: none !important; }
}

/* ── review_status_card: staged review/score checklist ── */
.review-steps { list-style: none; margin: 0.4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.review-steps__item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85em; opacity: 0.85; }
.review-steps__check { color: var(--accent, #2a8); }

/* ── 10. agent_response (Layer 2: working-AI draft block) ── */
/* Distinct from a chat bubble: bordered panel with a subtle "✦ Drafted with {tool}" header.
   Uses a left accent border to signal AI-authored content; body preserves newlines. */
.card-agent-response {
  border-left: 3px solid var(--accent);
  background: var(--bg-elev);
  gap: 6px;
}

.card-agent-response__head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-agent-response__avatar {
  font-size: 0.875rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

.card-agent-response__tool {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--fg);
}

.card-agent-response__body {
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--fg);
}

/* Mobile: ensure body text doesn't overflow narrow viewports */
@media (max-width: 480px) {
  .card-agent-response {
    padding: 8px 10px;
  }
  .card-agent-response__body {
    font-size: 0.8125rem;
  }
}

/* ── 11. mc_question (Layer 2: Ana's quick quiz) ── */
/* Stem + option list (chosen marked via bullet + weight, NOT colour-only) +
   muted rationale. Mobile-safe. */
.card-mc-question {
  gap: 10px;
}

.card-mc-question__stem {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--fg);
}

.card-mc-question__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-mc-question__option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fg);
  padding: 4px 0;
}

/* The chosen option: bold text + accent-coloured bullet; the ●/○ difference
   is the primary non-colour signal (meets WCAG 1.4.1 non-colour-only). */
.card-mc-question__option--chosen {
  font-weight: 700;
}

.card-mc-question__option--chosen .card-mc-question__bullet {
  color: var(--accent);
}

.card-mc-question__bullet {
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--fg-muted, var(--fg));
  opacity: 0.6;
  /* Align with the first text line */
  margin-top: 0.15em;
}

.card-mc-question__option--chosen .card-mc-question__bullet {
  opacity: 1;
}

.card-mc-question__why {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fg-muted, var(--fg));
  opacity: 0.75;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}

/* Mobile */
@media (max-width: 480px) {
  .card-mc-question {
    padding: 8px 10px;
  }
  .card-mc-question__stem {
    font-size: 0.875rem;
  }
  .card-mc-question__option {
    font-size: 0.8125rem;
  }
}

/* Primary share result button (image-first: Web Share API with PNG file, fallback to modal).
   Secondary copy link button (copies the clean /r/ URL to clipboard).
   Introduced Task 7/8. */
.afs-share-result-btn,
.afs-copy-link-btn,
.afs-challenge-btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 18px;
  border-radius: var(--bubble-radius);
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.afs-share-result-btn {
  background: var(--accent);
  color: var(--bg-elev);
  border: none;
}
.afs-copy-link-btn,
.afs-challenge-btn {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  transition: background 0.15s, color 0.15s;
}
.afs-share-result-btn:hover { opacity: 0.85; }
.afs-copy-link-btn:hover,
.afs-challenge-btn:hover { background: var(--accent); color: var(--bg-elev); }
.afs-share-result-btn:focus-visible,
.afs-copy-link-btn:focus-visible,
.afs-challenge-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 768px) {
  .afs-share-result-btn,
  .afs-copy-link-btn,
  .afs-challenge-btn { min-height: 44px; width: 100%; text-align: center; align-self: stretch; }
}
