:root {
    --wseo-bg: #f7fbff;
    --wseo-surface: #ffffff;
    --wseo-surface-soft: #f0f7ff;
    --wseo-text: #102033;
    --wseo-muted: #5d6b7d;
    --wseo-blue: #1769e0;
    --wseo-blue-dark: #0c3f8f;
    --wseo-blue-soft: #dcedff;
    --wseo-red: #ef3340;
    --wseo-red-dark: #c81f2d;
    --wseo-border: rgba(23, 105, 224, 0.16);
    --wseo-shadow: 0 20px 55px rgba(13, 52, 99, 0.11);
    --wseo-shadow-soft: 0 12px 30px rgba(13, 52, 99, 0.08);
    --wseo-radius: 28px;
    --wseo-radius-sm: 18px;
    --wseo-container: 1180px;
    --wseo-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--wseo-font);
    color: var(--wseo-text);
    background:
        radial-gradient(circle at 10% -10%, rgba(23, 105, 224, 0.12), transparent 32rem),
        radial-gradient(circle at 95% 10%, rgba(47, 150, 255, 0.11), transparent 28rem),
        var(--wseo-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--wseo-blue);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

.wseo-container {
    width: min(calc(100% - 36px), var(--wseo-container));
    margin-inline: auto;
}

.wseo-narrow {
    max-width: 860px;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    top: 16px;
    left: 16px;
    z-index: 10000;
    width: auto;
    height: auto;
    padding: 10px 14px;
    color: #fff;
    background: var(--wseo-blue-dark);
    border-radius: 12px;
    clip: auto;
}

/* Header */
.wseo-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 105, 224, 0.12);
}

.wseo-header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.wseo-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.wseo-logo-wrap .custom-logo-link,
.wseo-brand {
    display: inline-flex;
    align-items: center;
}

.wseo-logo-wrap img {
    max-height: 58px;
    width: auto;
}

.wseo-site-footer .custom-logo,
.wseo-site-footer .wseo-brand img {
    max-height: 72px;
    width: auto;
}

.wseo-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.wseo-menu,
.wseo-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wseo-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.wseo-menu li {
    position: relative;
}

.wseo-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    color: #19324f;
    font-size: 0.96rem;
    font-weight: 750;
    border-radius: 12px;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.wseo-menu a:hover,
.wseo-menu a:focus-visible,
.wseo-menu .current-menu-item > a,
.wseo-menu .current_page_item > a {
    color: var(--wseo-blue-dark);
    background: var(--wseo-blue-soft);
}

.wseo-menu .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 18px;
    box-shadow: var(--wseo-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.wseo-menu li:hover > .sub-menu,
.wseo-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wseo-menu .sub-menu a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.wseo-header-cta,
.wseo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--wseo-blue), var(--wseo-blue-dark));
    box-shadow: 0 14px 28px rgba(23, 105, 224, 0.18);
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.wseo-header-cta:hover,
.wseo-header-cta:focus-visible,
.wseo-button:hover,
.wseo-button:focus-visible {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(23, 105, 224, 0.24);
}

.wseo-button--red,
.wseo-header-cta {
    background: linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
    box-shadow: 0 14px 28px rgba(239, 51, 64, 0.18);
}

.wseo-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 105, 224, 0.18);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(13, 52, 99, 0.08);
    -webkit-tap-highlight-color: transparent;
}

.wseo-menu-toggle:hover,
.wseo-menu-toggle:focus-visible {
    border-color: rgba(23, 105, 224, 0.32);
    box-shadow: 0 10px 22px rgba(13, 52, 99, 0.12);
    outline: none;
}

.wseo-menu-icon {
    position: relative;
    display: block;
    width: 17px;
    height: 13px;
}

.wseo-menu-line,
.wseo-menu-icon::before,
.wseo-menu-icon::after {
    position: absolute;
    left: 50%;
    display: block;
    width: 17px;
    height: 1.6px;
    border-radius: 999px;
    background: var(--wseo-blue-dark);
    transform: translateX(-50%);
    transition: top .18s ease, transform .18s ease, opacity .18s ease;
    content: "";
}

