body {
  padding-bottom: 196px;
}

.story-cta-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(310px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
}

.story-cta {
  width: 100%;
  min-height: 76px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border: 2px solid #f9df8b;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(24, 60, 59, .3);
  transition: transform .18s ease, box-shadow .18s ease;
}

.story-cta:not(.story-cta-bible) {
  background: #d2b48c;
  border-color: #b58c61;
  color: #3b291c;
}

.story-cta:not(.story-cta-bible) strong,
.story-cta:not(.story-cta-bible) .story-cta-arrow {
  color: #3b291c;
}

.story-cta-bible {
  border-color: #f7c96a;
  background: #713b28;
}

.story-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(24, 60, 59, .38);
}

.story-cta-icon {
  font-size: 1.55rem;
}

.story-cta strong,
.story-cta small {
  display: block;
}

.story-cta strong {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .13em;
}

.story-cta small {
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.25;
}

.story-cta-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 700px) {
  body {
    padding-bottom: 176px;
  }

  .story-cta-stack {
    right: 10px;
    bottom: 10px;
    width: min(285px, calc(100vw - 20px));
    gap: 8px;
  }

  .story-cta {
    min-height: 68px;
    padding: 9px 11px;
  }

  .story-cta-icon {
    font-size: 1.35rem;
  }

  .story-cta small {
    font-size: .74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-cta {
    transition: none;
  }
}
