:root {
    --sw-bg: #f4f1ea;
    --sw-paper: #fffdf8;
    --sw-paper-alt: #faf7f0;
    --sw-border: #d8d0c2;
    --sw-border-soft: #e7dfd2;
    --sw-text: #2d241b;
    --sw-muted: #6f6358;
    --sw-brown: #5a3518;
    --sw-brown-dark: #382110;
    --sw-gold: #f4c150;
    --sw-link: #00635d;
    --sw-link-hover: #004f49;
    --sw-shadow: 0 2px 10px rgba(56, 33, 16, 0.08);
    --sw-radius: 8px;
    --sw-serif: Georgia, "Times New Roman", serif;
    --sw-sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--sw-bg);
    color: var(--sw-text);
    font-family: var(--sw-sans);
    font-size: 16px;
    line-height: 1.55;
}

a {
    color: var(--sw-link);
    text-decoration: none;
}

a:hover {
    color: var(--sw-link-hover);
    text-decoration: underline;
}

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

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.sw-topbar {
    background: var(--sw-brown-dark);
    color: #fff;
    border-bottom: 3px solid var(--sw-brown);
}

.sw-topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.sw-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.sw-brand a {
    color: #fff;
    text-decoration: none;
}

.sw-site-title {
    margin: 0;
    font-family: var(--sw-serif);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.sw-site-description {
    margin: 3px 0 0;
    color: #d6c8b8;
    font-size: 13px;
}

.sw-main-menu {
    margin-left: auto;
}

.sw-main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.sw-main-menu a {
    color: #f8f1e8;
    font-size: 14px;
    font-weight: 700;
}

.sw-searchbar {
    background: #e8dfd2;
    border-bottom: 1px solid var(--sw-border);
}

.sw-searchbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 18px;
}

.sw-searchbar form {
    display: flex;
    gap: 8px;
}

.sw-searchbar input[type="search"],
.search-field {
    width: 100%;
    border: 1px solid var(--sw-border);
    border-radius: 4px;
    padding: 10px 12px;
    background: #fff;
    color: var(--sw-text);
}

.sw-searchbar input[type="submit"],
.search-submit,
button,
input[type="submit"] {
    border: 1px solid #7b4d25;
    border-radius: 4px;
    background: #8b5a2b;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
}

.sw-searchbar input[type="submit"]:hover,
.search-submit:hover,
button:hover,
input[type="submit"]:hover {
    background: #70451f;
}

.sw-layout {
    max-width: 1240px;
    margin: 24px auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
}

.sw-content,
.sw-sidebar {
    min-width: 0;
}

.sw-widget,
.sw-panel,
.sw-card,
.sw-single,
.sw-page,
.sw-archive-header {
    background: var(--sw-paper);
    border: 1px solid var(--sw-border-soft);
    border-radius: var(--sw-radius);
    box-shadow: var(--sw-shadow);
}

.sw-widget {
    padding: 16px;
    margin-bottom: 18px;
}

.sw-widget-title {
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sw-border-soft);
    color: var(--sw-brown-dark);
    font-family: var(--sw-serif);
    font-size: 18px;
}

.sw-widget ul {
    margin: 0;
    padding-left: 18px;
}

.sw-panel {
    padding: 18px;
    margin-bottom: 22px;
}

.sw-section-title {
    margin: 0 0 14px;
    font-family: var(--sw-serif);
    color: var(--sw-brown-dark);
    font-size: 25px;
}

.sw-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    margin-bottom: 18px;
}

.sw-cover {
    display: block;
    background: #d7cabc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(56, 33, 16, 0.22);
    border: 1px solid #c9b9a4;
}