.wseo-menu-icon::before {
    top: 0;
}

.wseo-menu-line {
    top: 5.7px;
}

.wseo-menu-icon::after {
    top: 11.4px;
}

body.wseo-menu-open .wseo-menu-icon::before {
    top: 5.7px;
    transform: translateX(-50%) rotate(45deg);
}

body.wseo-menu-open .wseo-menu-line {
    opacity: 0;
}

body.wseo-menu-open .wseo-menu-icon::after {
    top: 5.7px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Hero */
.wseo-main {
    overflow: hidden;
    background: #fff;
}

.wseo-hero {
    position: relative;
    isolation: isolate;
    padding: 72px 0 58px;
}

.wseo-hero--soft-bg {
    background:
        radial-gradient(circle at 8% 8%, rgba(23, 105, 224, 0.20), transparent 28rem),
        radial-gradient(circle at 92% 0%, rgba(93, 180, 255, 0.22), transparent 30rem),
        linear-gradient(180deg, #e5f5ff 0%, #edf8ff 52%, #d9efff 100%);
}

.wseo-hero--soft-bg + .wseo-section {
    position: relative;
    background: #fff;
    padding-top: 54px;
}

.wseo-category-strip {
    background: #fff;
    padding: 26px 0 0;
}

.wseo-category-strip + .wseo-section {
    background: #fff;
    padding-top: 28px;
}

.wseo-category-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.wseo-category-strip__label {
    color: var(--wseo-blue-dark);
    font-size: .92rem;
    font-weight: 900;
}

.wseo-category-strip .wseo-chips {
    margin-top: 0;
}

.wseo-chips--compact {
    gap: 8px;
}

.wseo-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    gap: 38px;
    align-items: center;
}

.wseo-hero-grid--full {
    grid-template-columns: minmax(0, 1fr);
}

.wseo-hero-grid--full .wseo-hero-copy {
    max-width: 980px;
}

.wseo-hero-grid--centered .wseo-hero-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.wseo-hero-grid--centered .wseo-breadcrumbs {
    justify-content: center;
}

.wseo-hero-grid--centered .wseo-hero-text,
.wseo-hero-grid--centered .wseo-hero-subtext {
    margin-left: auto;
    margin-right: auto;
}

.wseo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--wseo-muted);
    font-size: .92rem;
    font-weight: 700;
}

.wseo-breadcrumbs a {
    color: var(--wseo-blue-dark);
}

.wseo-kicker {
    margin: 0 0 12px;
    color: var(--wseo-blue);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.wseo-hero h1,
.wseo-single-hero h1,
.wseo-archive-hero h1 {
    margin: 0;
    color: #0c1f36;
    font-size: clamp(2.45rem, 5vw, 5.6rem);
    line-height: .96;
    letter-spacing: -0.065em;
}

.wseo-hero-text {
    max-width: 790px;
    margin: 24px 0 0;
    color: #24364b;
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    line-height: 1.48;
    font-weight: 650;
}

.wseo-hero-subtext,
.wseo-archive-description,
.wseo-single-excerpt {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--wseo-muted);
    font-size: 1.05rem;
}

.wseo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.wseo-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    color: var(--wseo-blue-dark);
    background: rgba(220, 237, 255, 0.92);
    border: 1px solid rgba(23, 105, 224, 0.18);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
}

.wseo-chip:hover,
.wseo-chip:focus-visible {
    color: #fff;
    background: var(--wseo-blue);
}

.wseo-hero-panel {
    padding: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.95));
    border: 1px solid var(--wseo-border);
    border-radius: var(--wseo-radius);
    box-shadow: var(--wseo-shadow);
}

.wseo-score-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 92% 14%, rgba(255,255,255,.32), transparent 7rem),
        linear-gradient(135deg, var(--wseo-blue), var(--wseo-blue-dark));
    border-radius: 24px;
}

