/* Self-contained home-page SEO block. Typography is intentionally scoped to
   .cs2seo so theme heading/card rules cannot make the block oversized. */

.cs2seo,
.cs2seo * {
    box-sizing: border-box;
}

.cs2seo {
    width: 100%;
    margin: 1rem 0 0;
    padding: 1rem 1.125rem;
    overflow: hidden;
    color: var(--text-custom, #b9b9c3);
    background: var(--card, rgba(255, 255, 255, .03));
    border: 1px solid var(--transparent-5-w, rgba(255, 255, 255, .06));
    border-radius: var(--br-16, 16px);
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    text-align: left;
}

.cs2seo .cs2seo__intro,
.cs2seo .cs2seo__grid,
.cs2seo .cs2seo__item,
.cs2seo .cs2seo__links {
    margin: 0;
    padding: 0;
}

.cs2seo .cs2seo__title {
    margin: 0 0 .35rem;
    padding: 0;
    color: var(--text-default, #fff);
    font-family: inherit;
    font-size: clamp(18px, 2.2vw, 23px);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.2;
    text-align: left;
    text-transform: none;
}

.cs2seo .cs2seo__lead,
.cs2seo .cs2seo__item p {
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
}

.cs2seo .cs2seo__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem 1.25rem;
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid var(--transparent-5-w, rgba(255, 255, 255, .06));
}

.cs2seo .cs2seo__subtitle {
    margin: 0 0 .2rem;
    padding: 0;
    color: var(--text-default, #fff);
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.3;
    text-align: left;
    text-transform: none;
}

.cs2seo a {
    color: var(--span, #8b98ff);
    font: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.cs2seo a:hover {
    color: var(--text-default, #fff);
}

.cs2seo a:focus-visible {
    border-radius: 3px;
    outline: 2px solid var(--span, #8b98ff);
    outline-offset: 2px;
}

.cs2seo code {
    padding: .05em .35em;
    color: var(--text-default, #fff);
    background: var(--transparent-5-w, rgba(255, 255, 255, .08));
    border-radius: 5px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .92em;
}

.cs2seo .cs2seo__links {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .9rem;
    margin-top: .75rem;
    padding-top: .65rem;
    border-top: 1px solid var(--transparent-5-w, rgba(255, 255, 255, .06));
}

.cs2seo .cs2seo__links a {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .cs2seo .cs2seo__grid {
        grid-template-columns: 1fr;
        gap: .55rem;
    }
}

@media (max-width: 520px) {
    .cs2seo {
        margin-top: .75rem;
        padding: .85rem;
        font-size: 12.5px;
        line-height: 1.5;
    }

    .cs2seo .cs2seo__title {
        font-size: 18px;
    }

    .cs2seo .cs2seo__links {
        gap: .3rem .7rem;
    }
}
