.eyebrow {
  margin-bottom: 15px;
  color: var(--saffron-700);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  overflow: hidden;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  box-shadow: 0 9px 24px rgba(86, 38, 87, .15);
  color: var(--white);
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.button::after {
  content: "→";
  transition: transform .2s var(--ease);
}

button.button::after {
  content: "";
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--deep-plum);
  background: var(--deep-plum);
  box-shadow: 0 13px 30px rgba(86, 38, 87, .22);
  color: var(--white);
}

.button:hover::after {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(0) scale(.98);
}

.button-light {
  border-color: var(--warm-white);
  background: var(--warm-white);
  color: var(--deep-plum);
  box-shadow: none;
}

.button-light:hover {
  border-color: var(--saffron-light);
  background: var(--saffron-light);
  color: var(--ink);
}

.button-outline {
  border-color: rgba(86, 38, 87, .38);
  background: transparent;
  box-shadow: none;
  color: var(--deep-plum);
}

.button-outline:hover {
  border-color: var(--plum);
  background: var(--plum-soft);
  color: var(--deep-plum);
}

.button-small {
  min-height: 43px;
  padding: 0 17px;
  font-size: .77rem;
}

.button-danger {
  border-color: var(--error);
  background: var(--error);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--plum);
  font-size: .85rem;
  font-weight: 850;
}

.text-link::after {
  content: "→";
  transition: transform .2s var(--ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.meta-row span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid rgba(86, 38, 87, .14);
  border-radius: 999px;
  background: rgba(255, 253, 248, .76);
  color: var(--charcoal);
  font-size: .68rem;
  font-weight: 800;
}

.context-note,
.safety-note,
.no-js-content {
  position: relative;
  margin: 30px 0;
  padding: 23px 27px 23px 62px;
  border: 1px solid rgba(47, 112, 109, .18);
  border-radius: var(--radius);
  background: var(--teal-light);
}

.context-note::before,
.safety-note::before {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 25px;
  height: 25px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "i";
  font: 850 .79rem/23px var(--serif);
  text-align: center;
}

.context-note p,
.safety-note p {
  margin: 4px 0;
}

.safety-note {
  border-color: rgba(217, 130, 18, .2);
  background: var(--saffron-wash);
  color: #5d390d;
}

.safety-note::before {
  content: "!";
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  margin: .62em 0;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 19px;
}

.feature-tile {
  position: relative;
  grid-column: span 4;
  min-height: 248px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(86, 38, 87, .03);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.feature-tile::after {
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(194, 154, 82, .38);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(194, 154, 82, .07);
  content: "";
  transition: transform .4s var(--ease);
}

.feature-tile:nth-child(1),
.feature-tile:nth-child(6) {
  grid-column: span 6;
}

.feature-tile p {
  max-width: 44ch;
  color: var(--muted-text);
  font-size: .9rem;
}

.feature-tile b {
  z-index: 1;
  margin-top: auto;
  color: var(--plum);
  font-size: .82rem;
}

.feature-tile:hover {
  transform: translateY(-6px);
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-md);
  color: var(--charcoal);
}

.feature-tile:hover::after {
  transform: scale(1.1) translate(-5px, -5px);
}

.feature-tile small {
  color: var(--saffron-700);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-strip,
.trust-panel {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  padding: 50px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .025), transparent 55%),
    var(--ink);
  color: rgba(255, 253, 248, .8);
}

.trust-strip::after,
.trust-panel::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(194, 154, 82, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(194, 154, 82, .04), 0 0 0 88px rgba(194, 154, 82, .025);
  content: "";
}

.trust-strip h2,
.trust-panel h2,
.trust-strip a,
.trust-panel a {
  color: var(--warm-white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(86, 38, 87, .03), transparent 55%),
    var(--white);
  color: var(--charcoal);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.related-card::after {
  margin-top: auto;
  color: var(--antique-gold);
  content: "Read next  →";
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  color: var(--charcoal);
}

.related-card span {
  color: var(--muted-text);
  font-size: .79rem;
}

.related-card b {
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.25;
}

.topic-links,
.inline-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.topic-links a,
.inline-paths a {
  padding: 8px 13px;
  border: 1px solid rgba(86, 38, 87, .12);
  border-radius: 999px;
  background: var(--plum-soft);
  color: var(--deep-plum);
  font-size: .79rem;
  font-weight: 800;
}

.topic-links a:hover,
.inline-paths a:hover {
  border-color: rgba(217, 130, 18, .35);
  background: var(--saffron-wash);
}

.quick-grid,
.age-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-grid > div,
.age-grid > div {
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .72);
}

.quick-grid small,
.quick-grid strong,
.age-grid b,
.age-grid span {
  display: block;
}

.quick-grid small {
  color: var(--muted-text);
  font-size: .65rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-note {
  color: var(--muted-text);
  font-size: .76rem;
}

.correction-form {
  display: grid;
  gap: 17px;
}

.correction-form label {
  font-weight: 800;
}

.correction-form input,
.correction-form select,
.correction-form textarea {
  display: block;
  width: 100%;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.correction-form textarea {
  min-height: 130px;
}