.sw-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.sw-cover-placeholder {
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    color: var(--sw-muted);
    font-family: var(--sw-serif);
    background: linear-gradient(135deg, #efe5d7, #d6c5ad);
}

.sw-card-title {
    margin: 0 0 8px;
    font-family: var(--sw-serif);
    font-size: 24px;
    line-height: 1.18;
}

.sw-card-title a {
    color: var(--sw-brown-dark);
}

.sw-meta {
    color: var(--sw-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.sw-stars {
    color: var(--sw-gold);
    letter-spacing: 1px;
    font-size: 16px;
    margin: 4px 0 8px;
}

.sw-excerpt {
    color: #3b3027;
}

.sw-read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
}

.sw-single,
.sw-page {
    padding: 24px;
}

.sw-single-header {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.sw-single-title,
.sw-page-title,
.sw-archive-title {
    margin: 0 0 10px;
    color: var(--sw-brown-dark);
    font-family: var(--sw-serif);
    font-size: 34px;
    line-height: 1.16;
}

.sw-single-content,
.sw-page-content {
    font-family: var(--sw-serif);
    font-size: 19px;
    line-height: 1.72;
}

.sw-single-content p,
.sw-page-content p {
    margin: 0 0 1.1em;
}

.sw-single-content h2,
.sw-page-content h2,
.sw-single-content h3,
.sw-page-content h3 {
    font-family: var(--sw-serif);
    color: var(--sw-brown-dark);
    line-height: 1.25;
}

.sw-archive-header {
    padding: 18px;
    margin-bottom: 18px;
}

.sw-pagination {
    margin: 24px 0;
    text-align: center;
}

.sw-pagination .page-numbers {
    display: inline-block;
    margin: 0 3px 6px;
    padding: 8px 11px;
    border: 1px solid var(--sw-border);
    background: var(--sw-paper);
    border-radius: 4px;
}

.sw-pagination .current {
    background: var(--sw-brown);
    color: #fff;
}

.sw-footer {
    margin-top: 40px;
    background: #e8dfd2;
    border-top: 1px solid var(--sw-border);
    color: var(--sw-muted);
}

.sw-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 18px;
    font-size: 13px;
}

.comment-respond,
.comments-area {
    margin-top: 28px;
}

@media (max-width: 1050px) {
    .sw-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

    .sw-sidebar-left {
        display: none;
    }
}

@media (max-width: 760px) {
    .sw-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .sw-main-menu {
        margin-left: 0;
    }

    .sw-layout {
        display: block;
        margin-top: 16px;
    }

    .sw-sidebar {
        margin-top: 18px;
    }

    .sw-card {
        grid-template-columns: 95px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .sw-card-title {
        font-size: 20px;
    }

    .sw-single-header {
        display: block;
    }

    .sw-single-header .sw-cover {
        max-width: 190px;
        margin-bottom: 18px;
    }

    .sw-single-title,
    .sw-page-title,
    .sw-archive-title {
        font-size: 28px;
    }

    .sw-single,
    .sw-page {
        padding: 18px;
    }

    .sw-single-content,
    .sw-page-content {
        font-size: 17px;
    }
}

/* SpainWars: ajuste del menú superior */
.sw-topbar-inner {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.sw-brand {
    min-width: 0;
}

.sw-logo img {
    max-width: 64px;
    max-height: 64px;
    width: auto;
    height: auto;
    border-radius: 2px;
}

.sw-brand-text {
    min-width: 0;
}

.sw-site-title {
    white-space: nowrap;
}

.sw-main-menu {
    min-width: 0;
    margin-left: 0;
}

.sw-primary-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-primary-menu > li {
    margin: 0;
    padding: 0;
}

.sw-primary-menu > li > a {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    color: #f8f1e8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.sw-primary-menu > li > a:hover,
.sw-primary-menu > li.current-menu-item > a,
.sw-primary-menu > li.current_page_item > a {
    color: #382110;
    background: #f4f1ea;
    border-color: #f4f1ea;
    text-decoration: none;
}

@media (max-width: 920px) {
    .sw-topbar-inner {
        display: block;
    }

    .sw-brand {
        margin-bottom: 14px;
    }

    .sw-primary-menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .sw-primary-menu > li > a {
        font-size: 13px;
    }
}

/* SpainWars: menú principal dentro de Explorar */
.sw-explore-widget {
    padding-bottom: 10px;
}

.sw-explore-block {
    margin-bottom: 18px;
}

.sw-explore-block:last-child {
    margin-bottom: 0;
}

.sw-explore-subtitle {
    margin: 0 0 8px;
    color: var(--sw-brown-dark);
    font-family: var(--sw-serif);
    font-size: 16px;
    line-height: 1.2;
}

.sw-explore-primary-menu,
.sw-explore-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sw-explore-primary-menu li,
.sw-explore-categories li {
    margin: 0;
    padding: 0;
}

.sw-explore-primary-menu a,
.sw-explore-categories a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(216, 208, 194, 0.55);
    color: var(--sw-link);
    font-size: 15px;
    line-height: 1.25;
}

.sw-explore-primary-menu a:hover,
.sw-explore-categories a:hover {
    color: var(--sw-link-hover);
    text-decoration: none;
    background: rgba(244, 193, 80, 0.12);
}

.sw-explore-categories ul {
    margin: 0 0 0 14px;
    padding: 0;
    list-style: none;
}

.sw-explore-categories ul a {
    font-size: 14px;
}

/* SpainWars: refinado visual de cabecera */
.sw-topbar {
    background: linear-gradient(180deg, #4b2308 0%, #4a2208 100%);
    border-bottom: 4px solid #7a4a21;
}

.sw-topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.sw-brand {
    min-width: 0;
}

.sw-brand-link {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    text-decoration: none;
}

.sw-brand-link:hover {
    text-decoration: none;
    color: #fff;
}

.sw-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.sw-logo img,
.sw-logo .custom-logo {
    display: block;
    width: auto;
    max-width: 108px;
    max-height: 108px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.sw-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sw-site-title {
    display: block;
    margin: 0;
    color: #ffffff;
    font-family: var(--sw-serif);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.sw-site-description {
    display: block;
    margin-top: 6px;
    color: #e8d8c4;
    font-size: 18px;
    line-height: 1.2;
    font-family: var(--sw-serif);
}

.sw-main-menu {
    min-width: 0;
    margin-left: 0;
    align-self: center;
}

.sw-primary-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-primary-menu > li {
    margin: 0;
    padding: 0;
}

.sw-primary-menu > li > a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    color: #f8f1e8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.18s ease;
}

.sw-primary-menu > li > a:hover,
.sw-primary-menu > li.current-menu-item > a,
.sw-primary-menu > li.current_page_item > a {
    color: #382110;
    background: #f4f1ea;
    border-color: #f4f1ea;
    text-decoration: none;
}

@media (max-width: 980px) {
    .sw-topbar-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .sw-brand-link {
        gap: 14px;
    }

    .sw-logo img,
    .sw-logo .custom-logo {
        max-width: 82px;
        max-height: 82px;
    }

    .sw-site-title {
        font-size: 26px;
        white-space: normal;
    }

    .sw-site-description {
        font-size: 16px;
    }

    .sw-primary-menu {
        gap: 8px;
    }

    .sw-primary-menu > li > a {
        padding: 7px 10px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .sw-brand-link {
        align-items: flex-start;
    }

    .sw-logo img,
    .sw-logo .custom-logo {
        max-width: 64px;
        max-height: 64px;
    }

    .sw-site-title {
        font-size: 24px;
    }

    .sw-site-description {
        font-size: 15px;
    }

    .sw-primary-menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }
}

/* SpainWars: cabecera compacta final */
.sw-topbar {
    background: #43200b !important;
    border-bottom: 4px solid #8a592b !important;
}

.sw-header-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 18px !important;
    display: grid !important;
    grid-template-columns: 310px minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: center !important;
    min-height: 126px !important;
}

.sw-brand {
    min-width: 0 !important;
}

.sw-brand-link {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    color: #fff !important;
    text-decoration: none !important;
}

.sw-brand-link:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.sw-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 92px !important;
    width: 92px !important;
    height: 92px !important;
    overflow: hidden !important;
    border-radius: 6px !important;
    background: #1f1b18 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28) !important;
}

.sw-logo img,
.sw-logo .custom-logo,
.custom-logo-link img {
    display: block !important;
    width: 92px !important;
    height: 92px !important;
    max-width: 92px !important;
    max-height: 92px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

.sw-brand-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.sw-site-title {
    display: block !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 29px !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
}

.sw-site-description {
    display: block !important;
    margin-top: 5px !important;
    color: #eadcc9 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
}

.sw-main-menu {
    min-width: 0 !important;
    margin: 0 !important;
    align-self: center !important;
}

.sw-primary-menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.sw-primary-menu > li {
    margin: 0 !important;
    padding: 0 !important;
}

.sw-primary-menu > li > a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 7px 13px !important;
    border-radius: 999px !important;
    color: #f6eadb !important;
    background: rgba(255, 255, 255, 0.075) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

.sw-primary-menu > li > a:hover,
.sw-primary-menu > li.current-menu-item > a,
.sw-primary-menu > li.current_page_item > a {
    color: #382110 !important;
    background: #f4f1ea !important;
    border-color: #f4f1ea !important;
    text-decoration: none !important;
}

.sw-searchbar-inner {
    max-width: 1240px !important;
}

@media (max-width: 980px) {
    .sw-header-shell {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        min-height: auto !important;
        padding: 16px 18px !important;
    }

    .sw-logo,
    .sw-logo img,
    .sw-logo .custom-logo,
    .custom-logo-link img {
        width: 78px !important;
        height: 78px !important;
        max-width: 78px !important;
        max-height: 78px !important;
        flex-basis: 78px !important;
    }

    .sw-site-title {
        font-size: 26px !important;
        white-space: normal !important;
    }

    .sw-primary-menu {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 5px !important;
    }
}

@media (max-width: 640px) {
    .sw-brand-link {
        gap: 12px !important;
    }

    .sw-logo,
    .sw-logo img,
    .sw-logo .custom-logo,
    .custom-logo-link img {
        width: 64px !important;
        height: 64px !important;
        max-width: 64px !important;
        max-height: 64px !important;
        flex-basis: 64px !important;
    }

    .sw-site-title {
        font-size: 23px !important;
    }

    .sw-site-description {
        font-size: 14px !important;
    }
}

/* SpainWars: cabecera compacta sin logo */
.sw-topbar {
    background: #4a2208 !important;
    border-bottom: 3px solid #8a592b !important;
}

.sw-header-shell {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: center !important;
    min-height: 74px !important;
}

.sw-brand,
.sw-brand-no-logo {
    min-width: 0 !important;
}

.sw-brand-link {
    display: block !important;
    color: #fff !important;
    text-decoration: none !important;
}

.sw-brand-link:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.sw-brand-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.sw-site-title {
    display: block !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
}

.sw-site-description {
    display: block !important;
    margin-top: 4px !important;
    color: #eadcc9 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
}

.sw-main-menu {
    min-width: 0 !important;
    margin: 0 !important;
    align-self: center !important;
}

.sw-primary-menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.sw-primary-menu > li {
    margin: 0 !important;
    padding: 0 !important;
}

.sw-primary-menu > li > a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 32px !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    color: #f6eadb !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.sw-primary-menu > li > a:hover,
.sw-primary-menu > li.current-menu-item > a,
.sw-primary-menu > li.current_page_item > a {
    color: #382110 !important;
    background: #f4f1ea !important;
    border-color: #f4f1ea !important;
    text-decoration: none !important;
}

.sw-searchbar-inner {
    max-width: 1240px !important;
}

@media (max-width: 980px) {
    .sw-header-shell {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 12px 18px !important;
        min-height: auto !important;
    }

    .sw-site-title {
        font-size: 22px !important;
        white-space: normal !important;
    }

    .sw-site-description {
        font-size: 13px !important;
    }

    .sw-primary-menu {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
    }
}

@media (max-width: 640px) {
    .sw-site-title {
        font-size: 20px !important;
    }

    .sw-site-description {
        font-size: 12px !important;
    }

    .sw-primary-menu > li > a {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
}

/* SpainWars: cabecera en una línea, marca izquierda y menú derecha */
.sw-header-shell {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 12px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    min-height: 68px !important;
}

.sw-brand {
    flex: 0 0 auto !important;
    min-width: 260px !important;
    max-width: 360px !important;
}

.sw-brand-link {
    display: block !important;
    color: #fff !important;
    text-decoration: none !important;
}

.sw-brand-text {
    display: block !important;
}

.sw-site-title {
    display: block !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 25px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
}

.sw-site-description {
    display: block !important;
    margin-top: 5px !important;
    color: #eadcc9 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
}

.sw-main-menu {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.sw-primary-menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.sw-primary-menu > li > a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 30px !important;
    padding: 6px 11px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

@media (max-width: 900px) {
    .sw-header-shell {
        display: block !important;
        padding: 12px 18px !important;
    }

    .sw-brand {
        min-width: 0 !important;
        max-width: none !important;
        margin-bottom: 10px !important;
    }

    .sw-main-menu {
        display: block !important;
    }

    .sw-primary-menu {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
    }
}