.wseo-score-card::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -26px;
    width: 116px;
    height: 116px;
    border: 18px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.wseo-score-card__label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    color: #eaf4ff;
    background: rgba(255,255,255,.15);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wseo-score-card strong {
    display: block;
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.wseo-score-card p {
    position: relative;
    z-index: 1;
    margin: 15px 0 0;
    color: rgba(255,255,255,.88);
}

.wseo-hero-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.wseo-hero-list li {
    padding: 14px 16px 14px 44px;
    color: #26384f;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(13, 52, 99, 0.06);
    font-weight: 800;
    position: relative;
}

.wseo-hero-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    color: #fff;
    background: var(--wseo-blue);
    border-radius: 50%;
    font-size: .72rem;
}

/* Sections and cards */
.wseo-section {
    padding: 34px 0 68px;
}

.wseo-section-heading {
    display: block;
    margin-bottom: 24px;
}

.wseo-section-heading .wseo-kicker {
    margin-bottom: 8px;
}

.wseo-section-heading--more {
    margin-top: 56px;
}

.wseo-section-heading h2 {
    margin: 0;
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.wseo-latest-grid,
.wseo-post-grid {
    display: grid;
    gap: 22px;
}

.wseo-latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wseo-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wseo-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--wseo-border);
    border-radius: var(--wseo-radius);
    box-shadow: var(--wseo-shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.wseo-card:hover,
.wseo-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(23, 105, 224, 0.32);
    box-shadow: var(--wseo-shadow);
}

.wseo-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(23,105,224,.11), rgba(255,255,255,.9));
}

.wseo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.wseo-card:hover .wseo-card__media img,
.wseo-card:focus-within .wseo-card__media img {
    transform: scale(1.035);
}

.wseo-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    padding: 20px;
    background:
        radial-gradient(circle at 20% 25%, rgba(239, 51, 64, .16), transparent 6rem),
        radial-gradient(circle at 85% 15%, rgba(23, 105, 224, .18), transparent 8rem),
        linear-gradient(135deg, #eef7ff, #fff);
}

.wseo-card__placeholder span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    color: var(--wseo-blue-dark);
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(13,52,99,.08);
    font-weight: 950;
}

.wseo-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.wseo-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--wseo-muted);
    font-size: .82rem;
    font-weight: 800;
}

.wseo-card__category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: var(--wseo-blue-dark);
    background: var(--wseo-blue-soft);
    border-radius: 999px;
}

.wseo-card__category:hover,
.wseo-card__category:focus-visible {
    color: var(--wseo-red-dark);
    background: var(--wseo-red-soft);
}

.wseo-card__title {
    margin: 16px 0 0;
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.wseo-card__title a:hover,
.wseo-card__title a:focus-visible {
    color: var(--wseo-blue-dark);
}

.wseo-card__excerpt {
    margin: 12px 0 0;
    color: var(--wseo-muted);
    font-size: .98rem;
}

.wseo-card__link {
    margin-top: auto;
    padding-top: 18px;
    color: var(--wseo-blue);
    font-weight: 900;
}

.wseo-empty {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: var(--wseo-radius);
    box-shadow: var(--wseo-shadow-soft);
}

.wseo-empty h2 {
    margin-top: 0;
}

/* CTA */
.wseo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 8px 0 76px;
    padding: clamp(26px, 4vw, 42px);
    color: #fff;
    background:
        radial-gradient(circle at 92% 20%, rgba(255,255,255,.2), transparent 12rem),
        linear-gradient(135deg, #0f5ed4, #082d71);
    border-radius: var(--wseo-radius);
    box-shadow: var(--wseo-shadow);
}

.wseo-cta .wseo-kicker,
.wseo-cta p {
    color: rgba(255,255,255,.82);
}

.wseo-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.wseo-cta p:not(.wseo-kicker) {
    max-width: 700px;
    margin: 12px 0 0;
}

.wseo-cta .wseo-button {
    flex: 0 0 auto;
}

.wseo-cta--sidebar {
    display: block;
    margin: 0;
    padding: 24px;
    border-radius: 24px;
}

.wseo-cta--sidebar h2 {
    font-size: 1.35rem;
}

.wseo-cta--sidebar .wseo-button {
    width: 100%;
    margin-top: 18px;
}

/* Single and content */
.wseo-single-hero,
.wseo-archive-hero {
    padding: 58px 0 34px;
}

.wseo-single-meta {
    margin: 22px 0 18px;
}

.wseo-featured-image {
    margin-top: 8px;
}

.wseo-featured-image img {
    width: 100%;
    border-radius: var(--wseo-radius);
    box-shadow: var(--wseo-shadow);
}

.wseo-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    gap: 52px;
    align-items: start;
    padding: 52px 0 70px;
}

