*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65
}

code, kbd, pre {
    font-family: var(--font-mono)
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    width: 100%
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    backdrop-filter: saturate(180%) blur(10px);
    transition: transform .3s ease;
    box-shadow: var(--shadow-header);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px)
}

.nav-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text);
    white-space: nowrap
}

.nav-logo span {
    color: var(--c-accent)
}

.nav-menu {
    display: flex;
    gap: 0;
    list-style: none
}

.nav-menu a {
    display: block;
    padding: 0 1rem;
    line-height: 58px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-muted);
    transition: color .15s
}

.nav-menu a:hover {
    color: var(--c-accent)
}

.nav-cta {
    background: var(--c-accent);
    color: #fff !important;
    padding: 0 1.1rem;
    border-radius: var(--radius);
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    transition: opacity .15s !important
}

.nav-cta:hover {
    opacity: .85;
    color: #fff !important
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    margin: 5px 0;
    border-radius: 2px;
    transition: .25s
}

@media(max-width:720px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        background: var(--c-white);
        border-bottom: 1px solid var(--c-rule);
        padding: .5rem 0
    }

    .nav-menu.open {
        display: flex
    }

    .nav-menu a {
        line-height: 1;
        padding: .75rem 1.5rem
    }

    .nav-toggle {
        display: block
    }
}

.hero {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-rule);
    padding: 4rem 1.25rem 3.5rem;
    text-align: center
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto
}

.hero-eyebrow {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: .9rem
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--c-text);
    margin-bottom: 1rem
}

.hero-desc {
    font-size: .97rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 2rem
}

.hero-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto 1rem;
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgb(0 0 0 / .06)
}

.hero-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: .75rem 1rem;
    font-family: var(--font-body);
    font-size: .88rem;
    background: var(--c-white);
    color: var(--c-text)
}

.hero-form input::placeholder {
    color: var(--c-muted);
    opacity: .7
}

.hero-form button {
    background: var(--c-accent);
    color: #fff;
    border: none;
    padding: .75rem 1.25rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: opacity .15s;
    white-space: nowrap
}

.hero-form button:hover {
    opacity: .88
}

.hero-note {
    font-size: .7rem;
    color: var(--c-muted)
}

.ad-banner {
    max-width: 840px;
    margin: 2.5rem auto 0;
    padding: 0 1.25rem
}

.ad-banner-label {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-muted);
    opacity: .55;
    text-align: center;
    margin-bottom: .4rem
}

.ad-banner-inner {
    background: var(--c-ad-bg);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center
}

.post-sidebar .toc-box {
    margin-bottom: 0
}

.post-sidebar .ad-banner {
    margin: 0 !important;
    padding: 0 !important
}

.ad-banner-brand {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .2rem
}

.ad-banner-copy {
    font-size: .84rem;
    color: var(--c-muted);
    font-weight: 300
}

.btn-ad {
    background: var(--c-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .55rem 1.25rem;
    cursor: pointer;
    transition: opacity .15s;
    white-space: nowrap
}

.btn-ad:hover {
    opacity: .85
}

.posts-section {
    max-width: 1080px;
    margin: 2.5rem auto 0;
    padding: 0 1.25rem
}

.posts-section-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--c-rule);
    display: flex;
    justify-content: space-between;
    align-items: baseline
}

.posts-section-title a {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--c-accent)
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

.post-header-grid {
    margin-bottom: 20px
}


