/* ─── Buttons ─── */
.btn-primary {
  padding: 14px 22px;
  background: var(--clr-accent);
  color: var(--clr-text);
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  padding: 14px 22px;
  background: transparent;
  color: var(--clr-cream);
  border: 1.5px solid var(--clr-cream);
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(245, 236, 217, 0.18);
}

.btn-sm {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-prayer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 22px;
  background: var(--clr-accent);
  color: var(--clr-text);
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-prayer:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-view-all {
  align-self: flex-end;
  margin-top: 4px;
  padding: 8px 18px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* ─── Section headings ─── */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.section-heading .rule {
  width: 46px;
  height: 1px;
  background: var(--clr-accent);
  flex-shrink: 0;
}
.section-heading .label {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--clr-cream);
}

.section-title-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-title-sm .rule {
  width: 38px;
  height: 1px;
  background: var(--clr-accent);
  flex-shrink: 0;
}
.section-title-sm .label {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--clr-primary);
}
