:root {
    --bg: #ffffff;
    --fg: #141414;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f7f8fa;
    --soft-2: #f3f5f8;
    --black: #050505;
    --black-2: #0b0b0b;
    --black-line: #1f1f1f;
    --purple: #8b63f6;
    --purple-dark: #6846d5;
    --purple-soft: #efe9ff;
    --green: #1fa15d;
    --green-soft: #ebf8f0;
    --green-line: #bce5cc;
    --radius: 14px;
    --shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    background: var(--bg);
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--fg);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font-size: 16px;
}

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

button,
input,
select {
    font: inherit;
}

button,
summary,
select {
    cursor: pointer;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.shell {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

.text-small {
    font-size: 13px;
}

.text-muted {
    color: var(--muted);
}

.sr-only {
    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 {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    color: #fff;
    background: var(--purple-dark);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-main {
    flex: 1 0 auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid #bda9ff;
    outline-offset: 3px;
}

/* Header */
.site-header {
    position: relative;
    z-index: 50;
    color: #fff;
    background: var(--black);
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    padding: 14px 0 12px;
}

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

.site-wordmark {
    flex: 0 0 auto;
    min-height: 44px;
    align-items: center;
    color: #fff;
    font-family: inherit;
    font-size: 46px;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.065em;
    white-space: nowrap;
}

.site-wordmark-only,
.site-wordmark-free {
    display: inline-block;
    padding-bottom: 0.06em;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-wordmark-only {
    background-image: linear-gradient(180deg, #8d66ff 0%, #6338e6 100%);
}

.site-wordmark-free {
    margin-left: 0.015em;
    background-image: linear-gradient(180deg, #57efe8 0%, #35cfe5 100%);
}

.site-wordmark:hover,
.site-wordmark:focus-visible {
    filter: brightness(1.08);
}

.site-wordmark--footer {
    min-height: 34px;
    font-size: 32px;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding-left: 0;
    font-size: 17px;
    font-weight: 620;
}

.primary-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: #fff;
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: #ece8ff;
}

.header-actions {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.header-actions > .social-links {
    margin-left: auto;
}

.search-box {
    position: relative;
    display: block;
    width: 220px;
}

.search-box input {
    min-width: 0;
    width: 100%;
    height: 40px;
    padding: 0 44px 0 13px;
    color: #fff;
    background: #0b0b0b;
    border: 1px solid #2b2b2b;
    border-radius: 10px;
    outline: 0;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-box input:focus {
    border-color: #9b7cff;
    box-shadow: 0 0 0 3px rgba(155, 124, 255, 0.18);
}

.search-box input::placeholder {
    color: #9097a5;
}

.search-box button {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #aeb4bf;
    background: transparent;
    border: 0;
    border-radius: 0 10px 10px 0;
}

.search-box button:hover,
.search-box button:focus-visible {
    color: #a98cff;
    background: transparent;
}

.search-box button svg {
    width: 21px;
    height: 21px;
}

.social-links,
.mobile-social-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-link {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    color: #e0e2e7;
    border: 1px solid transparent;
    border-radius: 11px;
}

.social-link svg {
    width: 25px;
    height: 25px;
}

.social-link:hover,
.social-link:focus-visible {
    color: #fff;
    background: #181818;
    border-color: #303030;
}

.mobile-menu-button,
.mobile-navigation {
    display: none;
}

.desktop-category-bar {
    background: var(--black-2);
    border-top: 1px solid var(--black-line);
}

.category-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 48px;
    color: #f3f4f6;
    font-size: 16px;
    font-weight: 580;
}

.category-link,
.category-menu > summary {
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 44px;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 13px;
    font-weight: 700;
}

.category-link:hover,
.category-link:focus-visible,
.category-menu > summary:hover,
.category-menu > summary:focus-visible {
    color: #ece8ff;
}

.category-menu {
    position: relative;
}

.category-menu > summary {
    list-style: none;
}

.category-menu > summary::-webkit-details-marker {
    display: none;
}

.category-menu > summary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.15s ease;
}

.category-menu[open] > summary svg {
    transform: rotate(180deg);
}

.subcategory-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 80;
    display: grid;
    gap: 3px;
    min-width: 220px;
    max-width: calc(100vw - 32px);
    padding: 8px;
    color: #fff;
    background: #111;
    border: 1px solid #292929;
    border-radius: 12px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
}

.subcategory-menu.is-multicolumn {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    min-width: 410px;
}

.subcategory-menu.is-wide {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    width: min(760px, calc(100vw - 32px));
}

.category-nav > .category-menu:first-child .subcategory-menu.is-wide {
    left: 0;
    transform: none;
}

.subcategory-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 9px;
    border-radius: 8px;
    white-space: nowrap;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.subcategory-menu a:hover,
.subcategory-menu a:focus-visible {
    background: #222;
}

.subcategory-menu .subcategory-all {
    color: #d8ceff;
    border-bottom: 1px solid #292929;
    border-radius: 8px 8px 0 0;
}

.subcategory-menu.is-multicolumn .subcategory-all,
.subcategory-menu.is-wide .subcategory-all {
    grid-column: 1 / -1;
}

/* Home and catalog */
.page-section {
    padding: 14px 0 0;
    background: #fff;
}

.section-head,
.weekly-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.page-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.home-intro {
    max-width: 850px;
    margin-top: 10px;
}

.update-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.offer-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: box-shadow 0.16s ease, border-color 0.16s ease;
}

.offer-card:hover {
    border-color: #d3d7df;
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
}

.offer-image-link {
    display: block;
    color: inherit;
}

.offer-visual {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 6 / 5;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfcfe, #f0f3f7);
    border-bottom: 1px solid var(--line);
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-image-fallback {
    display: grid;
    place-items: center;
    width: 72%;
    height: 62%;
    color: #7166d9;
    background: linear-gradient(145deg, #fff, #eeebff);
    border: 1px solid #ded8ff;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(36, 47, 64, 0.08);
    font-size: 26px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.status-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 780;
    border: 1px solid transparent;
    border-radius: 999px;
}

.status-new {
    color: #6a43d9;
    background: var(--purple-soft);
    border-color: #d7c9ff;
}

.status-available {
    color: #177e4b;
    background: var(--green-soft);
    border-color: var(--green-line);
}

.status-available::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 6px;
    background: var(--green);
    border-radius: 50%;
}

.offer-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
}

.offer-content h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.offer-title-link:hover,
.offer-title-link:focus-visible {
    color: var(--purple-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.offer-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    color: var(--muted);
    font-size: 13px;
}

.offer-category-link {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    color: #556277;
}

.offer-category-link:hover,
.offer-category-link:focus-visible {
    color: #111;
    text-decoration: underline;
}

.grid-ad-primary {
    grid-column: 3;
    grid-row: 1;
}

.grid-ad-secondary {
    grid-column: 1;
    grid-row: 2;
}

.section-continuation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 12px 0 22px;
    text-align: right;
}

.section-continuation-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #171717;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.35;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
}

.section-continuation-link:hover,
.section-continuation-link:focus-visible {
    color: var(--purple-dark);
    border-bottom-color: var(--purple-dark);
}

.subscribe-box {
    display: grid;
    grid-template-columns: 1.15fr minmax(300px, 480px);
    align-items: center;
    gap: 18px;
    margin: 26px 0 24px;
    padding: 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.subscribe-copy h2,
.weekly-head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.subscribe-copy p {
    margin: 7px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.subscribe-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.subscribe-form input {
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #d6dbe3;
    border-radius: 10px;
}

.subscribe-form button {
    height: 42px;
    padding: 0 16px;
    color: #fff;
    background: #111;
    border: 1px solid #111;
    border-radius: 10px;
}

.weekly-head {
    margin-top: 6px;
}

.bottom-ad {
    min-height: 100px;
    margin: 18px auto 24px;
}

.managed-content {
    color: var(--muted);
    line-height: 1.7;
}

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

.managed-content > :last-child {
    margin-bottom: 0;
}

.managed-content a {
    color: var(--purple-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-bottom-content {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

/* Catalog */
.catalog-top-ad {
    min-height: 90px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 18px;
    color: var(--muted);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: var(--purple-dark);
}

.catalog-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.catalog-hero > div {
    max-width: 880px;
}

.catalog-hero .managed-content {
    margin-top: 10px;
}



.catalog-grid {
    margin-top: 0;
}

.catalog-empty-state {
    max-width: 780px;
    min-height: 190px;
    padding: 32px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.catalog-empty-state h2 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.2;
}

.catalog-empty-state p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 34px 0 14px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 12px 18px;
    color: #303744;
    background: #fff;
    border: 1px solid #dfe3e9;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.035);
}

.pagination-link:hover,
.pagination-link:focus-visible {
    color: var(--purple-dark);
    background: #faf8ff;
    border-color: #bcaaf6;
}

.pagination-link.is-current {
    color: #fff;
    background: #111;
    border-color: #111;
    box-shadow: 0 7px 16px rgba(17, 17, 17, 0.16);
}

.pagination-next {
    gap: 9px;
    min-width: auto;
    padding-inline: 21px;
}

.pagination-next svg {
    width: 20px;
    height: 20px;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 60px;
    color: #7a8391;
    font-size: 19px;
    font-weight: 700;
}

/* Technical, search and errors */
.search-page,
.technical-page,
.error-page {
    padding: 52px 0 76px;
}

.technical-card h1,
.error-page-inner h1 {
    margin: 0;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.technical-content,
.error-page-inner > p {
    color: var(--muted);
    line-height: 1.7;
}

.technical-page,
.error-page {
    background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.technical-shell {
    width: min(1000px, calc(100% - 32px));
}

.technical-card,
.error-page-inner {
    padding: clamp(28px, 5vw, 54px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.page-updated {
    margin: 14px 0 0;
    color: #8a919e;
    font-size: 14px;
}

.technical-content {
    margin-top: 30px;
    color: #3d4654;
    font-size: 17px;
}

.contact-action {
    margin: 30px 0 0;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    color: #fff;
    background: var(--purple-dark);
    border-radius: 10px;
    font-weight: 800;
}

.error-page {
    min-height: 58vh;
    display: grid;
    place-items: center;
}

.error-page-inner {
    width: min(620px, 100%);
    margin-inline: auto;
    text-align: center;
}

.error-code {
    margin: 0 0 10px;
    color: var(--purple-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.request-id {
    margin-top: 24px;
    font-size: 13px;
}

/* Footer */
.site-footer {
    flex: 0 0 auto;
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-inner {
    padding: 22px 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 18px;
}

.footer-column h2 {
    margin: 0;
    font-size: 16px;
}

.footer-column p {
    max-width: 300px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 8px;
}

.footer-column li,
.footer-column a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #111;
}

.footer-empty {
    font-style: italic;
}

.footer-toggle {
    display: none;
    width: 100%;
    padding: 0;
    color: #111;
    background: transparent;
    border: 0;
    text-align: left;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 12px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 13px;
}

@media (max-width: 1120px) {
    .shell {
        width: min(980px, calc(100% - 28px));
    }

    .top-header {
        gap: 14px;
    }

    .site-wordmark {
        min-height: 42px;
        font-size: 43px;
    }

    .primary-nav {
        gap: 24px;
        padding-left: 18px;
        font-size: 16px;
    }

    .search-box {
        width: min(270px, 100%);
    }

    .category-nav {
        justify-content: center;
        gap: 12px;
        overflow: visible;
        font-size: 14px;
    }

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

    .grid-ad-primary,
    .grid-ad-secondary {
        grid-column: auto;
        grid-row: auto;
    }

    .subscribe-box {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 16px;
    }
}

@media (max-width: 1100px) and (min-width: 761px) {
    .top-header {
        gap: 20px;
    }

    .site-wordmark {
        min-height: 40px;
        font-size: 40px;
    }

    .primary-nav {
        font-size: 15px;
    }

    .search-box {
        width: 190px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 22px;
        height: 22px;
    }
    .subcategory-menu.is-multicolumn {
        grid-template-columns: repeat(2, minmax(165px, 1fr));
        min-width: 370px;
    }

    .subcategory-menu.is-wide {
        grid-template-columns: repeat(4, minmax(135px, 1fr));
        width: min(660px, calc(100vw - 28px));
    }

    .category-nav > .category-menu:first-child .subcategory-menu.is-wide {
        left: 0;
        transform: none;
    }
}

@media (max-width: 760px) {
    .shell,
    .technical-shell {
        width: calc(100% - 20px);
    }

    .top-header {
        grid-template-columns: auto auto;
        gap: 10px;
        padding: 12px 0;
    }

    .site-wordmark {
        min-height: 36px;
        font-size: 36px;
    }

    .primary-nav,
    .desktop-category-bar {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-self: end;
        gap: 6px;
        min-width: 94px;
        height: 38px;
        padding: 0 11px;
        color: #fff;
        background: #111;
        border: 1px solid #2b2b2b;
        border-radius: 10px;
    }

    .mobile-menu-button svg {
        width: 19px;
        height: 19px;
    }

    .header-actions {
        grid-column: 1 / -1;
        display: block;
        width: 100%;
    }

    .search-box {
        width: 100%;
    }

    .header-actions > .social-links {
        display: none;
    }

    .mobile-navigation {
        display: block;
        background: var(--black-2);
        border-top: 1px solid var(--black-line);
        border-bottom: 1px solid var(--black-line);
    }

    .mobile-navigation[hidden] {
        display: none;
    }

    .mobile-primary-nav {
        display: flex;
        gap: 22px;
        padding: 11px 0;
        border-bottom: 1px solid var(--black-line);
    }

    .mobile-primary-nav a {
        color: #fff;
        font-weight: 700;
    }

    .mobile-category-nav {
        display: grid;
        padding: 0 0 10px;
    }

    .mobile-category-link,
    .mobile-category-menu {
        border-bottom: 1px solid var(--black-line);
    }

    .mobile-category-link,
    .mobile-category-menu > summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 46px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.025em;
        font-size: 13px;
        font-weight: 700;
    }

    .mobile-category-menu > summary {
        list-style: none;
    }

    .mobile-category-menu > div {
        display: grid;
        gap: 3px;
        margin: 0 0 10px;
        padding: 8px;
        background: #111;
        border: 1px solid #292929;
        border-radius: 12px;
    }

    .mobile-category-menu > div a {
        padding: 9px;
        color: #fff;
        border-radius: 8px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: 0;
    }

    .mobile-menu-socials {
        padding: 14px 0 10px;
        color: #aeb4bf;
        font-size: 14px;
    }

    .mobile-social-row {
        gap: 12px;
        margin-top: 10px;
    }

    .mobile-social-row .social-link {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        background: #151515;
        border-color: #292929;
    }

    .page-section {
        padding-top: 10px;
    }

    .page-title {
        font-size: 27px;
        line-height: 1.2;
    }

    .section-head,
    .weekly-head,
    .catalog-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head,
    .weekly-head {
        margin-bottom: 12px;
    }

    .update-meta {
        gap: 9px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .grid-ad-secondary {
        display: none;
    }

    .offer-visual {
        min-height: 180px;
        aspect-ratio: 6 / 4;
    }

    .offer-content h3 {
        font-size: 18px;
    }

    .subscribe-box {
        display: none;
    }

    .section-continuation {
        justify-content: center;
        margin: 14px 0 22px;
        text-align: center;
    }


    .pagination {
        justify-content: flex-start;
        gap: 7px;
        margin-top: 26px;
    }

    .pagination-link {
        min-width: 50px;
        min-height: 50px;
        padding: 9px 13px;
        border-radius: 13px;
        font-size: 15px;
    }

    .pagination-ellipsis {
        min-width: 24px;
        min-height: 50px;
    }

    .search-page,
    .technical-page,
    .error-page {
        padding: 30px 0 48px;
    }

    .technical-card h1,
    .error-page-inner h1 {
        font-size: 31px;
    }

    .technical-card,
    .error-page-inner {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-brand-column {
        padding-bottom: 14px;
    }

    .footer-column:not(:first-child) {
        border-top: 1px solid var(--line);
    }

    .footer-column:not(:first-child) > h2 {
        display: none;
    }

    .footer-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 0;
        font-size: 15px;
        font-weight: 700;
    }

    .footer-column ul {
        display: none;
        margin: 0 0 12px;
    }

    .footer-column.is-open ul {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Offer and article details */
.detail-page {
    padding: 14px 0 0;
    background: #fff;
}

.detail-top-ad {
    min-height: 90px;
    margin-bottom: 20px;
}

.page-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 28px;
}

.detail-main-column,
.article-main-column {
    min-width: 0;
}

.offer-hero-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 30px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
}

.offer-media-column {
    min-width: 0;
}

.offer-detail-image {
    display: grid;
    place-items: center;
    aspect-ratio: 6 / 5;
    background: linear-gradient(180deg, #fbfcfe, #f0f3f7);
}

.offer-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-image-fallback {
    display: grid;
    place-items: center;
    width: 70%;
    height: 60%;
    color: #6f51dc;
    background: #f0ebff;
    border: 1px solid #d8cdff;
    border-radius: 18px;
    font-size: 28px;
    font-weight: 850;
}

.offer-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
}

.offer-facts > div {
    padding: 11px 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.offer-facts dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
}

.offer-facts dd {
    margin: 0;
    color: #222;
    font-size: 13px;
    font-weight: 720;
}

.offer-contributor {
    margin: 14px 0 0;
    color: #4b5563;
    font-size: 14px;
}

.offer-report-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.offer-report-link:hover,
.offer-report-link:focus-visible {
    color: var(--purple-dark);
}

.offer-main-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 6px 0;
}

.detail-label-row {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.detail-label,
.article-category-label,
.offer-state {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.035em;
}

.detail-label {
    color: #6a43d9;
    background: var(--purple-soft);
    border: 1px solid #d7c9ff;
}

.article-category-label {
    color: #4b5563;
    background: var(--soft);
    border: 1px solid var(--line);
    letter-spacing: 0;
}

.offer-state.is-active {
    color: #177e4b;
    background: var(--green-soft);
    border: 1px solid var(--green-line);
    letter-spacing: 0;
}

.offer-state.is-expired {
    color: #9a3412;
    background: #fff3e8;
    border: 1px solid #fed7aa;
    letter-spacing: 0;
}

.offer-main-copy h1,
.article-header h1 {
    margin: 0;
    color: #111;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.offer-description {
    max-width: 720px;
    margin: 20px 0 0;
    color: #3f4856;
    font-size: 18px;
    line-height: 1.65;
    white-space: pre-line;
}

.offer-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    margin-top: 25px;
    padding: 0 22px;
    color: #fff;
    background: var(--purple-dark);
    border: 1px solid var(--purple-dark);
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(104, 70, 213, 0.2);
}

.offer-primary-cta:hover,
.offer-primary-cta:focus-visible {
    background: #5637bd;
    border-color: #5637bd;
}

.offer-primary-cta.is-disabled {
    color: #757d89;
    background: #eceff3;
    border-color: #d8dde5;
    box-shadow: none;
    cursor: not-allowed;
}

.expired-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.how-to-section {
    margin-top: 22px;
    padding: 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.how-to-section h2,
.sidebar-block h2 {
    margin: 0 0 14px;
    color: #141414;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.how-to-section p,
.how-to-content {
    color: #3f4856;
    line-height: 1.7;
}

.sidebar-column {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.sidebar-block {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.article-header {
    margin-bottom: 22px;
}

.article-header h1 {
    max-width: 940px;
}

.article-byline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
}

.article-byline > * + *::before {
    content: "•";
    margin-right: 12px;
    color: #a0a7b2;
}

.article-lead-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    margin-bottom: 24px;
}

.article-lead-image {
    margin: 0;
    aspect-ratio: 6 / 5;
}

.article-lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-intro {
    color: #313946;
    font-size: 18px;
    line-height: 1.75;
}

.article-content {
    color: #303846;
    font-size: 17px;
    line-height: 1.76;
}

.article-content h2 {
    margin: 34px 0 13px;
    color: #151515;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.article-content h3 {
    margin: 26px 0 10px;
    color: #191919;
    font-size: 21px;
    line-height: 1.3;
}

.article-content p,
.article-content ul,
.article-content ol {
    margin: 0 0 18px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
}

.article-content li + li {
    margin-top: 8px;
}

.article-content a {
    color: var(--purple-dark);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content img {
    height: auto;
    margin: 20px auto;
    border-radius: 14px;
}

.article-inline-ad {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 170px;
    margin: 28px 0;
    color: #707b8c;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
}

.article-inline-ad span {
    font-size: 12px;
}

.deals-article-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.deals-article-content .deal-block {
    margin: 22px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.deals-article-content .deal-block h2 {
    margin-top: 0;
}

.deals-article-content .pro-tip,
.article-content .simple-pro-tip {
    margin: 24px 0;
    padding: 19px 20px;
    background: #f3efff;
    border: 1px solid #d9ceff;
    border-radius: 14px;
}

@media (max-width: 1100px) {
    .page-with-sidebar {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 20px;
    }

    .offer-hero-card {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 22px;
        padding: 18px;
    }

    .offer-main-copy h1,
    .article-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 900px) {
    .page-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-hero-card {
        grid-template-columns: 300px minmax(0, 1fr);
    }
}

@media (max-width: 700px) {
    .detail-page {
        padding-top: 8px;
    }

    .detail-page .breadcrumbs {
        overflow: hidden;
        white-space: nowrap;
    }

    .detail-page .breadcrumbs span[aria-current="page"] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .offer-hero-card,
    .article-lead-layout {
        grid-template-columns: 1fr;
    }

    .offer-hero-card {
        gap: 18px;
        padding: 15px;
        border-radius: 15px;
    }

    .offer-detail-image {
        max-width: 430px;
        width: 100%;
        margin-inline: auto;
    }

    .offer-main-copy h1,
    .article-header h1 {
        font-size: 31px;
    }

    .offer-description,
    .article-intro,
    .article-content {
        font-size: 16px;
    }

    .offer-primary-cta {
        width: 100%;
    }

    .how-to-section {
        padding: 18px;
    }

    .sidebar-column {
        grid-template-columns: 1fr;
    }

    .article-lead-image {
        max-width: 520px;
    }

    .article-content h2 {
        font-size: 24px;
    }
}

/* Stage 4.3: offer page visual alignment */
.offer-detail-page .offer-layout {
    grid-template-columns: minmax(0, 740px) 300px;
    width: min(1072px, 100%);
    margin: 6px auto 0;
    gap: 32px;
}

.offer-primary-column {
    min-width: 0;
}

.offer-hero-clean {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 34px;
    margin-bottom: 28px;
}

.offer-media-column,
.offer-image-300 {
    width: 300px;
}

.offer-image-300 {
    display: grid;
    place-items: center;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(145deg, #fbfcfe, #eef2f7);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.offer-image-300 img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.offer-image-300 .detail-image-fallback {
    width: 72%;
    height: 60%;
}

.offer-media-info {
    width: 300px;
    margin-top: 10px;
    overflow: hidden;
    background: #f7f8fa;
    border: 1px solid var(--line);
    border-radius: 13px;
}

.offer-media-facts {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.offer-media-fact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 68px;
    padding: 11px 12px;
}

.offer-media-fact + .offer-media-fact {
    border-left: 1px solid var(--line);
}

.offer-media-label {
    margin-bottom: 4px;
    color: #7a8391;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.offer-media-fact strong {
    color: #1f2430;
    font-size: 13px;
    line-height: 1.3;
}

.offer-contributor {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 45px;
    margin: 0;
    padding: 10px 12px;
    color: #5c6574;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.contributor-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #6846d5;
    background: #eee9ff;
    border-radius: 50%;
    font-size: 12px;
}

.offer-report-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px);
    min-height: 40px;
    margin: 0 10px 10px;
    padding: 8px 11px;
    color: #3f4651;
    background: #fff;
    border: 1px solid #d9dee6;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.offer-report-button:hover,
.offer-report-button:focus-visible {
    color: #6846d5;
    background: #faf8ff;
    border-color: #bcaaf6;
}

.offer-main-copy {
    display: block;
    min-width: 0;
    padding: 2px 0 0;
}

.offer-kicker-row {
    display: flex;
    margin: 0 0 10px;
}

.offer-availability {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    color: #8a3d3d;
    background: #fff2f2;
    border: 1px solid #efcaca;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.offer-main-copy h1 {
    margin: 0;
    color: #111;
    font-size: 31px;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.offer-lead {
    margin: 15px 0 0;
    color: #596273;
    font-size: 17px;
    line-height: 1.58;
    white-space: pre-line;
}

.sponsored-banner {
    margin-top: 18px;
}

.sponsored-banner-label {
    margin-bottom: 6px;
    color: #697386;
    font-size: 12px;
}

.sponsored-banner-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 88px;
    padding: 12px;
    color: #687386;
    background: #f6f7f9;
    border-radius: 10px;
}

.sponsored-banner-body strong {
    font-size: 16px;
}

.sponsored-banner-body span {
    margin-top: 4px;
    font-size: 12px;
}

.offer-main-copy .offer-primary-cta {
    display: flex;
    width: 100%;
    min-height: 54px;
    margin-top: 18px;
    padding: 12px 18px;
    color: #fff;
    background: #111;
    border-color: #111;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 760;
    box-shadow: none;
}

.offer-main-copy .offer-primary-cta:hover,
.offer-main-copy .offer-primary-cta:focus-visible {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

.offer-main-copy .offer-primary-cta svg {
    width: 21px;
    height: 21px;
}

.offer-main-copy .offer-primary-cta.is-disabled {
    color: #7d8591;
    background: #eceff3;
    border-color: #dce1e7;
}

.offer-primary-column .how-to-section {
    margin: 0;
    padding: 26px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
}

.offer-primary-column .how-to-section h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.how-to-content {
    margin-top: 0;
    color: #3f4856;
    line-height: 1.6;
}

.brand-disclaimer {
    margin: 22px 0 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.45;
}

.how-to-content .how-to-get {
    margin: 0;
}

.how-to-content .how-to-get > h2:first-child,
.how-to-content > h2:first-child {
    margin: 0 0 20px;
    color: #141414;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.how-to-content ol,
.offer-steps {
    display: grid;
    gap: 16px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: offer-step;
}

.how-to-content ol > li,
.offer-steps > li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    counter-increment: offer-step;
}

.how-to-content ol > li::before,
.offer-steps > li::before {
    content: counter(offer-step);
    grid-column: 1;
    grid-row: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: #111;
    border-radius: 50%;
    font-weight: 800;
}

.how-to-content ol > li > *,
.offer-steps > li > * {
    grid-column: 2;
    min-width: 0;
}

.how-to-content ol > li > :is(h2, h3, h4, strong),
.offer-steps strong {
    display: block;
    margin: 0 0 4px;
    color: #1f2430;
    font-size: 17px;
    line-height: 1.35;
}

.how-to-content ol > li > p,
.offer-steps p {
    width: auto;
    max-width: none;
    margin: 4px 0 0;
    color: #626b79;
    line-height: 1.6;
}

.offer-sidebar {
    position: sticky;
    top: 16px;
    display: block;
    min-width: 300px;
}

.offer-sidebar .sidebar-block {
    padding: 18px 18px 16px;
    border-radius: 14px;
}

.offer-sidebar .sidebar-block + .sidebar-block {
    margin-top: 16px;
}

.offer-sidebar .sidebar-block h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.offer-sidebar-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.offer-sidebar-list li {
    border-bottom: 1px solid var(--line);
}

.offer-sidebar-list a {
    display: block;
    padding: 12px 0;
    color: #1f2430;
    text-decoration: none;
}

.offer-sidebar-list a:hover .offer-sidebar-title,
.offer-sidebar-list a:focus-visible .offer-sidebar-title {
    color: #6547ce;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.offer-sidebar-title {
    display: block;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.4;
}

.offer-sidebar-meta {
    display: block;
    margin-top: 4px;
    color: #798291;
    font-size: 12px;
    line-height: 1.35;
}

.sidebar-view-all {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: #6547ce;
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
}

.sidebar-view-all:hover,
.sidebar-view-all:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sidebar-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    min-height: 250px;
    margin: 16px 0;
    color: #7a8391;
    background: #f7f8fa;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.sidebar-ad span {
    font-size: 10px;
    letter-spacing: .06em;
}

.sidebar-ad strong {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .offer-detail-page .offer-layout {
        grid-template-columns: minmax(0, 604px) 280px;
        width: min(908px, 100%);
        gap: 24px;
    }

    .offer-hero-clean {
        gap: 24px;
    }

    .offer-sidebar {
        min-width: 280px;
    }

    .sidebar-ad {
        width: 280px;
    }
}

@media (max-width: 900px) {
    .offer-detail-page .offer-layout {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .offer-sidebar {
        position: static;
        min-width: 0;
    }

    .sidebar-ad {
        width: 100%;
        max-width: 300px;
        margin: 16px auto;
    }
}

@media (max-width: 700px) {
    .offer-hero-clean {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 26px;
    }

    .offer-media-column {
        width: 100%;
        max-width: 300px;
        justify-self: center;
    }

    .offer-image-300,
    .offer-media-info {
        width: 100%;
    }

    .offer-main-copy h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .offer-lead {
        font-size: 16px;
    }

    .offer-primary-column .how-to-section h2 {
        font-size: 22px;
    }
}

/* Offer report dialog */
.report-dialog-backdrop[hidden] {
    display: none;
}

.report-dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(3px);
}

.report-dialog {
    width: min(540px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.report-dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 22px 17px;
    border-bottom: 1px solid var(--line);
}

.report-dialog-kicker {
    margin: 0 0 5px;
    color: #777f8d;
    font-size: 12px;
    font-weight: 700;
}

.report-dialog-header h2 {
    margin: 0;
    color: #141414;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.report-dialog-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0;
    color: #555e6c;
    background: #f6f7f9;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
}

.report-dialog-close:hover,
.report-dialog-close:focus-visible {
    color: #111;
    background: #eceff3;
}

.report-dialog-close svg {
    width: 19px;
    height: 19px;
}

.report-form {
    padding: 20px 22px 22px;
}

.report-reasons {
    display: grid;
    gap: 9px;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

.report-reasons legend {
    margin-bottom: 11px;
    color: #242932;
    font-size: 15px;
    font-weight: 750;
}

.report-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    align-items: start;
    padding: 12px 13px;
    border: 1px solid #dfe3e9;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.report-option:hover {
    background: #faf9ff;
    border-color: #c9bcf5;
}

.report-option:has(input:checked) {
    background: #f5f1ff;
    border-color: #9f87ec;
    box-shadow: 0 0 0 2px rgba(139, 99, 246, .08);
}

.report-option input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #7656e8;
}

.report-option strong {
    display: block;
    color: #252a32;
    font-size: 14px;
}

.report-option small {
    display: block;
    margin-top: 3px;
    color: #737c8a;
    font-size: 12px;
    line-height: 1.4;
}

.report-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.report-cancel,
.report-submit,
.report-success-close {
    min-height: 42px;
    padding: 9px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
}

.report-cancel {
    color: #3f4651;
    background: #fff;
    border: 1px solid #d9dee6;
}

.report-submit,
.report-success-close {
    color: #fff;
    background: #111;
    border: 1px solid #111;
}

.report-submit:hover,
.report-submit:focus-visible,
.report-success-close:hover,
.report-success-close:focus-visible {
    background: #292929;
}

.report-success {
    padding: 42px 28px 34px;
    text-align: center;
}

.report-success-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    color: #147b47;
    background: #eaf8f0;
    border-radius: 50%;
}

.report-success-icon svg {
    width: 29px;
    height: 29px;
}

.report-success h2 {
    margin: 0;
    color: #141414;
    font-size: 24px;
}

.report-success p {
    max-width: 360px;
    margin: 9px auto 20px;
    color: #687181;
    line-height: 1.5;
}

.report-success-close {
    min-width: 130px;
}

body.report-dialog-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .report-dialog-backdrop {
        align-items: flex-end;
        padding: 0;
    }

    .report-dialog {
        width: 100%;
        max-height: 88vh;
        border-radius: 18px 18px 0 0;
    }

    .report-dialog-header {
        padding: 19px 18px 15px;
    }

    .report-form {
        padding: 17px 18px 22px;
    }

    .report-form-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .report-cancel,
    .report-submit {
        width: 100%;
    }
}


/* Stage 4.6: approved Guide and Deals Article layouts */
.article-detail-page {
    --article-accent: #6948d6;
    --article-accent-soft: #f3efff;
    --article-accent-border: #d9ceff;
    padding-top: 14px;
}

.deals-article-page {
    --brand: #6948d6;
    --brand-soft: #f3efff;
    --brand-border: #d9ceff;
}

.article-detail-page .article-top-ad {
    margin-bottom: 16px;
}

.article-detail-page .article-breadcrumbs {
    width: min(1072px, 100%);
    margin: 0 auto 14px;
}

.article-detail-page .article-layout-shell {
    grid-template-columns: minmax(0, 740px) 300px;
    width: min(1072px, 100%);
    margin: 0 auto;
    gap: 32px;
    align-items: start;
}

.article-detail-page .article-main-column {
    min-width: 0;
}

.article-main-column .simple-article-header,
.article-main-column .article-header {
    max-width: none;
    margin: 0 0 22px;
    padding: 0;
    border: 0;
    text-align: left;
}

.article-detail-page .article-label-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 14px;
}

.article-type-label,
.article-date-label,
.deals-article-page .article-category,
.deals-article-page .article-date {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
}

.article-type-label,
.deals-article-page .article-category {
    color: var(--article-accent);
    background: var(--article-accent-soft);
    border: 1px solid var(--article-accent-border);
    letter-spacing: .025em;
}

.deals-article-page .article-category {
    color: var(--brand);
    background: var(--brand-soft);
    border-color: var(--brand-border);
}

.article-date-label,
.deals-article-page .article-date {
    color: #667080;
    background: #f4f6f8;
    border: 1px solid #e0e4e9;
}

.article-main-column .simple-article-header h1,
.article-main-column .article-header h1 {
    max-width: none;
    margin: 0;
    color: #111;
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.article-detail-page .simple-article-lead,
.article-detail-page .article-lead-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    width: 100%;
    margin: 0 0 28px;
}

.article-detail-page .simple-article-image,
.article-detail-page .article-main-image {
    width: 300px;
    height: 250px;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
}

.article-detail-page .simple-article-image img,
.article-detail-page .article-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-page .simple-article-intro,
.article-detail-page .article-lead-copy,
.article-detail-page .article-lead-copy .article-intro {
    min-width: 0;
    margin: 0;
    color: #586271;
    font-size: 17px;
    line-height: 1.65;
    text-align: left;
}

.article-detail-page .simple-article-intro p,
.article-detail-page .article-lead-copy p,
.article-detail-page .article-lead-copy .article-intro p {
    margin: 0;
}

.article-detail-page .simple-article-intro p + p,
.article-detail-page .article-lead-copy p + p,
.article-detail-page .article-lead-copy .article-intro p + p {
    margin-top: 15px;
}

.article-main-column .simple-article-content,
.article-main-column .article-content-shell,
.article-main-column .article-content {
    width: 100%;
    margin: 0;
}

.article-detail-page .article-content {
    color: #414a58;
    font-size: 16px;
    line-height: 1.65;
}

.article-detail-page .article-content > :first-child {
    margin-top: 0;
}

.article-detail-page .article-content h2 {
    margin: 0;
    color: #17191d;
    font-size: 24px;
    line-height: 1.27;
    letter-spacing: -.025em;
}

.article-detail-page .article-content h3 {
    margin: 0;
    color: #1c2026;
    font-size: 19px;
    line-height: 1.32;
    letter-spacing: -.015em;
}

.article-detail-page .article-content p {
    margin: 12px 0 0;
    color: #5b6574;
    line-height: 1.65;
}

.article-detail-page .article-content ul,
.article-detail-page .article-content ol {
    margin: 18px 0 0;
    padding-left: 24px;
}

.article-detail-page .article-content li + li {
    margin-top: 8px;
}

.article-detail-page .article-content a {
    color: var(--article-accent);
    font-weight: 700;
    text-decoration: none;
}

.article-detail-page .article-content a:hover,
.article-detail-page .article-content a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-detail-page .article-inline-ad,
.article-detail-page .article-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 128px;
    margin: 0 0 26px;
    color: #7a8391;
    background: #f7f8fa;
    border: 0;
    border-radius: 12px;
    text-align: center;
}

.article-detail-page .article-inline-ad span,
.article-detail-page .article-ad span {
    font-size: 10px;
    letter-spacing: .06em;
}

.article-detail-page .article-inline-ad strong,
.article-detail-page .article-ad strong {
    margin-top: 5px;
    font-size: 15px;
}

/* Generic guide HTML generated by Admin */
.simple-article-page .simple-article-lead {
    padding: 18px;
    background: #faf9ff;
    border: 1px solid #e6e0f7;
    border-radius: 16px;
}

.simple-article-page .article-section {
    padding: 6px 0 30px;
}

.simple-article-page .article-section + .article-section {
    padding-top: 6px;
    border-top: 0;
}

.simple-article-page .article-section > h2 {
    padding-left: 12px;
    border-left: 4px solid var(--article-accent);
}

.simple-article-page .resource-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    border: 0;
}

.simple-article-page .resource-entry,
.simple-article-page .resource-card {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(16, 24, 40, 0.035);
}

.simple-article-page .resource-entry h3,
.simple-article-page .resource-card h3 {
    font-size: 18px;
    line-height: 1.35;
}

.simple-article-page .resource-entry p,
.simple-article-page .resource-card p {
    margin-top: 9px;
}

.simple-article-page .article-text-link,
.simple-article-page .article-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 11px;
    padding: 8px 12px;
    color: var(--article-accent);
    background: var(--article-accent-soft);
    border: 1px solid var(--article-accent-border);
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.2;
    transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.simple-article-page .article-text-link:hover,
.simple-article-page .article-text-link:focus-visible,
.simple-article-page .article-link-button:hover,
.simple-article-page .article-link-button:focus-visible {
    background: #ebe5ff;
    border-color: #c9bbff;
    text-decoration: none;
    transform: translateY(-1px);
}

.simple-article-page .article-link-row,
.simple-article-page .article-button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.simple-article-page .simple-pro-tip {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    margin: 2px 0 28px;
    padding: 17px 18px;
    color: #414955;
    background: var(--article-accent-soft);
    border: 0;
    border-left: 4px solid var(--article-accent);
    border-radius: 10px;
}

.simple-article-page .simple-pro-tip-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--article-accent);
    border-radius: 50%;
    font-size: 20px;
}

.simple-article-page .article-steps {
    display: grid;
    gap: 15px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.simple-article-page .article-steps li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
}

.simple-article-page .article-steps li > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #111;
    border-radius: 50%;
    font-weight: 800;
}

.simple-article-page .article-steps strong {
    display: block;
    margin-bottom: 4px;
}

.simple-article-page .article-steps p {
    margin: 0;
    color: #626b79;
    line-height: 1.55;
}

.simple-article-page .article-links-list {
    display: grid;
    gap: 11px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.simple-article-page .article-links-list li {
    display: grid;
    gap: 4px;
    padding: 14px 15px;
    background: #f7f8fa;
    border-radius: 10px;
}

/* Deals Article blocks */
.deals-article-page .article-content a {
    color: var(--brand);
}

.deals-article-page .deal-list {
    display: grid;
    gap: 0;
}

.deals-article-page .deal-block,
.deals-article-page .deals-article-content .deal-block {
    margin: 0;
    padding: 24px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}

.deals-article-page .deal-block:first-child {
    border-top: 1px solid var(--line);
}

.deals-article-page .deal-block-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.deals-article-page .deal-block h2,
.deals-article-page .deals-article-content .deal-block h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.27;
    letter-spacing: -.025em;
}

.deals-article-page .deal-block h2 a {
    color: #1c2128;
}

.deals-article-page .deal-block h2 a:hover,
.deals-article-page .deal-block h2 a:focus-visible {
    color: var(--brand);
}

.deals-article-page .deal-block p {
    margin: 12px 0 0;
    color: #596271;
    font-size: 16px;
    line-height: 1.62;
}

.deals-article-page .promo-code {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 36px;
    overflow: hidden;
    border: 1px solid var(--brand-border);
    border-radius: 9px;
}

.deals-article-page .promo-code span {
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 9px;
    color: #604a9e;
    background: var(--brand-soft);
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
}

.deals-article-page .promo-code strong {
    padding: 0 11px;
    color: var(--brand);
    font-size: 14px;
    letter-spacing: .02em;
}

.deals-article-page .brand-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 16px;
    padding: 10px 16px;
    color: #fff !important;
    background: var(--brand);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 780;
    text-decoration: none !important;
}

.deals-article-page .brand-button:hover,
.deals-article-page .brand-button:focus-visible {
    filter: brightness(.9);
}

.deals-article-page .pro-tip {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    margin: 28px 0;
    padding: 17px 18px;
    color: #414955;
    background: var(--brand-soft);
    border: 0;
    border-left: 4px solid var(--brand);
    border-radius: 10px;
}

.deals-article-page .pro-tip-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
    font-size: 20px;
}

.deals-article-page .pro-tip p {
    margin: 5px 0 0;
    color: #414955;
    line-height: 1.58;
}

.deals-article-page .article-closing {
    margin: 0 0 34px;
    color: #56606f;
    line-height: 1.65;
}

/* Approved text-only article sidebar */
.article-detail-page .article-sidebar {
    position: sticky;
    top: 16px;
    display: block;
    min-width: 300px;
}

.article-detail-page .sidebar-block {
    padding: 18px 18px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.article-detail-page .sidebar-block + .sidebar-block {
    margin-top: 16px;
}

.article-detail-page .sidebar-block h2 {
    margin: 0 0 12px;
    color: #17191d;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.article-detail-page .sidebar-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.article-detail-page .sidebar-list-item {
    border-bottom: 1px solid var(--line);
}

.article-detail-page .sidebar-list-link {
    display: block;
    padding: 12px 0;
    color: #1f2430;
    text-decoration: none;
}

.article-detail-page .sidebar-list-link:hover .sidebar-item-title,
.article-detail-page .sidebar-list-link:focus-visible .sidebar-item-title {
    color: var(--article-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-detail-page .sidebar-item-title {
    display: block;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.4;
}

.article-detail-page .sidebar-item-meta {
    display: block;
    margin-top: 4px;
    color: #798291;
    font-size: 12px;
    line-height: 1.35;
}

.article-detail-page .sidebar-view-all {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: var(--article-accent);
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
}

.article-detail-page .sidebar-view-all:hover,
.article-detail-page .sidebar-view-all:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-detail-page .sidebar-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    min-height: 250px;
    margin: 16px 0;
    color: #7a8391;
    background: #f7f8fa;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.article-detail-page .sidebar-ad span {
    font-size: 10px;
    letter-spacing: .06em;
}

.article-detail-page .sidebar-ad strong {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .article-detail-page .article-layout-shell {
        grid-template-columns: minmax(0, 604px) 280px;
        width: min(908px, 100%);
        gap: 24px;
    }

    .article-detail-page .article-sidebar {
        min-width: 280px;
    }

    .article-detail-page .sidebar-ad {
        width: 280px;
    }

    .article-main-column .simple-article-header h1,
    .article-main-column .article-header h1 {
        font-size: 29px;
        line-height: 1.19;
    }

    .article-detail-page .simple-article-lead,
    .article-detail-page .article-lead-layout {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .article-detail-page .article-layout-shell {
        grid-template-columns: 1fr;
        width: min(740px, 100%);
    }

    .article-detail-page .article-sidebar {
        position: static;
        min-width: 0;
    }

    .article-detail-page .sidebar-ad {
        width: 100%;
        max-width: 300px;
        margin: 16px auto;
    }
}

@media (max-width: 700px) {
    .article-detail-page .article-top-ad {
        display: none;
    }

    .article-detail-page .article-breadcrumbs {
        margin-bottom: 16px;
    }

    .article-main-column .simple-article-header,
    .article-main-column .article-header {
        text-align: left;
    }

    .article-detail-page .article-label-row {
        justify-content: flex-start;
    }

    .article-main-column .simple-article-header h1,
    .article-main-column .article-header h1 {
        margin-inline: 0;
        font-size: 26px;
        line-height: 1.2;
        letter-spacing: -.018em;
    }

    .article-detail-page .simple-article-lead,
    .article-detail-page .article-lead-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .article-detail-page .simple-article-image,
    .article-detail-page .article-main-image {
        justify-self: center;
        max-width: 100%;
    }

    .simple-article-page .simple-article-lead {
        padding: 14px;
        border-radius: 14px;
    }

    .simple-article-page .resource-entry,
    .simple-article-page .resource-card {
        padding: 16px;
    }

    .article-detail-page .simple-article-intro,
    .article-detail-page .article-lead-copy,
    .article-detail-page .article-lead-copy .article-intro,
    .article-detail-page .article-content {
        font-size: 16px;
    }

    .article-detail-page .article-content h2,
    .deals-article-page .deal-block h2,
    .deals-article-page .deals-article-content .deal-block h2 {
        font-size: 22px;
    }

    .deals-article-page .deal-block-top {
        display: block;
    }

    .deals-article-page .promo-code {
        width: max-content;
        margin-top: 11px;
    }

    .deals-article-page .brand-button {
        width: 100%;
    }

    .simple-article-page .article-link-row,
    .simple-article-page .article-button-row {
        gap: 14px;
    }
}

/* Live advertising loaded from OFree.Admin */
.ad-placement {
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.ad-placement > *,
.ad-placement iframe,
.ad-placement ins {
    max-width: 100%;
}

.ad-placement--content-banner,
.ad-placement--rectangle {
    position: relative;
    padding-top: 26px;
}

.ad-placement-label {
    position: absolute;
    top: 8px;
    right: 0;
    left: 0;
    z-index: 1;
    color: #697386;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    pointer-events: none;
}

.ad-placement--top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1280px, calc(100% - 32px));
    min-height: 250px;
    margin: 0 auto;
    overflow: hidden;
}

.ad-placement--feed {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.ad-placement--content-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    margin: 18px 0;
    overflow: hidden;
}

.ad-placement--rectangle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 250px;
    overflow: hidden;
}

.ad-placement--sidebar {
    max-width: 336px;
    margin: 16px auto;
}

.ad-placement--article-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    margin: 28px 0;
    overflow: hidden;
}

.ad-placement--footer-multiplex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1280px, calc(100% - 32px));
    min-height: 250px;
    margin: 30px auto 12px;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .ad-placement--top {
        min-height: 90px;
    }

    .ad-placement--footer-multiplex {
        min-height: 200px;
    }
}

@media (max-width: 760px) {
    .ad-placement--top,
    .ad-placement--footer-multiplex {
        width: calc(100% - 20px);
        min-height: 90px;
    }

    .ad-placement--feed {
        min-height: 250px;
    }

    .ad-placement--content-banner,
    .ad-placement--article-inline {
        min-height: 90px;
    }
}

/* Google Programmable Search */
.search-page-shell {
    width: min(1120px, calc(100% - 32px));
}

.search-header {
    max-width: 860px;
    margin: 0 0 20px;
    text-align: left;
}

.search-header h1 {
    margin: 0;
}

.search-header p {
    margin: 10px 0 0;
}

.google-search-results {
    min-height: 340px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.google-search-results .gsc-control-cse,
.google-search-results .gsc-control-cse-en {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    font-family: inherit !important;
}

.google-search-results .gsc-result-info {
    padding-left: 0 !important;
}

.google-search-results .gsc-orderby-container {
    display: none !important;
}

.google-search-results .gsc-above-wrapper-area {
    padding: 0 0 12px !important;
}

.google-search-results .gsc-webResult.gsc-result,
.google-search-results .gsc-results .gsc-imageResult {
    padding: 18px 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid var(--line) !important;
}

.google-search-results .gs-title,
.google-search-results .gs-title * {
    color: var(--fg) !important;
    font-family: inherit !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

.google-search-results .gs-title:hover,
.google-search-results .gs-title:focus,
.google-search-results .gs-title:hover *,
.google-search-results .gs-title:focus * {
    color: var(--purple-dark) !important;
}

.google-search-results .gs-visibleUrl,
.google-search-results .gs-visibleUrl-short,
.google-search-results .gs-visibleUrl-long {
    color: var(--green) !important;
    font-family: inherit !important;
}

.google-search-results .gs-snippet {
    color: #4b5563 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.google-search-results .gsc-cursor-box {
    margin: 28px 0 4px !important;
    text-align: center !important;
}

.google-search-results .gsc-cursor-page {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    margin: 3px !important;
    padding: 8px 11px !important;
    color: var(--fg) !important;
    background: #fff !important;
    border: 1px solid var(--line) !important;
    border-radius: 10px !important;
    text-decoration: none !important;
}

.google-search-results .gsc-cursor-current-page {
    color: #fff !important;
    background: var(--purple) !important;
    border-color: var(--purple) !important;
}

@media (max-width: 700px) {
    .google-search-results {
        min-height: 280px;
        padding: 14px;
        border-radius: 14px;
    }

    .google-search-results .gs-title,
    .google-search-results .gs-title * {
        font-size: 17px !important;
    }

    .google-search-results .gs-snippet {
        font-size: 14px !important;
    }
}

/* Stage 6.6: expired offers */
.status-expired {
    color: #8a5a00;
    background: #fff4d6;
    border-color: #efd28d;
}

.offer-card.is-expired .offer-image {
    filter: saturate(0.72);
}

.offer-expired-notice {
    display: grid;
    gap: 4px;
    margin: 18px 0;
    padding: 14px 16px;
    color: #6f4c00;
    background: #fff8e8;
    border: 1px solid #efd9a3;
    border-radius: 12px;
}

.offer-expired-notice strong {
    color: #2f2a20;
    font-size: 16px;
}

.offer-expired-notice span {
    color: #655f55;
    font-size: 14px;
    line-height: 1.5;
}

/* Stage 6.8: keep the text wordmark compact and prevent header collisions. */
@media (min-width: 761px) {
    .top-header {
        display: grid;
        grid-template-columns: auto auto minmax(0, 1fr);
        align-items: center;
        column-gap: 24px;
    }

    .site-wordmark {
        min-height: 40px;
        max-width: none;
        font-size: 40px;
        line-height: 1;
        letter-spacing: -0.055em;
    }

    .primary-nav {
        min-width: max-content;
        padding-left: 0;
    }

    .header-actions {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 1120px) and (min-width: 761px) {
    .top-header {
        column-gap: 16px;
    }

    .site-wordmark {
        min-height: 36px;
        font-size: 36px;
    }

    .search-box {
        width: 180px;
    }
}

@media (max-width: 760px) {
    .top-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-wordmark {
        min-height: 32px;
        max-width: 150px;
        font-size: 31px;
        line-height: 1;
        letter-spacing: -0.045em;
    }
}

/* Stage 6.9: final wordmark width constraints for desktop and tablet. */
@media (min-width: 1121px) {
    .top-header {
        grid-template-columns: 158px minmax(138px, auto) minmax(0, 1fr);
        column-gap: 20px;
    }

    .site-wordmark {
        width: 158px;
        max-width: 158px;
        min-height: 36px;
        overflow: hidden;
        font-size: 36px;
        line-height: 1;
        letter-spacing: -0.055em;
    }

    .search-box {
        width: min(200px, 18vw);
    }
}

@media (max-width: 1120px) and (min-width: 761px) {
    .top-header {
        grid-template-columns: 134px minmax(122px, auto) minmax(0, 1fr);
        column-gap: 14px;
    }

    .site-wordmark {
        width: 134px;
        max-width: 134px;
        min-height: 31px;
        overflow: hidden;
        font-size: 30px;
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .primary-nav {
        min-width: 0;
        font-size: 14px;
    }

    .primary-nav a {
        min-height: 38px;
    }

    .header-actions {
        min-width: 0;
        gap: 6px;
    }

    .search-box {
        width: 150px;
        flex: 0 1 150px;
    }

    .header-actions > .social-links {
        flex: 0 0 auto;
        gap: 0;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Stage 6.10: tablet header uses a compact expandable search control.
   This prevents the wordmark, Latest link, search and social icons from
   competing for permanent horizontal space between 761px and 1120px. */
@media (max-width: 1120px) and (min-width: 761px) {
    .top-header {
        grid-template-columns: 132px minmax(0, 1fr) auto;
        column-gap: 14px;
        overflow: visible;
    }

    .site-wordmark {
        width: 132px;
        max-width: 132px;
        min-height: 31px;
        overflow: hidden;
        font-size: 30px;
    }

    .primary-nav {
        min-width: 0;
        overflow: hidden;
    }

    .primary-nav a {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-actions {
        position: relative;
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        overflow: visible;
    }

    .header-actions > .social-links {
        margin-left: 0;
    }

    .search-box {
        position: relative;
        z-index: 85;
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        overflow: visible;
    }

    .search-box input {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        padding-left: 12px;
        padding-right: 40px;
        opacity: 0;
        pointer-events: none;
        transition: width 0.18s ease, opacity 0.12s ease, box-shadow 0.15s ease;
    }

    .search-box button {
        position: absolute;
        top: 0;
        right: 0;
        color: #d7d9de;
        background: #111;
        border: 1px solid #2b2b2b;
        border-radius: 10px;
    }

    .search-box button:hover,
    .search-box button:focus-visible {
        color: #fff;
        background: #181818;
        border-color: #454545;
    }

    .search-box.is-open {
        z-index: 100;
    }

    .search-box.is-open input {
        width: 210px;
        opacity: 1;
        pointer-events: auto;
    }

    .search-box.is-open button {
        color: #a98cff;
        background: #0b0b0b;
        border-color: #9b7cff;
        border-left-color: transparent;
        border-radius: 0 10px 10px 0;
    }
}

@media (max-width: 900px) and (min-width: 761px) {
    .top-header {
        grid-template-columns: 124px minmax(0, 1fr) auto;
        column-gap: 10px;
    }

    .site-wordmark {
        width: 124px;
        max-width: 124px;
        font-size: 28px;
    }

    .primary-nav {
        font-size: 13px;
    }

    .header-actions {
        gap: 2px;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .social-link svg {
        width: 19px;
        height: 19px;
    }
}

/* Stage 6.11: keep the text logo large without clipping the descender in "Only". */
.site-wordmark {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: none;
    min-height: 0;
    overflow: visible;
    padding-bottom: 3px;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.045em;
    white-space: nowrap;
    flex: 0 0 auto;
}

@media (min-width: 761px) and (max-width: 1120px) {
    .site-wordmark {
        width: auto;
        max-width: none;
        min-height: 0;
        overflow: visible;
        padding-bottom: 3px;
        font-size: 29px;
        line-height: 1.08;
    }
}

@media (max-width: 760px) {
    .site-wordmark {
        width: auto;
        max-width: none;
        min-height: 0;
        overflow: visible;
        padding-bottom: 2px;
        font-size: 27px;
        line-height: 1.08;
    }
}

/* Stage 6.12: preserve the final "e" without shrinking the text logo. */
.brand-link.site-wordmark,
.site-wordmark {
    width: auto;
    max-width: none;
    overflow: visible;
    padding-right: 6px;
    letter-spacing: -0.035em;
}

.site-wordmark-free {
    display: inline-block;
    padding-right: 3px;
}


/* Stage 6.13: compact two-link primary navigation for Latest Free Stuff and Hot Deals. */
.primary-nav {
    gap: 22px;
}

@media (max-width: 1120px) and (min-width: 761px) {
    .primary-nav {
        display: grid;
        grid-template-columns: max-content max-content;
        align-items: center;
        gap: 14px;
        overflow: visible;
        font-size: 13px;
    }

    .primary-nav a {
        overflow: visible;
        text-overflow: clip;
    }
}

@media (max-width: 900px) and (min-width: 761px) {
    .primary-nav {
        gap: 10px;
        font-size: 12px;
    }
}

/* Stage 6.14: Limited-Time Offers navigation and expiration labels. */
.offer-meta .offer-expiration {
    color: #a33a2b;
    font-weight: 750;
}

@media (max-width: 1120px) and (min-width: 761px) {
    .primary-nav {
        grid-template-columns: max-content max-content max-content;
        gap: 12px;
        font-size: 12px;
    }
}

@media (max-width: 900px) and (min-width: 761px) {
    .primary-nav {
        gap: 8px;
        font-size: 11px;
    }
}

/* Stage 6.15: wider desktop search grouped directly with social links. */
@media (min-width: 1121px) {
    .header-actions {
        justify-content: flex-end;
        gap: 12px;
    }

    .header-actions > .social-links {
        flex: 0 0 auto;
        margin-left: 0;
    }

    .search-box {
        flex: 0 1 clamp(280px, 30vw, 400px);
        width: clamp(280px, 30vw, 400px);
        max-width: 400px;
    }
}


/* Stage 6.18: sidebar, lower SEO heading and How To spacing */
.page-bottom-title {
    margin: 0 0 12px;
    color: #141414;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.offer-sidebar-list .sidebar-list-link {
    display: block;
}

.offer-sidebar-list .sidebar-list-item {
    padding-bottom: 12px;
}

.offer-primary-column .how-to-content ol,
.offer-primary-column .offer-steps {
    row-gap: 18px;
}

.offer-primary-column .how-to-content ol > li,
.offer-primary-column .offer-steps > li {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
}

.offer-primary-column .how-to-content ol > li::before,
.offer-primary-column .offer-steps > li::before {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.offer-primary-column .how-to-content ol > li > :is(h2, h3, h4, strong),
.offer-primary-column .offer-steps > li > strong {
    grid-column: 2;
    grid-row: 1;
    margin: 2px 0 0;
}

.offer-primary-column .how-to-content ol > li > p,
.offer-primary-column .offer-steps > li > p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
}

.offer-primary-column .how-to-content ol > li > div,
.offer-primary-column .offer-steps > li > div {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.offer-primary-column .how-to-content ol > li > div > :is(h2, h3, h4, strong),
.offer-primary-column .offer-steps > li > div > strong {
    display: block;
    margin: 2px 0 4px;
    color: #1f2430;
    font-size: 17px;
    line-height: 1.35;
}

.offer-primary-column .how-to-content ol > li > div > p,
.offer-primary-column .offer-steps > li > div > p {
    margin: 0;
    color: #626b79;
    line-height: 1.6;
}

@media (max-width: 760px) {
    .page-bottom-title {
        font-size: 19px;
    }

    .offer-primary-column .how-to-content ol > li,
    .offer-primary-column .offer-steps > li {
        grid-template-columns: 38px minmax(0, 1fr);
        column-gap: 12px;
    }

    .offer-primary-column .how-to-content ol > li::before,
    .offer-primary-column .offer-steps > li::before {
        width: 38px;
        height: 38px;
    }
}

/* Stage 6.23: Benchmark Email submits in a hidden frame and reports the result in an OFree dialog. */
.newsletter-submit-frame {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.subscribe-form.is-submitting input {
    opacity: .72;
}

.subscribe-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.newsletter-dialog-backdrop[hidden] {
    display: none;
}

.newsletter-dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(3px);
}

.newsletter-dialog {
    position: relative;
    width: min(500px, 100%);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.newsletter-dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #555e6c;
    background: #f6f7f9;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
}

.newsletter-dialog-close:hover,
.newsletter-dialog-close:focus-visible {
    color: #111;
    background: #eceff3;
}

.newsletter-dialog-close svg {
    width: 19px;
    height: 19px;
}

.newsletter-dialog-content {
    padding: 42px 34px 34px;
    text-align: center;
}

.newsletter-dialog-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    color: #147b47;
    background: #eaf8f0;
    border-radius: 50%;
}

.newsletter-dialog-icon svg {
    width: 31px;
    height: 31px;
}

.newsletter-error-icon {
    display: none;
}

.newsletter-dialog.is-error .newsletter-dialog-icon {
    color: #a33a2b;
    background: #fff0ed;
}

.newsletter-dialog.is-error .newsletter-success-icon {
    display: none;
}

.newsletter-dialog.is-error .newsletter-error-icon {
    display: block;
}

.newsletter-dialog-kicker {
    margin: 0 0 7px;
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.newsletter-dialog h2 {
    margin: 0;
    color: #141414;
    font-size: 27px;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.newsletter-dialog-content > p:not(.newsletter-dialog-kicker) {
    max-width: 390px;
    margin: 12px auto 22px;
    color: #687181;
    line-height: 1.6;
}

.newsletter-dialog-confirm {
    min-width: 132px;
    min-height: 42px;
    padding: 9px 18px;
    color: #fff;
    background: #111;
    border: 1px solid #111;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
}

.newsletter-dialog-confirm:hover,
.newsletter-dialog-confirm:focus-visible {
    background: #292929;
}

body.newsletter-dialog-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .newsletter-dialog-backdrop {
        align-items: flex-end;
        padding: 0;
    }

    .newsletter-dialog {
        width: 100%;
        border-radius: 18px 18px 0 0;
    }

    .newsletter-dialog-content {
        padding: 40px 22px 30px;
    }

    .newsletter-dialog h2 {
        font-size: 24px;
    }

    .newsletter-dialog-confirm {
        width: 100%;
    }
}

/* Stage 6.24: compact typography for Navigation / technical pages only. */
.technical-page {
    padding: 36px 0 56px;
}

.technical-card {
    padding: clamp(28px, 4vw, 42px);
}

.technical-card > h1 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.technical-content {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.65;
}

.technical-content h2 {
    margin: 26px 0 12px;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.technical-content h3 {
    margin: 22px 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.technical-content p {
    margin: 0 0 14px;
}

.technical-content ul,
.technical-content ol {
    margin: 12px 0 18px;
    padding-left: 22px;
}

.technical-content li {
    margin: 3px 0;
}

.technical-content li > p {
    margin-bottom: 8px;
}

.technical-card .contact-action {
    margin-top: 24px;
}

@media (max-width: 760px) {
    .technical-page {
        padding: 24px 0 40px;
    }

    .technical-card {
        padding: 24px 18px;
    }

    .technical-card > h1 {
        font-size: 27px;
        line-height: 1.2;
    }

    .technical-content {
        margin-top: 20px;
        font-size: 16px;
    }

    .technical-content h2 {
        margin-top: 24px;
        font-size: 20px;
    }

    .technical-content h3 {
        font-size: 18px;
    }
}

/* Functional Offer report form */
.report-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.report-error[hidden] {
    display: none;
}

.report-error {
    margin-top: 16px;
    padding: 11px 13px;
    color: #8a2626;
    background: #fff1f1;
    border: 1px solid #efc8c8;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.45;
}

.report-submit:disabled {
    cursor: wait;
    opacity: .65;
}

/* Unified page and content heading scale */
:root {
    --content-h1-size: 28px;
    --content-h2-size: 23px;
    --content-h3-size: 19px;
    --content-h4-size: 17px;
}

.page-title,
.offer-main-copy h1,
.article-main-column .simple-article-header h1,
.article-main-column .article-header h1,
.technical-card > h1,
.technical-card h1,
.error-page-inner h1,
.search-header h1 {
    font-size: var(--content-h1-size);
}

.subscribe-copy h2,
.weekly-head h2,
.catalog-empty-state h2,
.how-to-section h2,
.offer-primary-column .how-to-section h2,
.how-to-content .how-to-get > h2:first-child,
.how-to-content > h2:first-child,
.article-detail-page .article-content h2,
.deals-article-page .deal-block h2,
.deals-article-page .deals-article-content .deal-block h2,
.technical-content h2 {
    font-size: var(--content-h2-size);
}

.article-detail-page .article-content h3,
.simple-article-page .resource-entry h3,
.simple-article-page .resource-card h3,
.technical-content h3 {
    font-size: var(--content-h3-size);
}

.article-detail-page .article-content h4,
.technical-content h4,
.how-to-content ol > li > :is(h2, h3, h4, strong),
.offer-steps strong,
.offer-primary-column .how-to-content ol > li > div > :is(h2, h3, h4, strong) {
    font-size: var(--content-h4-size);
}

@media (max-width: 1100px) {
    :root {
        --content-h1-size: 27px;
        --content-h2-size: 22px;
        --content-h3-size: 18px;
        --content-h4-size: 17px;
    }
}

@media (max-width: 700px) {
    :root {
        --content-h1-size: 25px;
        --content-h2-size: 21px;
        --content-h3-size: 18px;
        --content-h4-size: 16px;
    }
}

/* Header harmony: one type system, quieter controls and route-aware accent. */
.site-header,
.site-header a,
.site-header button,
.site-header input,
.site-header summary {
    font-family: inherit;
}

.top-header {
    padding-top: 13px;
    padding-bottom: 11px;
}

.primary-nav {
    gap: 24px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.012em;
}

.primary-nav a.primary-nav-link {
    position: relative;
    color: #e9eaee;
    transition: color 0.16s ease;
}

.primary-nav a.primary-nav-link::after {
    position: absolute;
    right: 0;
    bottom: -11px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), #43d9e6);
    border-radius: 999px;
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.primary-nav a.primary-nav-link:hover,
.primary-nav a.primary-nav-link:focus-visible,
.primary-nav a.primary-nav-link.is-current {
    color: #fff;
}

.primary-nav a.primary-nav-link:hover::after,
.primary-nav a.primary-nav-link:focus-visible::after {
    opacity: 0.55;
    transform: scaleX(0.38);
}

.primary-nav a.primary-nav-link.is-current::after {
    opacity: 1;
    transform: scaleX(1);
}

.search-box input {
    color: #f5f5f7;
    background: #0d0d0f;
    border-color: #303035;
    font-size: 14px;
    font-weight: 500;
}

.search-box input::placeholder {
    color: #8f949f;
}

.social-links,
.mobile-social-row {
    gap: 3px;
}

.social-link {
    width: 36px;
    height: 36px;
    color: #c9ccd3;
    border-radius: 10px;
    transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover,
.social-link:focus-visible {
    color: #fff;
    background: #17151d;
    border-color: #3b334f;
}

.desktop-category-bar {
    background: #0a0a0b;
    border-top-color: #202024;
    border-bottom: 1px solid #17171a;
}

.category-nav {
    min-height: 46px;
    gap: 28px;
    font-size: 13px;
    font-weight: 700;
}

.category-link,
.category-menu > summary {
    position: relative;
    min-height: 46px;
    color: #e7e8ec;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    transition: color 0.16s ease;
}

.category-link::after,
.category-menu > summary::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), #43d9e6);
    border-radius: 999px 999px 0 0;
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.category-link:hover,
.category-link:focus-visible,
.category-link.is-current,
.category-menu > summary:hover,
.category-menu > summary:focus-visible,
.category-menu.is-current > summary {
    color: #fff;
}

.category-link:hover::after,
.category-link:focus-visible::after,
.category-menu > summary:hover::after,
.category-menu > summary:focus-visible::after {
    opacity: 0.5;
    transform: scaleX(0.48);
}

.category-link.is-current::after,
.category-menu.is-current > summary::after {
    opacity: 1;
    transform: scaleX(1);
}

.subcategory-menu a.is-current {
    color: #fff;
    background: #28203c;
}

@media (max-width: 1120px) and (min-width: 761px) {
    .primary-nav {
        gap: 12px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .primary-nav a.primary-nav-link::after {
        bottom: -12px;
    }

    .category-nav {
        gap: 12px;
    }

    .category-link,
    .category-menu > summary {
        font-size: 12px;
        letter-spacing: 0.015em;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 900px) and (min-width: 761px) {
    .primary-nav {
        gap: 8px;
        font-size: 11px;
    }
}

@media (max-width: 760px) {
    .mobile-primary-nav {
        gap: 10px;
    }

    .mobile-primary-nav a {
        padding: 9px 11px;
        color: #e7e8ec;
        border: 1px solid transparent;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-primary-nav a.is-current {
        color: #fff;
        background: #211a32;
        border-color: #49386d;
    }

    .mobile-category-link.is-current,
    .mobile-category-menu.is-current > summary {
        color: #cdbfff;
    }

    .mobile-category-menu > div a.is-current {
        color: #fff;
        background: #28203c;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 22px;
        height: 22px;
    }
}

/* Header accent refinement: integrated active state without detached underlines. */
@media (min-width: 761px) {
    .primary-nav a.primary-nav-link::after,
    .category-link::after,
    .category-menu > summary::after {
        display: none;
    }

    .primary-nav a.primary-nav-link {
        min-height: 36px;
        padding: 0 9px;
        border: 1px solid transparent;
        border-radius: 9px;
        transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
    }

    .primary-nav a.primary-nav-link:hover,
    .primary-nav a.primary-nav-link:focus-visible {
        color: #fff;
        background: #151419;
        border-color: #29262f;
    }

    .primary-nav a.primary-nav-link.is-current {
        color: #fff;
        background: #211a31;
        border-color: #49396a;
    }

    .category-link.is-current,
    .category-menu.is-current > summary {
        color: #c9b8ff;
    }
}

@media (max-width: 1120px) and (min-width: 761px) {
    .primary-nav a.primary-nav-link {
        padding-inline: 6px;
        border-radius: 7px;
    }
}

/* Search icon accent: purple by default, cyan on interaction to match the wordmark. */
.search-box button {
    color: #a98cff;
    transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.search-box button:hover,
.search-box button:focus-visible,
.search-box:focus-within button {
    color: #43d9e6;
}

/* Compatibility for legacy Deals Article HTML pasted from external chat output. */
.deals-article-page .deals-article-content > div:has(> h3):has(> p > a.btn),
.deals-article-page .deals-article-content > div[style*="border-bottom"] {
    margin: 0 !important;
    padding: 24px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.deals-article-page .deals-article-content > div:has(> h3):has(> p > a.btn) > h3,
.deals-article-page .deals-article-content > div[style*="border-bottom"] > h3 {
    margin: 0;
    font-size: var(--content-h2-size);
    line-height: 1.27;
    letter-spacing: -.025em;
}

.deals-article-page .deals-article-content > div:has(> h3):has(> p > a.btn) > h3 a,
.deals-article-page .deals-article-content > div[style*="border-bottom"] > h3 a {
    color: #1c2128;
}

.deals-article-page .deals-article-content > div:has(> h3):has(> p > a.btn) > h3 a:hover,
.deals-article-page .deals-article-content > div:has(> h3):has(> p > a.btn) > h3 a:focus-visible,
.deals-article-page .deals-article-content > div[style*="border-bottom"] > h3 a:hover,
.deals-article-page .deals-article-content > div[style*="border-bottom"] > h3 a:focus-visible {
    color: var(--brand);
}

.deals-article-page .deals-article-content > div:has(> h3):has(> p > a.btn) > p,
.deals-article-page .deals-article-content > div[style*="border-bottom"] > p {
    margin: 12px 0 0;
    color: #596271;
    font-size: 16px;
    line-height: 1.62;
}

.deals-article-page .deals-article-content a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    color: #fff !important;
    background: var(--brand);
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 780;
    line-height: 1.2;
    text-decoration: none !important;
}

.deals-article-page .deals-article-content a.btn:hover,
.deals-article-page .deals-article-content a.btn:focus-visible {
    filter: brightness(.9);
}

.deals-article-page .deals-article-content > div[style*="border-left"]:has(strong) {
    margin: 28px 0 !important;
    padding: 17px 18px !important;
    border-radius: 10px !important;
}

.deals-article-page .deals-article-content > div[style*="border-left"]:has(strong) > p {
    margin: 0;
    color: #414955;
    line-height: 1.58;
}

@media (max-width: 760px) {
    .deals-article-page .deals-article-content a.btn {
        width: 100%;
    }
}
.ad-placement > ins.adsbygoogle {
    display: block;
    flex: 0 1 100%;
    width: 100%;
    min-width: 0;
}
.ad-placement--top {
    min-height: 250px;
}

@media (max-width: 1100px) {
    .ad-placement--top {
        min-height: 180px;
    }
}

@media (max-width: 760px) {
    .ad-placement--top {
        min-height: 90px;
    }
}