@media(min-width:901px) {

    .post-header-grid {
        display: flex;
        align-content: center;
        align-items: center;
        gap: 40px;
        margin-bottom: 20px
    }

    form.affiliate-products-filter-form {
        max-width: 250px;
        width: 100%;
    }

    .affiliate-products-widget {
        display: flex;
        gap: 20px;
    }

    .affiliate-products {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media(max-width:900px) {

    .site-footer {
        padding: 0px 20px;
    }

    .footer-menu {
        width: 100%;
    }

    .footer-bottom {
        justify-content: center !important;
        text-align: center;
    }

    .post-body, .content-main {
        order: 2;
    }

    .post-sidebar, .content-sidebar {
        order: 1;
    }

    .posts-grid {
        grid-template-columns: repeat(3, 1fr)
    }


    form.affiliate-products-filter-form {
        width: 100%;
        margin-bottom: 40px;
    }

    .affiliate-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media(max-width:580px) {
    .posts-grid {
        grid-template-columns: repeat(1, 1fr)
    }

    form.affiliate-products-filter-form {
        width: 100%;
        width: 100%;
    }

    .affiliate-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media(max-width:380px) {
    .posts-grid {
        grid-template-columns: 1fr
    }

    form.affiliate-products-filter-form {
        width: 100%;
        width: 100%;
    }

    .affiliate-products {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
}

.post-card {
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s
}

.post-card:hover {
    box-shadow: 0 6px 24px rgb(0 0 0 / .09);
    transform: translateY(-3px)
}

.post-card:hover .card-title {
    color: var(--c-accent)
}

.card-img {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0
}

.card-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover
}

.card-img svg {
    width: 100%;
    height: 100%;
    display: block
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.card-date {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: .45rem
}

.card-title {
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: .5rem;
    transition: color .15s
}

.card-excerpt {
    font-size: .78rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: .7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.card-link {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-top: 12px;
    display: block
}

.card-link:hover {
    opacity: .75
}

.content-section {
    max-width: 1080px;
    margin: 3rem auto 0;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start
}

@media(max-width:780px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

.author-info h1 {
    font-size: 18px !important;
    margin-bottom: 0 !important
}

.content-main h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .75rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--c-rule)
}

.author-page-header .post-desc {
    margin-top: 20px
}

.content-main p {
    font-size: .93rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8;
    margin-bottom: .9rem
}

.content-main table, .post-body table {
    width: 100%;
    margin: 40px 0;
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius)
}

.content-main table tr:last-child td, .post-body table tr:last-child td {
    border: 0
}

.content-main table td, .post-body table td {
    font-size: .93rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8;
    padding: 3px 20px;
    border-bottom: 1px solid var(--c-rule)
}

.content-main h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 1.5rem 0 .55rem
}

.content-main ul {
    padding-left: 1.3rem;
    margin-bottom: .9rem
}

.content-main li {
    font-size: .93rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8;
    margin-bottom: .25rem
}

.toc-box {
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem;
    margin-bottom: 1.75rem
}

.toc-box-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: .85rem
}

.toc-box ol ol {
    overflow: unset;
    padding-left: 10px
}

.toc-box ol {
    padding-left: 14px;
    margin: 0;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden
}

.toc-box li {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.5;
    margin-bottom: .45rem
}

.toc-box a {
    color: var(--c-muted);
    transition: color .15s
}

.toc-box a:hover {
    color: var(--c-accent)
}

.content-sidebar {
    position: sticky;
    top: 74px;
    display: flex;
    flex-direction: column
}

@media(max-width:780px) {
    .content-sidebar {
        position: static
    }
}

.sidebar-widget {
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden
}

.widget-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-accent);
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--c-rule);
    background: var(--c-bg)
}

.widget-body {
    padding: 1.1rem
}

.widget-body p {
    font-size: .82rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.65;
    margin-bottom: .75rem
}

.sidebar-ad {
    background: var(--c-ad-bg);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    padding: 1.25rem 1.1rem;
    text-align: center
}

.sidebar-ad .ad-label {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-muted);
    opacity: .55;
    display: block;
    margin-bottom: .7rem
}

.sidebar-ad .ad-brand {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .3rem
}

.sidebar-ad .ad-copy {
    font-size: .8rem;
    font-weight: 300;
    color: var(--c-muted);
    margin-bottom: 1rem
}

.breadcrumb-bar {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1rem 1.25rem 0;
    font-size: .72rem;
    color: var(--c-muted);
    display: flex;
    gap: .4rem;
    align-items: center;
    flex-wrap: wrap
}

.breadcrumb-bar a {
    color: var(--c-muted);
    transition: color .15s
}

.breadcrumb-bar a:hover {
    color: var(--c-accent)
}

.breadcrumb-bar .sep {
    opacity: .4
}

.post-header {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2rem 1.25rem 0
}

.post-header h1 {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--c-text);
    margin-bottom: .9rem
}

.post-header .post-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    border-left: 3px solid var(--c-accent);
    padding-left: 1rem
}