.wseo-content {
    min-width: 0;
    color: #24364b;
    font-size: 1.075rem;
}

.wseo-content > *:first-child {
    margin-top: 0;
}

.wseo-content h2,
.wseo-content h3,
.wseo-content h4 {
    color: #0c1f36;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.wseo-content h2 {
    margin: 2.15em 0 .65em;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.wseo-content h3 {
    margin: 1.8em 0 .55em;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.wseo-content p,
.wseo-content ul,
.wseo-content ol {
    margin: 0 0 1.15em;
}

.wseo-content a {
    color: var(--wseo-blue-dark);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.wseo-content blockquote {
    margin: 2em 0;
    padding: 22px 26px;
    background: #fff;
    border-left: 5px solid var(--wseo-blue);
    border-radius: 0 18px 18px 0;
    box-shadow: var(--wseo-shadow-soft);
}

.wseo-content pre,
.wseo-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.wseo-content pre {
    overflow: auto;
    padding: 18px;
    color: #eaf4ff;
    background: #0d1c2f;
    border-radius: 18px;
}

.wseo-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--wseo-shadow-soft);
}

.wseo-content th,
.wseo-content td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--wseo-border);
    text-align: left;
}

.wseo-content th {
    color: #0c1f36;
    background: var(--wseo-blue-soft);
}

.wseo-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 38px;
}

.wseo-post-tags a {
    display: inline-flex;
    padding: 6px 12px;
    color: var(--wseo-blue-dark);
    background: var(--wseo-blue-soft);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
}

.wseo-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.wseo-side-box {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 24px;
    box-shadow: var(--wseo-shadow-soft);
}

.wseo-side-box h2 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.wseo-side-box .wseo-chips {
    margin-top: 12px;
}

.wseo-post-nav {
    padding-bottom: 74px;
}

.wseo-post-nav__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wseo-post-nav a {
    display: block;
    min-height: 110px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 24px;
    box-shadow: var(--wseo-shadow-soft);
}

.wseo-post-nav span {
    display: block;
    color: var(--wseo-muted);
    font-size: .84rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.wseo-post-nav strong {
    display: block;
    margin-top: 8px;
    color: #0c1f36;
    line-height: 1.22;
}

/* Archive, search, pagination */
.wseo-archive-hero {
    background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0));
}

.wseo-search-form {
    display: flex;
    gap: 10px;
    max-width: 640px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 999px;
    box-shadow: var(--wseo-shadow-soft);
}

.wseo-search-form label {
    flex: 1;
}

.wseo-search-field {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 0;
    outline: 0;
    color: var(--wseo-text);
    background: transparent;
}

.wseo-search-form-wrap {
    margin-top: 22px;
}

.wseo-pagination {
    margin-top: 42px;
}

.wseo-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wseo-pagination a,
.wseo-pagination span {
    display: inline-flex;
    min-height: 42px;
    min-width: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 999px;
    font-weight: 850;
}

.wseo-pagination .current {
    color: #fff;
    background: var(--wseo-blue);
}

/* Footer */
.wseo-site-footer {
    padding: 58px 0 28px;
    color: rgba(255,255,255,.82);
    background: #071d3b;
}

.wseo-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .7fr 1fr;
    gap: 42px;
}

.wseo-site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
}

.wseo-site-footer p {
    max-width: 420px;
    margin: 18px 0 0;
}

