@keyframes rotateSquare {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.intro-pattern-overlay {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, currentColor 20px, currentColor 40px);
    opacity: 0.03;
    top: -20%;
    left: -30%;
    width: 100%;
    height: 100%;
    animation: rotateSquare 20s linear infinite;
}

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

.reel-carousel-marquee__track {
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  min-height: 390px;
}

.reel-carousel-marquee__track::-webkit-scrollbar {
  display: none;
}

button.reel-carousel-marquee__control {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  max-width: 2.75rem;
  max-height: 2.75rem;
  padding: 0;
  line-height: 1;
  aspect-ratio: 1;
  flex-shrink: 0;
  align-self: center;
  box-sizing: border-box;
}

.reel-carousel-marquee__list {
  width: max-content;
  padding-bottom: 4px;
}

.reel-carousel-marquee__slide {
  width: 270px;
}

.reel-carousel-marquee__card {
  height: 390px;
  min-height: 390px;
  flex: 0 0 auto;
}

.reel-carousel-marquee__pager {
  width: 8px;
  height: 8px;
  opacity: 0.4;
  padding: 0;
}

.reel-carousel-marquee__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

/* v28 timeline — connector line width (no BS analog for a fixed-width vertical rule) */
.mailing-timeline__line {
    width: 2px;
}

/* v28 timeline — per-step dot size */
.mailing-timeline__dot {
    width: 0.625rem;
    height: 0.625rem;
}

/* v28 frequency toggle — inactive/active states are handled purely via
   Tailwind utility classes toggled in script.js; nothing color-related lives here. */
.mailing-timeline__toggle-btn {
    cursor: pointer;
    border: 0;
}