.post-meta {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap;
    padding: .9rem 0;
    border-top: 1px solid var(--c-rule);
    border-bottom: 1px solid var(--c-rule)
}

.author-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    flex-shrink: 0
}

.author-avatar img {
    border-radius: 50%
}

.author-info .name {
    font-size: .83rem;
    font-weight: 600;
    color: var(--c-text)
}

.author-info .role {
    font-size: .7rem;
    color: var(--c-muted)
}

.meta-divider {
    width: 1px;
    height: 24px;
    background: var(--c-rule)
}

.meta-item {
    font-size: .72rem;
    color: var(--c-muted)
}

.meta-item strong {
    color: var(--c-text)
}


.post-header-grid .cover-image img {
    border-radius: 8px
}

.post-header-grid .cover-image {
    min-width: 300px;
    max-width: 300px;
    max-height: 300px;
    height: auto;
    margin: 0 auto;
}

.cover-image svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius)
}

.post-layout {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
    align-items: start
}

@media(max-width:860px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

.post-body h2 {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 2.25rem 0 .7rem;
    padding-top: .5rem;
    scroll-margin-top: 75px
}

.post-body h2:first-of-type {
    margin-top: 0
}

.post-body h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 1.5rem 0 .5rem;
    scroll-margin-top: 75px
}

.post-body p {
    font-size: .95rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.85;
    margin-bottom: .9rem
}

.post-body p a, .content-main li a {
    color: var(--c-accent);
    font-weight: 600
}

.post-body strong {
    font-weight: 600
}

.post-body ul, .post-body ol {
    padding-left: 1.4rem;
    margin-bottom: .9rem
}

.post-body li {
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: .25rem
}

.tip-box {
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-left: 3px solid var(--c-accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0
}

.tip-box-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: .35rem
}

.tip-box p {
    margin: 0;
    font-size: .88rem
}

.pullquote {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--c-accent);
    border-top: 2px solid var(--c-accent);
    border-bottom: 2px solid var(--c-accent);
    padding: 1.1rem 0;
    margin: 2rem 0;
    line-height: 1.4
}

.inline-ad {
    margin: 2rem 0
}

.inline-ad-label {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-muted);
    opacity: .55;
    display: block;
    margin-bottom: .4rem
}

.inline-ad-inner {
    background: var(--c-ad-bg);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap
}

.inline-ad-brand {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .2rem
}

.inline-ad-copy {
    font-size: .82rem;
    font-weight: 300;
    color: var(--c-muted)
}

.btn-ad {
    background: var(--c-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .5rem 1.1rem;
    cursor: pointer;
    transition: opacity .15s;
    white-space: nowrap;
    flex-shrink: 0
}

.btn-ad:hover {
    opacity: .85
}

.post-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--c-rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.post-footer-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.author-avatar-lg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0
}

.author-avatar-lg img {
    border-radius: 50%
}

.author-bio-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--c-text)
}

.author-bio-role {
    font-size: .72rem;
    color: var(--c-muted)
}

.share-links {
    display: flex;
    gap: .5rem;
    align-items: center
}

.share-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-right: .25rem
}

.share-btn {
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    padding: .38rem .75rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--c-muted);
    transition: border-color .15s, color .15s;
    cursor: pointer;
    background: none
}

.share-btn:hover {
    border-color: var(--c-accent);
    color: var(--c-accent)
}

.post-sidebar {
    position: sticky;
    top: 74px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

@media(max-width:860px) {
    .post-sidebar {
        position: static
    }
}

.related-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
    border-top: 1px solid var(--c-rule);
    padding-top: 2.5rem
}

.related-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 1.25rem;
    padding-bottom: .7rem;
    border-bottom: 2px solid var(--c-rule)
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

@media(max-width:640px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: .75rem
    }
}

.related-card {
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s
}

.related-card:hover {
    box-shadow: 0 6px 20px rgb(0 0 0 / .08);
    transform: translateY(-3px)
}

.related-card:hover .related-card-title {
    color: var(--c-accent)
}

.related-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0
}

.related-img svg {
    width: 100%;
    height: 100%;
    display: block
}

.related-body {
    padding: .9rem
}

.related-date {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: .4rem
}

.related-card-title {
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: .4rem;
    transition: color .15s
}

