/* The shared ST palette, scoped to the editorial card. */
.single-body .aura-family {
  --family-ink: #3a2e28;
  --family-accent: #a94722;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 26px 30px;
  isolation: isolate;
  box-sizing: border-box;
  margin: 40px 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #eed9cc;
  border-radius: 28px;
  background: radial-gradient(ellipse at 100% 0%, #ffe0cf 0%, transparent 65%), #faf6f1;
  box-shadow: 0 12px 36px rgba(58, 46, 40, .055);
  color: var(--family-ink);
  font-family: 'Manrope', sans-serif;
  text-align: left;
  overflow-wrap: anywhere;
}

.single-body .aura-family *,
.single-body .aura-family *::before,
.single-body .aura-family *::after { box-sizing: border-box; }

.single-body .aura-family__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  color: #745346;
}

.single-body .aura-family__brand img {
  display: block;
  flex: 0 0 68px;
  width: 68px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.single-body .aura-family__brand-divider { padding: 0 5px; color: #b48f7d; }

.single-body .aura-family h2.aura-family__title {
  margin: 0 0 15px !important;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: clamp(23px, 2.4vw, 29px) !important;
  font-weight: 800;
  line-height: 1.24 !important;
  letter-spacing: -.035em;
  color: var(--family-ink);
  text-wrap: balance;
}

.single-body .aura-family p.aura-family__text {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #65564f;
}

.single-body .aura-family p.aura-family__format {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 17px 0 0 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  font-weight: 700;
  color: #80533b;
}

.single-body .aura-family__example { align-self: center; min-width: 0; }

.single-body .aura-family p.aura-family__example-label {
  margin: 0 0 12px !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  color: #80695c;
  font-weight: 700;
}

.single-body .aura-family__thought,
.single-body .aura-family__request {
  padding: 15px 17px;
  border-radius: 17px;
  border: 1px solid rgba(173, 120, 86, .13);
}

.single-body .aura-family__thought {
  margin: 0 22px 12px 0;
  background: rgba(255, 255, 255, .55);
  border-bottom-left-radius: 5px;
}

.single-body .aura-family__request {
  margin-left: 12px;
  background: #fff;
  border-bottom-right-radius: 5px;
  box-shadow: 0 6px 18px rgba(92, 59, 36, .04);
}

.single-body .aura-family__caption {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 750;
  color: #7d6658;
}

.single-body .aura-family__request .aura-family__caption { color: var(--family-accent); }

.single-body .aura-family__example p:not(.aura-family__example-label) {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #58463c;
}

.single-body .aura-family__action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 15px 22px;
  border-top: 1px solid #e9dace;
  padding-top: 22px;
}

.single-body .aura-family a.aura-family__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-shrink: 0;
  max-width: 100%;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--family-accent);
  box-shadow: 0 5px 12px rgba(169, 71, 34, .12);
  color: #fff !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
  text-decoration: none !important;
  transition: background-color .18s ease, box-shadow .18s ease;
}

.single-body .aura-family a.aura-family__button:hover {
  background: #8b371a;
  box-shadow: 0 7px 18px rgba(169, 71, 34, .2);
}

.single-body .aura-family a.aura-family__button:focus-visible {
  outline: 3px solid #8b371a;
  outline-offset: 4px;
}

.single-body .aura-family p.aura-family__hint {
  margin: 0 !important;
  max-width: 240px;
  font-size: 11px !important;
  line-height: 1.6 !important;
  color: #796458;
}

@media (max-width: 700px) {
  .single-body .aura-family { grid-template-columns: minmax(0, 1fr); gap: 24px; border-radius: 22px; margin: 30px 0; }
  .single-body .aura-family__brand { margin-bottom: 17px; }
  .single-body .aura-family__action { flex-direction: column; align-items: stretch; gap: 12px; }
  .single-body .aura-family a.aura-family__button { width: 100%; }
  .single-body .aura-family p.aura-family__hint { max-width: none; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .single-body .aura-family a.aura-family__button { transition: none; }
}
