.theme-home-seo-description {
    background: var(--color-white, #fff);
    overflow-anchor: none;
    padding: 64px 0;
}

.theme-home-seo-description__title {
    color: var(--color-heading, #111827);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.25;
    margin: 0 0 24px;
}

.theme-home-seo-description__content {
    color: var(--color-body, #5b6170);
    font-size: 15px;
    line-height: 1.72;
    max-height: 118px;
    overflow: hidden;
    position: relative;
}

.theme-home-seo-description__content::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--color-white, #fff) 88%);
    bottom: 0;
    content: "";
    height: 72px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.theme-home-seo-description__content h2,
.theme-home-seo-description__content h3 {
    color: var(--color-heading, #111827);
    line-height: 1.35;
    margin: 28px 0 12px;
}

.theme-home-seo-description__content h2:first-child,
.theme-home-seo-description__content h3:first-child,
.theme-home-seo-description__content p:first-child {
    margin-top: 0;
}

.theme-home-seo-description__content p,
.theme-home-seo-description__content ul,
.theme-home-seo-description__content ol {
    margin: 0 0 16px;
}

.theme-home-seo-description__inner.is-expanded .theme-home-seo-description__content {
    max-height: none;
}

.theme-home-seo-description__inner.is-expanded .theme-home-seo-description__content::after {
    display: none;
}

.theme-home-seo-description__inner.is-static .theme-home-seo-description__content::after {
    display: none;
}

.theme-home-seo-description__actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.theme-home-seo-description__toggle {
    align-items: center;
    background: color-mix(in srgb, var(--color-primary, #2463eb) 12%, #fff);
    border: 0;
    border-radius: 999px;
    color: var(--color-heading, #111827);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    gap: 9px;
    min-height: 40px;
    padding: 8px 18px;
    user-select: none;
}

.theme-home-seo-description__toggle i {
    color: var(--color-primary, #2463eb);
    transition: transform .2s ease;
}

.theme-home-seo-description__toggle:focus-visible {
    outline: 2px solid var(--color-primary, #2463eb);
    outline-offset: 3px;
}

.theme-home-seo-description__inner.is-expanded .theme-home-seo-description__toggle i {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .theme-home-seo-description {
        padding: 40px 0;
    }

    .theme-home-seo-description__content {
        font-size: 14px;
        line-height: 1.65;
        max-height: 126px;
    }
}