.related-excerpt {
    font-size: .78rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.site-footer {
    border-top: 1px solid var(--c-rule);
    background: var(--c-white);
    margin-top: 20px
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem
}

@media(max-width:720px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:420px) {
    .footer-inner {
        grid-template-columns: 1fr
    }
}

.footer-brand-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .5rem
}

.footer-brand-name span {
    color: var(--c-accent)
}

.footer-brand-desc {
    font-size: .8rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.65
}

.footer-col-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: .75rem
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .42rem
}

.footer-links a {
    font-size: .82rem;
    color: var(--c-muted);
    transition: color .15s
}

.footer-links a:hover {
    color: var(--c-accent)
}

.footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .72rem;
    color: var(--c-muted);
    border-top: 1px solid var(--c-rule);
    margin-top: 20px;
}

.footer-bottom a {
    color: var(--c-muted);
    margin-left: 1rem
}

.footer-bottom a:hover {
    color: var(--c-accent)
}

nav.pagination.blog-pagination .btn--primary {
    color: var(--c-accent)
}

button.affiliate-products-page.is-active {
    color: var(--c-accent);
}

nav.pagination.blog-pagination, .affiliate-products-pages {
    display: flex;
    margin-top: 40px;
    gap: 12px;
    justify-content: center;
    font-size: .93rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8;
    align-content: center
}

nav.pagination.blog-pagination a {
    font-size: .93rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8
}

.affiliate-products-pages button {
    font-size: .93rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}


.content-products {
    max-width: 1080px;
    margin: 2.5rem auto 0;
    padding: 0 1.25rem;
}

.affiliate-product .affiliate-product-image-wrap img {
    max-height: 200px;
    height: 100%;
    object-fit: scale-down;
    background-color: white;
}

.affiliate-product-image-wrap {
    display: block;
    max-height: 200px;
    overflow: hidden;
    margin: 20px 0px;
}

.affiliate-product {
    background: #ffffff;
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
    text-align: center;
}

.affiliate-product-price {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--c-text);
    transition: color .15s;
    display: block;
}

.affiliate-price-size {
    border: 1px solid #dedede !important;
    display: block;
    max-width: 110px;
    margin: 0 auto;
    padding: 4px 0px;
    border-radius: var(--radius);
}

.affiliate-product-title {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    padding: 0px 10px;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: .5rem;
    transition: color .15s;
    display: block;
    margin-top: 12px;
    min-height: 30px;
}

.affiliate-product-button {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-top: 12px;
    display: block;
    margin-bottom: 12px;
}

.affiliate-product-size {
    font-size: .78rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

form.affiliate-products-filter-form select {
    width: 100%;
    margin-bottom: 10px;
    background: #ffffff;
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
    padding: 8px 10px;
    min-height: 34px;
}

.affiliate-products-notes-list {
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    margin-bottom: 10px;
    background: #ffffff;
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    transition: box-shadow .2s, transform .2s;
    padding: 8px 10px;
}

.affiliate-products-notes-list label {
    font-family: var(--font-head);
    font-size: .82rem;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: .5rem;
    margin-top: .5rem;
    transition: color .15s;
    display: block;
    text-transform: capitalize;
}

.label-aff {
    font-size: .78rem;
    font-weight: 300;
    color: var(--c-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: .3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.label-aff strong {
    font-weight: 600;
    color: var(--c-text);
}

.affiliate-products-price-range input {
    width: 100%;
}

.affiliate-products-price-labels {
    margin-top: 16px;
}

p.author-bio-short {
    font-size: .72rem;
    color: var(--c-muted);
}

.footer-disclaimer {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0 0px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .72rem;
    color: var(--c-muted);
    text-align: center;
}


.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
}

.cookie-box {
    max-width: 360px;
    padding: 20px;
    background: #fff;
    color: #111;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
}

.cookie-box p {
    font-size: .83rem;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.8;
    margin-bottom: .25rem;
}

.cookie-box h3 {
    margin-top: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.cookie-actions button,
.cookie-options button {
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

#cookie-accept {
    background: #111;
    color: #fff;
}

.cookie-options {
    margin-top: 15px;
}

.cookie-options label {
    display: block;
    margin: 8px 0;
}

.footer-menu li {
    display: inline;
}

.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}