.novaseo-breadcrumb,
.novaseo-toc {
    --nova-blue: #2ea8ff;
    --nova-violet: #7a4dff;
    --nova-pink: #e344ff;
    --nova-ink: #101426;
    --nova-muted: rgba(16, 20, 38, 0.58);
    box-sizing: border-box;
}

.novaseo-breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--nova-muted);
    font: 800 0.78rem/1.2 "Montserrat", "Segoe UI", sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.novaseo-breadcrumb a {
    color: var(--nova-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.novaseo-breadcrumb a:hover,
.novaseo-breadcrumb span[aria-current="page"] {
    color: var(--nova-ink);
}

.novaseo-breadcrumb__sep {
    color: rgba(16, 20, 38, 0.28);
}

.novaseo-toc {
    width: 100%;
    max-width: none;
    margin: 0 0 42px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(46, 168, 255, 0.16);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 15%, rgba(46, 168, 255, 0.18), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(227, 68, 255, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(46, 168, 255, 0.09), rgba(227, 68, 255, 0.08)),
        rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 55px rgba(46, 168, 255, 0.12);
}

.novareview__body > .novaseo-toc,
.nova-entry-content > .novaseo-toc {
    width: calc(100% + 68px) !important;
    max-width: none !important;
    margin-right: -34px;
    margin-left: -34px;
}

.novaseo-toc__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--nova-ink);
    font: 900 0.88rem/1.2 "Montserrat", "Segoe UI", sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.novaseo-toc__title::before {
    content: "";
    width: 28px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--nova-blue), var(--nova-pink));
}

.novaseo-toc__list {
    display: grid !important;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.novaseo-toc__item {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.novaseo-toc__item--h3 {
    padding-left: 0;
}

.novaseo-toc__item a {
    display: inline-flex !important;
    align-items: baseline;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(16, 20, 38, 0.72);
    font: 850 1rem/1.45 "Montserrat", "Segoe UI", sans-serif;
    text-decoration: none;
    box-shadow: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.novaseo-toc__item a::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nova-blue), var(--nova-pink));
    box-shadow: 0 0 0 5px rgba(46, 168, 255, 0.08);
}

.novaseo-toc__item a:hover {
    color: var(--nova-ink);
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .novaseo-breadcrumb {
        width: min(100% - 22px, 1180px);
        margin-top: 18px;
        font-size: 0.68rem;
    }

    .novaseo-toc {
        padding: 20px;
        border-radius: 22px;
    }

    .novareview__body > .novaseo-toc,
    .nova-entry-content > .novaseo-toc {
        width: calc(100% + 44px) !important;
        margin-right: -22px;
        margin-left: -22px;
    }

    .novaseo-toc__item a {
        justify-content: flex-start;
    }
}
