/* On-page SEO copy for a product category (H2 + paragraphs), above or below the product grid. */
.cat-seo {
    --cat-accent: var(--color-1st, #9b2321);
    max-width: 900px;
}

.cat-seo--above { margin: 0 0 28px; }

/* Below the grid it needs a clear separation from the products. */
.cat-seo--below {
    margin: 40px 0 0;
    padding-top: 28px;
    border-top: 1px solid #e7e9ee;
}

.cat-seo__heading {
    margin: 0 0 14px;
    color: #2c3340;
    font-size: clamp(19px, 1.6vw, 23px);
    font-weight: 700;
    line-height: 1.3;
}

.cat-seo__heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 12px;
    border-radius: 3px;
    background: var(--cat-accent);
}

.cat-seo__text {
    margin: 0 0 12px;
    color: #5a6273;
    font-size: 15px;
    line-height: 1.75;
}

.cat-seo__text:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
    .cat-seo__text { font-size: 14px; }
    .cat-seo--below { margin-top: 28px; padding-top: 20px; }
}
