.intro-cta-content {
    max-width: 56rem;
}

.tips-numbered__card {
    max-width: 24rem;
}

.tips-numbered__thumb {
    width: 4rem;
    height: 4rem;
}

/* FAQ v15 — CSS flip card mechanics for Bootstrap branch */
.faq-flip__card-outer {
    perspective: 1000px;
    min-height: 12rem;
}

.faq-flip__card-inner {
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.faq-flip__card-outer:hover .faq-flip__card-inner {
    transform: rotateY(180deg);
}

.faq-flip__face {
    backface-visibility: hidden;
}

.faq-flip__face--back {
    transform: rotateY(180deg);
}

.quad-cluster-hero__lead {
  min-height: 420px;
  flex: 2 1 0;
}

.quad-cluster-hero__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quad-cluster-hero__lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quad-cluster-hero__icon-band {
  height: 6rem;
}

.quad-cluster-hero__icon-tile {
  width: 3.5rem;
  height: 3.5rem;
}

.quad-cluster-hero__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* glossary steps — oversized counter ring (layout only) */
.glossary-steps__num {
    width: 3.75rem;
    height: 3.75rem;
    min-width: 3.75rem;
}

/* v22 — terminal cursor blink (no BS/JS analog for @keyframes opacity blink) */
@keyframes mailing-terminal-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.mailing-terminal__cursor {
    display: inline-block;
    width: 0.5rem;
    height: 1.1rem;
    animation: mailing-terminal-blink 1s step-end infinite;
}