.wseo-site-footer .wseo-chip {
    color: #eaf4ff;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}

.wseo-footer-menu {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wseo-footer-menu a {
    color: rgba(255,255,255,.82);
    font-weight: 750;
}

.wseo-footer-menu a:hover,
.wseo-footer-menu a:focus-visible,
.wseo-site-footer .wseo-chip:hover,
.wseo-site-footer .wseo-chip:focus-visible {
    color: #fff;
}

.wseo-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.66);
    font-size: .92rem;
}

.wseo-footer-bottom p {
    margin: 0;
}

.wseo-footer-bottom a {
    color: rgba(255,255,255,.82);
    font-weight: 850;
}

/* WordPress basics */
.alignwide {
    max-width: 1040px;
    margin-left: calc((760px - 1040px) / 2);
    margin-right: calc((760px - 1040px) / 2);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.wp-caption,
.gallery-caption {
    max-width: 100%;
}

.bypostauthor {
    display: block;
}

.wseo-footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wseo-footer-cookie {
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}

.wseo-footer-cookie:hover,
.wseo-footer-cookie:focus-visible {
    color: var(--wseo-blue);
    outline: none;
}


/* Pulsante torna su in stile WheelSEO */
.wseo-scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9998;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(239, 51, 64, 0.28);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(239, 51, 64, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.wseo-scroll-top span {
    display: block;
    font-size: 22px;
    font-weight: 850;
    line-height: 1;
    transform: translateY(-1px);
}

.wseo-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wseo-scroll-top:hover,
.wseo-scroll-top:focus-visible {
    color: #ffffff;
    border-color: rgba(239, 51, 64, 0.42);
    background: linear-gradient(135deg, var(--wseo-red-dark), #a81925);
    box-shadow: 0 16px 36px rgba(239, 51, 64, 0.36);
    outline: none;
}

@media (max-width: 640px) {
    .wseo-scroll-top {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .wseo-header-inner {
        min-height: 70px;
        gap: 16px;
    }

    .wseo-logo-wrap img {
        max-height: 46px;
    }

    .wseo-menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .wseo-nav {
        display: block;
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        padding: 14px;
        background: rgba(255,255,255,.98);
        border: 1px solid var(--wseo-border);
        border-radius: 22px;
        box-shadow: var(--wseo-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }

    body.wseo-menu-open .wseo-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .wseo-menu {
        display: grid;
        justify-content: stretch;
        gap: 4px;
    }

    .wseo-menu a {
        width: 100%;
        justify-content: flex-start;
    }

    .wseo-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 4px 0 8px 18px;
        padding: 6px;
    }

    .wseo-header-cta {
        display: none;
    }

    .wseo-hero-grid,
    .wseo-single-layout,
    .wseo-footer-grid {
        grid-template-columns: 1fr;
    }

    .wseo-sidebar {
        position: static;
    }

    .wseo-latest-grid,
    .wseo-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wseo-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .alignwide {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 680px) {
    .wseo-container {
        width: min(calc(100% - 28px), var(--wseo-container));
    }

    .wseo-hero {
        padding: 42px 0 28px;
    }

    .wseo-hero h1,
    .wseo-single-hero h1,
    .wseo-archive-hero h1 {
        letter-spacing: -0.05em;
    }

    .wseo-hero-panel {
        padding: 14px;
        border-radius: 22px;
    }

    .wseo-latest-grid,
    .wseo-post-grid,
    .wseo-post-nav__inner {
        grid-template-columns: 1fr;
    }

    .wseo-section-heading {
        display: block;
    }

    .wseo-card__body {
        padding: 20px;
    }

    .wseo-single-layout {
        padding-top: 34px;
    }

    .wseo-content {
        font-size: 1.02rem;
    }

    .wseo-search-form {
        border-radius: 22px;
        flex-direction: column;
    }

    .wseo-search-form .wseo-button {
        width: 100%;
    }

    .wseo-footer-bottom {
        display: block;
    }

    .wseo-footer-bottom a {
        display: inline-flex;
        margin-top: 12px;
    }
}


/* WheelSEO Blog v1.0.5 - forma corretta del pulsante hamburger mobile */
.wseo-menu-toggle,
button.wseo-menu-toggle,
body .wseo-site-header .wseo-menu-toggle {
    border-radius: 12px !important;
}

/* WheelSEO Blog v1.0.6 - menu desktop allineato verso destra vicino alla CTA */
@media (min-width: 981px) {
    .wseo-nav {
        display: flex;
        justify-content: flex-end;
    }

    .wseo-menu {
        justify-content: flex-end;
    }
}

/* Article table of contents */
.wseo-single-layout--toc {
    grid-template-columns: 190px minmax(0, 650px) 280px;
    gap: 30px;
}

.wseo-toc-desktop {
    position: sticky;
    top: 104px;
    align-self: start;
}

.wseo-toc {
    padding: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--wseo-border);
    border-radius: 22px;
    box-shadow: var(--wseo-shadow-soft);
}

.wseo-toc__title {
    margin: 0;
    color: #0c1f36;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .01em;
}

.wseo-toc-list {
    display: grid;
    gap: 5px;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.wseo-toc__item {
    margin: 0;
    padding: 0;
}

.wseo-toc__item a {
    display: block;
    padding: 8px 10px;
    color: #3d5168;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 750;
    line-height: 1.35;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.wseo-toc__item--h3 a {
    padding-left: 22px;
    color: var(--wseo-muted);
    font-size: .82rem;
    font-weight: 650;
}

.wseo-toc__item a:hover,
.wseo-toc__item a:focus-visible,
.wseo-toc__item a.is-active {
    color: var(--wseo-blue-dark);
    background: var(--wseo-blue-soft);
    outline: none;
}

.wseo-toc__item a:hover,
.wseo-toc__item a:focus-visible {
    transform: translateX(2px);
}

.wseo-toc-mobile {
    display: none;
    margin: 0 0 28px;
    background: #fff;
    border: 1px solid var(--wseo-border);
    border-radius: 20px;
    box-shadow: var(--wseo-shadow-soft);
    overflow: hidden;
}

.wseo-toc-mobile summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 18px;
    color: #0c1f36;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.wseo-toc-mobile summary::-webkit-details-marker {
    display: none;
}

/* WheelSEO Blog v1.0.32 - indice mobile: icona + / - centrata con gradienti interni */
.wseo-toc-mobile summary {
    position: relative;
    padding-right: 58px;
}

.wseo-toc-mobile summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 28px;
    height: 28px;
    display: block;
    background:
        linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
        linear-gradient(#fff, #fff) center / 2px 12px no-repeat,
        linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
    border-radius: 999px;
    transform: translateY(-50%);
    transition: box-shadow .18s ease, transform .18s ease;
    z-index: 1;
}

.wseo-toc-mobile[open] summary::after {
    background:
        linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
        linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
}

.wseo-toc-mobile .wseo-toc-list {
    margin: 0;
    padding: 8px 14px 16px;
    border-top: 1px solid var(--wseo-border);
}

.wseo-content h2[id],
.wseo-content h3[id] {
    scroll-margin-top: 132px;
}

@media (max-width: 980px) {
    .wseo-content h2[id],
    .wseo-content h3[id] {
        scroll-margin-top: 150px;
    }
}


@media (max-width: 980px) {
    .wseo-single-layout--toc {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .wseo-toc-desktop {
        display: none;
    }

    .wseo-toc-mobile {
        display: block;
    }
}


/* WheelSEO Blog v1.0.19 - navbar più coerente con la home WheelSEO */
.wseo-menu a:hover,
.wseo-menu a:focus-visible,
.wseo-menu .current-menu-item > a,
.wseo-menu .current_page_item > a,
.wseo-menu .wseo-blog-current-menu-item > a {
    color: var(--wseo-red-dark);
    background: rgba(239, 51, 64, 0.10);
}

.wseo-mobile-nav-cta {
    display: none;
}

@media (max-width: 980px) {
    .wseo-mobile-nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        margin-top: 10px;
        padding: 0 18px;
        border-radius: 999px;
        color: #fff !important;
        background: linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
        box-shadow: 0 14px 28px rgba(239, 51, 64, 0.18);
        font-weight: 850;
        text-align: center;
    }

    .wseo-mobile-nav-cta:hover,
    .wseo-mobile-nav-cta:focus-visible {
        color: #fff !important;
        transform: translateY(-1px);
        box-shadow: 0 18px 34px rgba(239, 51, 64, 0.24);
        outline: none;
    }
}


/* WheelSEO Blog v1.0.32 - FAQ articolo: icone + / - centrate con gradienti interni */
.wseo-content details:not(.wseo-toc-mobile) {
    margin: 0 0 12px;
    border: 1px solid rgba(23, 105, 224, 0.16);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(13, 52, 99, 0.055);
}

.wseo-content details:not(.wseo-toc-mobile) summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 60px;
    padding: 18px 54px 18px 20px;
    color: #0c1f36;
    cursor: pointer;
    font-weight: 850;
    line-height: 1.35;
    list-style: none;
}

.wseo-content details:not(.wseo-toc-mobile) summary::-webkit-details-marker {
    display: none;
}

.wseo-content details:not(.wseo-toc-mobile) summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 28px;
    height: 28px;
    display: block;
    background:
        linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
        linear-gradient(#fff, #fff) center / 2px 12px no-repeat,
        linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
    border-radius: 999px;
    transform: translateY(-50%);
    transition: box-shadow .18s ease, transform .18s ease;
    z-index: 1;
}

.wseo-content details:not(.wseo-toc-mobile)[open] summary::after {
    background:
        linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
        linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
}

.wseo-content details:not(.wseo-toc-mobile) > :not(summary) {
    margin-left: 20px;
    margin-right: 20px;
}

.wseo-content details:not(.wseo-toc-mobile) > p,
.wseo-content details:not(.wseo-toc-mobile) > div,
.wseo-content details:not(.wseo-toc-mobile) > ul,
.wseo-content details:not(.wseo-toc-mobile) > ol {
    color: var(--wseo-muted);
}

.wseo-content details:not(.wseo-toc-mobile) > p:last-child,
.wseo-content details:not(.wseo-toc-mobile) > div:last-child,
.wseo-content details:not(.wseo-toc-mobile) > ul:last-child,
.wseo-content details:not(.wseo-toc-mobile) > ol:last-child {
    margin-bottom: 20px;
}

.wseo-content .schema-faq,
.wseo-content .wp-block-yoast-faq-block,
.wseo-content .rank-math-list,
.wseo-content .aioseo-faq-block,
.wseo-content .wseo-schema-faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
    margin: 2.2em 0;
}

.wseo-content .schema-faq-section,
.wseo-content .rank-math-list-item,
.wseo-content .aioseo-faq-block .aioseo-faq,
.wseo-content .wseo-schema-faq-item {
    border: 1px solid rgba(23, 105, 224, 0.16);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(13, 52, 99, 0.055);
}

.wseo-content .schema-faq-question,
.wseo-content .rank-math-question,
.wseo-content .aioseo-faq-question,
.wseo-content .wseo-schema-faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 60px;
    margin: 0;
    padding: 18px 54px 18px 20px;
    color: #0c1f36;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: 0;
    text-decoration: none;
}

.wseo-content .schema-faq-question::after,
.wseo-content .rank-math-question::after,
.wseo-content .aioseo-faq-question::after,
.wseo-content .wseo-schema-faq-question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 28px;
    height: 28px;
    display: block;
    background:
        linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
        linear-gradient(#fff, #fff) center / 2px 12px no-repeat,
        linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
    border-radius: 999px;
    transform: translateY(-50%);
    transition: background .18s ease, transform .18s ease;
}

.wseo-content .schema-faq-section.is-open .schema-faq-question::after,
.wseo-content .rank-math-list-item.is-open .rank-math-question::after,
.wseo-content .aioseo-faq.is-open .aioseo-faq-question::after,
.wseo-content .wseo-schema-faq-item.is-open .wseo-schema-faq-question::after {
    content: "";
    background:
        linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
        linear-gradient(135deg, var(--wseo-red), var(--wseo-red-dark));
    transform: translateY(-50%);
}

.wseo-content .schema-faq-question:hover,
.wseo-content .schema-faq-question:focus-visible,
.wseo-content .rank-math-question:hover,
.wseo-content .rank-math-question:focus-visible,
.wseo-content .aioseo-faq-question:hover,
.wseo-content .aioseo-faq-question:focus-visible,
.wseo-content .wseo-schema-faq-question:hover,
.wseo-content .wseo-schema-faq-question:focus-visible {
    color: var(--wseo-red-dark);
    outline: none;
}

.wseo-content .schema-faq-answer,
.wseo-content .rank-math-answer,
.wseo-content .aioseo-faq-answer,
.wseo-content .wseo-schema-faq-answer {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--wseo-muted);
}

.wseo-content .schema-faq-answer p:last-child,
.wseo-content .rank-math-answer p:last-child,
.wseo-content .aioseo-faq-answer p:last-child,
.wseo-content .wseo-schema-faq-answer p:last-child {
    margin-bottom: 0;
}

.wseo-content .schema-faq-section:not(.is-open) .schema-faq-answer,
.wseo-content .rank-math-list-item:not(.is-open) .rank-math-answer,
.wseo-content .aioseo-faq:not(.is-open) .aioseo-faq-answer,
.wseo-content .wseo-schema-faq-item:not(.is-open) .wseo-schema-faq-answer {
    display: none;
}

@media (max-width: 680px) {
    .wseo-content details:not(.wseo-toc-mobile) summary,
    .wseo-content .schema-faq-question,
    .wseo-content .rank-math-question,
    .wseo-content .aioseo-faq-question,
    .wseo-content .wseo-schema-faq-question {
        min-height: 56px;
        padding: 16px 50px 16px 18px;
        font-size: .98rem;
    }

    .wseo-content details:not(.wseo-toc-mobile) summary::after,
    .wseo-content .schema-faq-question::after,
    .wseo-content .rank-math-question::after,
    .wseo-content .aioseo-faq-question::after,
    .wseo-content .wseo-schema-faq-question::after {
        right: 15px;
        width: 26px;
        height: 26px;
    }
}


/* Newsletter unsubscribe page */
.wseo-page-content--compact {
    padding-top: 34px;
    padding-bottom: 28px;
}

.wseo-newsletter-unsubscribe-page .wseo-content > .wp-block-separator:first-child,
.wseo-newsletter-unsubscribe-page .wseo-content > hr:first-child {
    display: none;
}

.wseo-newsletter-unsubscribe-page .wseo-content > *:first-child {
    margin-top: 0;
}

@media (max-width: 780px) {
    .wseo-page-content--compact {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


/* Footer mobile refinement for newsletter/cookie links */
@media (max-width: 640px) {
    .wseo-footer-bottom {
        display: grid;
        gap: 12px;
    }

    .wseo-footer-links {
        display: grid;
        justify-items: start;
        gap: 10px;
        width: 100%;
    }

    .wseo-footer-bottom a,
    .wseo-footer-cookie {
        display: inline-flex;
        align-items: center;
        margin-top: 0;
        line-height: 1.35;
    }
}


/* Footer mobile safe area for floating buttons */
@media (max-width: 640px) {
    .wseo-site-footer {
        padding-bottom: 96px;
    }
}


/* WheelSEO Blog v1.0.41 - riduce lo spazio prima del primo H2 dell'articolo dopo l'indice mobile */
.wseo-content > .wseo-toc-mobile:first-child + h2,
.wseo-content > .wseo-toc-mobile:first-child + .wp-block-heading,
.wseo-content > .wseo-toc-mobile:first-child + h2[id],
.wseo-content > .wseo-toc-mobile:first-child + .wp-block-heading[id] {
    margin-top: 0;
}

@media (max-width: 760px) {
    .wseo-content > .wseo-toc-mobile:first-child + h2,
    .wseo-content > .wseo-toc-mobile:first-child + .wp-block-heading,
    .wseo-content > .wseo-toc-mobile:first-child + h2[id],
    .wseo-content > .wseo-toc-mobile:first-child + .wp-block-heading[id] {
        margin-top: 0.25rem;
    }
}
