/* pricing-editorial — display-size price number */
.pricing-editorial__price {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

/* pricing-editorial — section mark decorative size */
.pricing-editorial__section-mark {
    line-height: 1;
    user-select: none;
}

/* pricing-editorial — UA reset ul */
.pricing-editorial__feat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* pricing-editorial — CTA border transition */
.pricing-editorial__cta {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    letter-spacing: 0.1em;
}

/* FAQ v19 — bento grid (featured full-width, then 2 columns on md+) */
.hints-support__bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 56rem;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .hints-support__bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hints-support__cell--featured {
        grid-column: 1 / -1;
    }

    .hints-support__cell--tile {
        min-width: 0;
    }
}

.hints-support__unit--shift:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Lists: avoid d-flex on ul (markers); spacing between items */
.hints-support__answer-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.hints-support__answer-list li + li {
    margin-top: 0.5rem;
}

