:root {
    --bg: #202124;
    --fg: #e8eaed;
    --muted: #9aa0a6;
    --border: #5f6368;
    --border-hover: #8a8d91;
    --field: #303134;
    --field-focus: #303134;
    --btn: #303134;
    --btn-hover: #3c3d40;
    --link: #8ab4f8;
    --url: #99c3a0;
    --footer-bg: #171717;
    --footer-border: #3c4043;
    --login: #8ab4f8;
    --login-hover: #a8c7fa;
    --shadow: rgba(0, 0, 0, 0.45);
    --radius-pill: 24px;
    --input-width: 560px;

    --logo-1: #8ab4f8;
    --logo-2: #ea4335;
    --logo-3: #fbbc05;
    --logo-4: #8ab4f8;
    --logo-5: #34a853;
    --logo-6: #f28b82;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

body.results {
    color: #e8eaed;
    background: #202124;
}

body.modal-open {
    overflow: hidden;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------- Logo (colorful, letter-by-letter) ---------- */
.logo {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: 1;
    letter-spacing: -4px;
    margin: 0;
    text-decoration: none;
    user-select: none;
    white-space: nowrap;
}

.logo .l1 { color: var(--logo-1); }
.logo .l2 { color: var(--logo-2); }
.logo .l3 { color: var(--logo-3); }
.logo .l4 { color: var(--logo-4); }
.logo .l5 { color: var(--logo-5); }
.logo .l6 { color: var(--logo-6); }

.logo-small {
    font-size: 32px;
    letter-spacing: -1.5px;
    flex: 0 0 auto;
}

/* ---------- Shared search box (pill) ---------- */
.search-form {
    width: 100%;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    width: var(--input-width);
    max-width: 90vw;
    height: 47px;
    margin: 0 auto;
    padding: 0 18px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.search-box:hover {
    border-color: var(--border-hover);
    box-shadow: 0 1px 8px var(--shadow);
}

.search-box:focus-within {
    border-color: var(--border-hover);
    background: var(--field-focus);
    box-shadow: 0 1px 10px var(--shadow);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--muted);
    flex: 0 0 auto;
}

.search-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--fg);
    font-size: 16px;
}

.search-input::placeholder {
    color: var(--muted);
}

.search-input::-webkit-search-decoration,
.search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/* ---------- Compact search button ---------- */
.btn-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border: 1px solid var(--btn);
    background: var(--btn);
    color: var(--fg);
    font-size: 14px;
    padding: 0 16px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-search:hover {
    background: var(--btn-hover);
    border-color: var(--border);
}

/* ---------- Home: full-viewport centered composition ---------- */
.topbar {
    width: 100%;
    padding: 18px 20px 0;
}

.topbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-link,
.footer-group a {
    color: var(--fg);
    font-size: 13px;
    text-decoration: none;
}

.topbar-link:hover,
.footer-group a:hover {
    text-decoration: underline;
}

.apps-button {
    display: grid;
    grid-template-columns: repeat(3, 4px);
    gap: 4px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.apps-button span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--fg);
    opacity: 0.9;
}

.apps-button:hover {
    background: rgba(232, 234, 237, 0.08);
}

.login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 23px;
    border-radius: 999px;
    background: var(--login);
    color: #202124;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.login-button:hover {
    background: var(--login-hover);
}

.home .page {
    position: relative;
}

.search-stage {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 24px 24px 180px;
    gap: 28px;
}

.search-stage .search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-stage .search-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.search-language {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.search-language a {
    color: var(--link);
    text-decoration: none;
}

.search-language a:hover {
    text-decoration: underline;
}

.site-footer {
    background: var(--footer-bg);
    color: var(--muted);
}

.footer-region {
    padding: 15px 30px;
    border-top: 1px solid var(--footer-border);
    border-bottom: 1px solid var(--footer-border);
    font-size: 15px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 30px;
    min-height: 46px;
    flex-wrap: wrap;
}

.footer-group {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding: 12px 0;
}

.footer-group a {
    color: var(--muted);
}

/* ---------- Results page ---------- */
.serp-header {
    border-bottom: 1px solid #3c4043;
    background: #202124;
}

.serp-header-main {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px 14px;
    flex-wrap: wrap;
}

.serpent-logo {
    color: inherit;
}

.search-form-top {
    flex: 1 1 520px;
    max-width: 720px;
}

.search-form-top .search-box.serp-search-box {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 14px 0 20px;
    height: 46px;
    background: #303134;
    border: 1px solid #5f6368;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.search-form-top .search-box.serp-search-box:hover,
.search-form-top .search-box.serp-search-box:focus-within {
    background: #303134;
    border-color: #8a8d91;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.serp-search-input {
    color: #e8eaed;
    font-size: 16px;
}

.serp-search-input::placeholder {
    color: #9aa0a6;
}

.serp-search-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    padding-left: 14px;
    border-left: 1px solid #5f6368;
}

.serp-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #bdc1c6;
    text-decoration: none;
    cursor: pointer;
}

.serp-icon-button svg {
    width: 20px;
    height: 20px;
}

.serp-icon-button:hover {
    background: #303134;
}

.serp-icon-search {
    color: #8ab4f8;
}

.serp-header-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.serp-apps-button {
    padding: 0;
    width: 36px;
    height: 36px;
}

.serp-apps-button span {
    background: #bdc1c6;
}

.results-login {
    margin-left: 4px;
}

.serp-tabs {
    display: flex;
    gap: 28px;
    padding: 0 28px 0 118px;
    flex-wrap: wrap;
}

.serp-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #bdc1c6;
    font-size: 14px;
    text-decoration: none;
}

.serp-tab:hover {
    color: #e8eaed;
}

.serp-tab-active {
    color: #8ab4f8;
}

.serp-tab-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: #8ab4f8;
}

.serp-shell {
    width: 100%;
}

.serp-main {
    display: grid;
    grid-template-columns: minmax(0, 640px) 330px;
    gap: 36px;
    align-items: start;
    max-width: 1180px;
    padding: 18px 28px 64px 118px;
}

.serp-left-column {
    min-width: 0;
}

.results-meta {
    color: #9aa0a6;
    font-size: 14px;
    margin: 0 0 24px;
}

.generated-result {
    margin-bottom: 34px;
}

.generated-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.generated-result-site {
    display: flex;
    align-items: center;
    gap: 12px;
}

.generated-avatar,
.knowledge-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #8ab4f8);
    color: #e8f0fe;
    font-weight: 700;
}

.generated-avatar {
    width: 34px;
    height: 34px;
    font-size: 16px;
}

.generated-name {
    font-size: 14px;
    color: #e8eaed;
}

.generated-display-url {
    color: #bdc1c6;
    font-size: 13px;
    text-decoration: none;
    word-break: break-all;
}

.generated-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.generated-menu span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #bdc1c6;
}

.generated-menu:hover {
    background: #303134;
}

.result-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.result {
    max-width: 640px;
}

.result-source-line {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 4px;
}

.result-source-name {
    color: #e8eaed;
    font-size: 14px;
}

.result-url {
    display: inline-block;
    color: #bdc1c6;
    font-size: 14px;
    text-decoration: none;
    word-break: break-all;
}

.result-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
}

.result-title a {
    color: #8ab4f8;
    text-decoration: none;
}

.result-title a:hover {
    text-decoration: underline;
}

.result-desc {
    margin: 0 0 10px;
    color: #bdc1c6;
    font-size: 14px;
    line-height: 1.58;
}

.result-cta {
    display: inline-block;
    color: #8ab4f8;
    background: transparent;
    border: none;
    font-size: 14px;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
}

.result-cta:hover,
.generated-more:hover,
.knowledge-rating a:hover {
    text-decoration: underline;
}

.generated-sitelinks {
    display: grid;
    gap: 10px;
    margin: 18px 0 14px;
}

.generated-sitelink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    background: #252629;
    border: 1px solid #3c4043;
    border-radius: 14px;
    color: #e8eaed;
    text-decoration: none;
}

.generated-sitelink:hover {
    background: #303134;
}

.generated-sitelink-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.generated-sitelink-copy strong {
    color: #8ab4f8;
    font-size: 16px;
    font-weight: 500;
}

.generated-sitelink-copy span {
    color: #bdc1c6;
    font-size: 13px;
    line-height: 1.45;
}

.generated-sitelink-arrow {
    color: #9aa0a6;
    font-size: 22px;
}

.generated-more,
.knowledge-rating a {
    color: #8ab4f8;
    text-decoration: none;
}

.knowledge-panel {
    border: 1px solid #3c4043;
    border-radius: 18px;
    overflow: hidden;
    background: #202124;
}

.knowledge-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    background: linear-gradient(135deg, #1f3b63, #203a5f 45%, #3b2a3c);
}

.knowledge-monogram {
    width: 84px;
    height: 84px;
    font-size: 34px;
}

.knowledge-body {
    padding: 20px 20px 22px;
}

.knowledge-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: #e8eaed;
}

.knowledge-rating,
.knowledge-category,
.knowledge-about {
    margin: 0 0 10px;
    color: #bdc1c6;
    font-size: 14px;
    line-height: 1.5;
}

.knowledge-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 18px;
}

.knowledge-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #5f6368;
    border-radius: 999px;
    color: #8ab4f8;
    font-size: 14px;
    text-decoration: none;
    background: #202124;
}

.knowledge-action-button {
    font-family: inherit;
    cursor: pointer;
}

.knowledge-action:hover {
    background: #303134;
}

.knowledge-details {
    display: grid;
    gap: 12px;
    padding-top: 4px;
    border-top: 1px solid #3c4043;
}

.knowledge-row {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    color: #bdc1c6;
    font-size: 14px;
}

.knowledge-label {
    color: #e8eaed;
    font-weight: 500;
}

.reviews-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.reviews-modal[hidden] {
    display: none;
}

.reviews-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.reviews-modal-panel {
    position: relative;
    width: 800px;
    max-width: calc(100vw - 32px);
    max-height: 85vh;
    border: 1px solid #3c4043;
    border-radius: 24px;
    background: #242528;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.reviews-modal-scroll {
    max-height: 85vh;
    overflow-y: auto;
    padding: 24px;
}

.reviews-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.reviews-modal-title {
    margin: 0 0 8px;
    color: #e8eaed;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}

.reviews-modal-address,
.reviews-modal-rating,
.reviews-sort-label,
.reviews-modal .modal-review-meta span,
.reviews-modal .modal-review-rating-line,
.reviews-modal .modal-review-text,
.reviews-modal .modal-review-action-button {
    color: #bdc1c6;
}

.reviews-modal-address,
.reviews-modal-rating {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
}

.reviews-modal-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.reviews-write-button,
.reviews-chip,
.reviews-close-button,
.reviews-modal .modal-review-action-button {
    border: 1px solid #5f6368;
    border-radius: 999px;
    background: #303134;
    color: #e8eaed;
    font: inherit;
}

.reviews-write-button {
    min-height: 38px;
    padding: 0 16px;
    cursor: pointer;
}

.reviews-write-button:hover,
.reviews-chip:hover,
.reviews-close-button:hover,
.reviews-modal .modal-review-action-button:hover {
    background: #3c4043;
}

.reviews-close-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
}

.reviews-close-button svg {
    width: 18px;
    height: 18px;
}

.reviews-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.reviews-chip {
    min-height: 36px;
    padding: 0 14px;
    cursor: pointer;
}

.reviews-chip-active {
    border-color: #1a73e8;
    background: #1f3b63;
    color: #8ab4f8;
}

.reviews-sort {
    padding: 18px 0 10px;
    border-top: 1px solid #3c4043;
}

.reviews-sort-label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
}

.reviews-sort-chips {
    margin-bottom: 0;
}

.reviews-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.reviews-modal .modal-review-card {
    padding: 18px;
    border: 1px solid #3c4043;
    border-radius: 18px;
    background: #303134;
}

.reviews-modal .modal-review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviews-modal .modal-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #8ab4f8);
    color: #e8f0fe;
    font-weight: 700;
}

.reviews-modal .modal-review-meta {
    display: grid;
    gap: 3px;
}

.reviews-modal .modal-review-meta strong {
    color: #e8eaed;
    font-size: 15px;
}

.reviews-modal .modal-review-meta span,
.reviews-modal .modal-review-rating-line,
.reviews-modal .modal-review-text,
.reviews-modal .modal-review-action-button {
    font-size: 14px;
}

.reviews-modal .modal-review-rating-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviews-stars {
    color: #fbbc04;
    letter-spacing: 1px;
}

.reviews-modal .modal-review-text {
    margin: 0;
    color: #e8eaed;
    line-height: 1.6;
}

.reviews-modal .modal-review-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.reviews-modal .modal-review-action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .serp-main {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .serp-header-main {
        padding: 16px;
        gap: 16px;
    }

    .serp-tabs {
        padding: 0 16px;
        gap: 18px;
    }

    .serp-main {
        padding: 18px 16px 48px;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 60px;
        letter-spacing: -2px;
    }

    .search-stage {
        padding: 20px 16px 140px;
        gap: 24px;
    }

    .search-form-top {
        flex-basis: 100%;
        max-width: none;
    }

    .topbar {
        padding: 14px 16px 0;
    }

    .topbar-nav {
        gap: 12px;
    }

    .login-button {
        min-height: 36px;
        padding: 0 18px;
    }

    .footer-region,
    .footer-links {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-group {
        gap: 18px;
    }

    .serp-search-actions {
        padding-left: 8px;
    }

    .serp-header-tools {
        width: 100%;
        justify-content: flex-end;
        margin-left: 0;
    }

    .serp-tabs {
        min-height: auto;
        padding-bottom: 2px;
    }

    .serp-main {
        gap: 24px;
    }

    .knowledge-body {
        padding: 18px 16px 20px;
    }

    .reviews-modal {
        padding: 12px;
    }

    .reviews-modal-panel,
    .reviews-modal-scroll {
        max-height: 90vh;
    }

    .reviews-modal-scroll {
        padding: 18px 16px;
    }

    .reviews-modal-header {
        flex-direction: column;
    }

    .reviews-modal-top-actions {
        width: 100%;
        justify-content: space-between;
    }

    .reviews-modal-title {
        font-size: 28px;
    }
}

/* ---------- Domain Review Pages ---------- */
body.review-site {
    margin: 0;
    background: #f5efe4;
    color: #221b18;
    font-family: Georgia, "Times New Roman", serif;
}

html:has(body.review-site) {
    scroll-behavior: smooth;
}

.review-page {
    min-height: 100vh;
}

.review-shell {
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.review-masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0 26px;
    border-bottom: 1px solid #ddd1bf;
}

.review-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c54c35;
    color: #fff4ea;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    text-decoration: none;
}

.review-brand-copy {
    display: grid;
    gap: 3px;
}

.review-brand-copy strong {
    font-size: 26px;
    font-style: italic;
    line-height: 1;
}

.review-brand-copy span,
.review-nav a {
    font-family: Arial, Helvetica, sans-serif;
}

.review-brand-copy span {
    color: #786d63;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.review-nav a {
    color: #4b4038;
    font-size: 15px;
    text-decoration: none;
}

.review-nav a:hover,
.review-related-card h3 a:hover {
    text-decoration: underline;
}

.review-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #1c1c1c;
    color: #fff8ef;
    font-weight: 700;
    border: 1px solid #1c1c1c;
    box-shadow: inset 0 0 0 1px rgba(255, 248, 239, 0.08);
}

.review-nav-cta:hover {
    background: #2a2521;
    color: #fffdf9;
    text-decoration: none;
}

.review-nav a.review-nav-cta,
.review-nav a.review-nav-cta:visited {
    color: #fff8ef;
}

.review-nav-cta:focus-visible,
.review-primary-cta:focus-visible,
.review-secondary-cta:focus-visible {
    outline: 3px solid #c54c35;
    outline-offset: 3px;
}

.review-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 360px;
    gap: 44px;
    padding: 54px 0 30px;
}

.review-eyebrow,
.review-section-header span,
.review-section-kicker,
.review-related-card span {
    margin: 0 0 18px;
    color: #c54c35;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.review-headline {
    margin: 0;
    max-width: 760px;
    font-size: clamp(3rem, 5.2vw, 5.25rem);
    font-style: italic;
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.review-subtitle {
    max-width: 740px;
    margin: 28px 0;
    color: #64594e;
    font-size: 2rem;
    font-style: italic;
    line-height: 1.3;
}

.review-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid #ddd1bf;
    font-family: Arial, Helvetica, sans-serif;
}

.review-byline-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eadfcf;
    color: #221b18;
    font-size: 20px;
    font-weight: 700;
}

.review-byline strong,
.review-byline span {
    display: block;
}

.review-byline span {
    margin-top: 4px;
    color: #786d63;
    font-size: 14px;
}

.review-sidebar-card,
.review-card,
.review-conversion-banner {
    border: 1px solid #ddd1bf;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.72);
}

.review-sidebar-card {
    position: sticky;
    top: 22px;
    align-self: start;
    padding: 24px;
}

.review-score-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.review-score-top strong {
    font-size: 3rem;
    font-style: italic;
}

.review-score-label,
.review-score-stars span,
.review-summary-band span,
.review-facts dt,
.review-footer p,
.review-footer a {
    font-family: Arial, Helvetica, sans-serif;
}

.review-score-label {
    color: #786d63;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-score-stars {
    margin: 10px 0 14px;
    color: #c54c35;
    font-size: 1.1rem;
}

.review-score-stars span {
    margin-left: 8px;
    color: #786d63;
    font-size: 14px;
}

.review-score-summary {
    margin: 0 0 18px;
    color: #4b4038;
    font-size: 1.05rem;
    line-height: 1.65;
}

.review-primary-cta,
.review-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.review-primary-cta {
    background: #c54c35;
    color: #fff4ea;
}

.review-secondary-cta {
    border: 1px solid #bcae9f;
    color: #332925;
    background: transparent;
}

.review-highlights,
.review-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

.review-highlights li,
.review-card li {
    margin-bottom: 10px;
    color: #4b4038;
    line-height: 1.6;
}

.review-summary-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 20px 0 34px;
}

.review-summary-band div {
    padding: 18px 20px;
    border-top: 2px solid #231d18;
    background: rgba(255, 250, 242, 0.48);
}

.review-summary-band strong {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    word-break: break-word;
}

.review-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
    align-items: start;
}

.review-main-column {
    min-width: 0;
}

.review-intro-card,
.review-conversion-banner {
    padding: 28px 30px;
}

.review-intro-card p,
.review-section-copy p,
.review-footer p {
    margin: 0 0 22px;
    font-size: 1.14rem;
    line-height: 1.76;
}

.review-intro-card blockquote {
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid #c54c35;
    font-size: 1.7rem;
    font-style: italic;
    line-height: 1.35;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0 8px;
}

.review-card {
    padding: 24px;
}

.review-card h2,
.review-section-copy h2,
.review-section-header h2,
.review-conversion-banner h2,
.review-related-card h3,
.review-rail-card h3 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-style: italic;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.review-card h2 {
    font-size: 2rem;
}

.review-card-warning {
    background: rgba(250, 239, 228, 0.9);
}

.review-section {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    padding: 36px 0;
    border-top: 1px solid #ddd1bf;
}

.review-section-kicker {
    margin-top: 8px;
    text-align: center;
}

.review-section-copy h2 {
    max-width: 12ch;
}

.review-floating-rail {
    position: sticky;
    top: 24px;
}

.review-rail-card h3 {
    font-size: 1.8rem;
}

.review-facts {
    margin: 0 0 18px;
}

.review-facts div {
    display: grid;
    gap: 4px;
    padding: 12px 0;
    border-top: 1px solid #ddd1bf;
}

.review-facts dt {
    color: #786d63;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-facts dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.review-conversion-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    background: #bf4532;
    color: #fff4ea;
    scroll-margin-top: 80px;
}

.review-banner-kicker {
    margin: 0 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.review-conversion-banner h2 {
    margin: 0;
    max-width: 13ch;
}

.review-conversion-banner .review-primary-cta {
    flex-shrink: 0;
    background: #1d1714;
}

.review-faq,
.review-related {
    padding-top: 42px;
}

.review-section-header {
    margin-bottom: 18px;
    padding-top: 24px;
    border-top: 2px solid #231d18;
}

.review-faq-list {
    border-bottom: 1px solid #ddd1bf;
}

.review-faq-item {
    border-top: 1px solid #ddd1bf;
}

.review-faq-item summary {
    position: relative;
    padding: 22px 40px 22px 0;
    list-style: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
}

.review-faq-item summary::-webkit-details-marker {
    display: none;
}

.review-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 4px;
    color: #c54c35;
    font-size: 28px;
    line-height: 1;
}

.review-faq-item[open] summary::after {
    content: "−";
}

.review-faq-item p {
    margin: 0;
    padding: 0 0 22px;
    color: #4b4038;
    font-size: 1rem;
    line-height: 1.7;
}

.review-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-related-card {
    padding-top: 18px;
    border-top: 1px solid #ddd1bf;
}

.review-related-card span {
    margin-bottom: 10px;
    display: block;
}

.review-related-card h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.review-related-card h3 a {
    color: #221b18;
    text-decoration: none;
}

.review-related-card p {
    margin: 0;
    color: #786d63;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.review-footer {
    margin-top: 54px;
    padding: 26px 0 0;
    border-top: 1px solid #ddd1bf;
    text-align: center;
}

.review-footer strong {
    display: block;
    margin-bottom: 12px;
    font-size: 2.1rem;
    font-style: italic;
}

.review-footer p {
    max-width: 720px;
    margin: 0 auto 18px;
    color: #786d63;
}

.review-footer div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.review-footer a {
    color: #4b4038;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .review-hero,
    .review-content-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .review-sidebar-card,
    .review-floating-rail {
        position: static;
    }
}

@media (max-width: 800px) {
    .review-shell {
        width: min(100vw - 32px, 1180px);
        padding-top: 18px;
    }

    .review-masthead,
    .review-pros-cons,
    .review-summary-band,
    .review-related-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .review-masthead {
        align-items: flex-start;
    }

    .review-summary-band {
        display: grid;
    }

    .review-section {
        grid-template-columns: minmax(0, 1fr);
    }

    .review-section-kicker {
        text-align: left;
    }

    .review-conversion-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .review-headline {
        max-width: none;
        font-size: clamp(2.75rem, 11vw, 3.5rem);
        line-height: 0.98;
    }

    .review-subtitle {
        font-size: 1.45rem;
    }

    .review-nav {
        gap: 12px;
    }

    .review-card,
    .review-sidebar-card,
    .review-intro-card,
    .review-conversion-banner {
        padding: 20px;
    }
}

/* ---------- Marketmemo Domain Page ---------- */
.marketmemo-page {
    background: #f6f0e5;
    color: #241e1a;
}

.marketmemo-page .review-page,
.marketmemo-page .page {
    min-height: 100vh;
}

.marketmemo-page .mm-page {
    width: min(1260px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.marketmemo-page .mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0 22px;
    border-bottom: 1px solid #ddd2c0;
}

.marketmemo-page .mm-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.marketmemo-page .mm-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #c54c35;
    color: #fff7ef;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    text-decoration: none;
}

.marketmemo-page .mm-brand-copy {
    display: grid;
    gap: 4px;
}

.marketmemo-page .mm-brand-copy strong,
.marketmemo-page .mm-footer strong {
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1;
}

.marketmemo-page .mm-brand-copy span,
.marketmemo-page .mm-nav a,
.marketmemo-page .mm-engagement,
.marketmemo-page .mm-breadcrumbs,
.marketmemo-page .mm-score-card span,
.marketmemo-page .mm-section-heading span,
.marketmemo-page .mm-honest-column span,
.marketmemo-page .mm-footnote-row strong,
.marketmemo-page .mm-footer div a,
.marketmemo-page .mm-score-card,
.marketmemo-page .mm-subscribe-form input,
.marketmemo-page .mm-subscribe-form button,
.marketmemo-page .mm-author-copy span,
.marketmemo-page .mm-rail-card,
.marketmemo-page .mm-comment-meta span {
    font-family: Arial, Helvetica, sans-serif;
}

.marketmemo-page .mm-brand-copy span {
    color: #776d64;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.marketmemo-page .mm-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.marketmemo-page .mm-nav a {
    color: #4a4038;
    font-size: 15px;
    text-decoration: none;
}

.marketmemo-page .mm-subscribe-link,
.marketmemo-page .mm-visit-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #1c1917;
    color: #fff7ec;
    font-weight: 700;
    opacity: 1;
    text-decoration: none;
}

.marketmemo-page .mm-nav a.mm-subscribe-link,
.marketmemo-page .mm-nav a.mm-visit-offer,
.marketmemo-page .mm-nav a.mm-subscribe-link:visited,
.marketmemo-page .mm-nav a.mm-visit-offer:visited {
    color: #fff7ec;
    text-decoration: none;
}

.marketmemo-page .mm-visit-offer:hover,
.marketmemo-page .mm-subscribe-link:hover {
    background: #2a2521;
    color: #ffffff;
    text-decoration: none;
}

.marketmemo-page .mm-subscribe-link:focus-visible,
.marketmemo-page .mm-visit-offer:focus-visible {
    outline: 2px solid #d54b38;
    outline-offset: 3px;
}

.marketmemo-page .mm-related-card h3 a:hover,
.marketmemo-page .mm-related-card h3 a:hover,
.marketmemo-page .mm-footer div a:hover {
    text-decoration: underline;
}

.marketmemo-page .mm-article {
    max-width: 1180px;
    margin: 0 auto;
}

.marketmemo-page .mm-hero {
    display: grid;
    grid-template-columns: minmax(0, 780px) 320px;
    justify-content: space-between;
    gap: 48px;
    padding: 52px 0 26px;
}

.marketmemo-page .mm-eyebrow,
.marketmemo-page .mm-section-marker,
.marketmemo-page .mm-related-card span,
.marketmemo-page .mm-section-heading span {
    margin: 0 0 18px;
    color: #c54c35;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.marketmemo-page .mm-headline {
    margin: 0;
    max-width: 820px;
    font-size: clamp(2.625rem, 5vw, 5.125rem);
    font-style: italic;
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.marketmemo-page .mm-deck {
    max-width: 780px;
    margin: 26px 0;
    color: #665b51;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.35;
}

.marketmemo-page .mm-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid #ddd2c0;
    border-bottom: 1px solid #ddd2c0;
}

.marketmemo-page .mm-author-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.marketmemo-page .mm-author-avatar,
.marketmemo-page .mm-author-bio-avatar,
.marketmemo-page .mm-comment-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff8ef;
    font-weight: 700;
}

.marketmemo-page .mm-author-avatar,
.marketmemo-page .mm-author-bio-avatar {
    width: 52px;
    height: 52px;
    background: #b78b66;
}

.marketmemo-page .mm-author-copy {
    display: grid;
    gap: 4px;
}

.marketmemo-page .mm-author-copy strong,
.marketmemo-page .mm-comment-meta strong {
    font-size: 1.05rem;
}

.marketmemo-page .mm-author-copy span,
.marketmemo-page .mm-comment-meta span {
    color: #7a7067;
    font-size: 14px;
}

.marketmemo-page .mm-engagement {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #7a7067;
    font-size: 14px;
}

.marketmemo-page .mm-breadcrumbs {
    margin: 18px 0 0;
    color: #7a7067;
    font-size: 14px;
}

.marketmemo-page .mm-hero-aside {
    display: grid;
    gap: 16px;
    align-content: start;
}

.marketmemo-page .mm-score-card,
.marketmemo-page .mm-verdict-card,
.marketmemo-page .mm-subscribe-block,
.marketmemo-page .mm-author-bio {
    border: 1px solid #ddd2c0;
    background: rgba(255, 249, 240, 0.72);
}

.marketmemo-page .mm-score-card {
    padding: 22px;
    border-radius: 22px;
}

.marketmemo-page .mm-score-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.marketmemo-page .mm-score-top strong {
    font-size: 3rem;
    font-style: italic;
}

.marketmemo-page .mm-score-stars {
    margin: 10px 0 14px;
    color: #c54c35;
}

.marketmemo-page .mm-score-stars span {
    margin-left: 8px;
    color: #7a7067;
}

.marketmemo-page .mm-score-summary,
.marketmemo-page .mm-section-content p,
.marketmemo-page .mm-comment-body p,
.marketmemo-page .mm-footnote-row p,
.marketmemo-page .mm-author-bio-copy p,
.marketmemo-page .mm-footer p {
    font-size: 1.16rem;
    line-height: 1.76;
}

.marketmemo-page .mm-highlights {
    margin: 18px 0 0;
    padding-left: 18px;
}

.marketmemo-page .mm-highlights li {
    margin-bottom: 10px;
    color: #4c4038;
    line-height: 1.6;
}

.marketmemo-page .mm-figure {
    width: min(780px, 100%);
    margin: 0 0 30px;
}

.marketmemo-page .mm-figure-chart {
    position: relative;
    height: 320px;
    border: 1px solid #544334;
    background: linear-gradient(145deg, #2d241f, #6d4327);
    overflow: hidden;
}

.marketmemo-page .mm-figure-chart::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 100% 80px,
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 66px 100%;
}

.marketmemo-page .mm-bar {
    position: absolute;
    bottom: 58px;
    width: 14px;
    background: #2e8d67;
}

.marketmemo-page .mm-bar:nth-child(even) {
    background: #9f5f58;
}

.marketmemo-page .mm-bar-1 { left: 18px; height: 78px; }
.marketmemo-page .mm-bar-2 { left: 46px; height: 112px; }
.marketmemo-page .mm-bar-3 { left: 74px; height: 142px; }
.marketmemo-page .mm-bar-4 { left: 102px; height: 88px; }
.marketmemo-page .mm-bar-5 { left: 156px; height: 136px; }
.marketmemo-page .mm-bar-6 { left: 212px; height: 166px; }
.marketmemo-page .mm-bar-7 { left: 298px; height: 104px; }
.marketmemo-page .mm-bar-8 { left: 352px; height: 198px; }
.marketmemo-page .mm-bar-9 { left: 426px; height: 236px; }
.marketmemo-page .mm-bar-10 { left: 506px; height: 176px; }
.marketmemo-page .mm-bar-11 { left: 602px; height: 258px; }
.marketmemo-page .mm-bar-12 { left: 692px; height: 218px; }

.marketmemo-page .mm-curve {
    position: absolute;
    right: -12px;
    bottom: 58px;
    width: 78%;
    height: 160px;
    border-bottom: 4px solid #c8a644;
    border-right: 4px solid #c8a644;
    border-bottom-right-radius: 160px 120px;
    transform: skewX(-22deg);
}

.marketmemo-page .mm-figure-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    color: #e5c15b;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.marketmemo-page .mm-figure figcaption {
    margin-top: 14px;
    color: #7a7067;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.55;
}

.marketmemo-page .mm-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) 280px;
    justify-content: space-between;
    gap: 42px;
}

.marketmemo-page .mm-main {
    min-width: 0;
}

.marketmemo-page .mm-section {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    padding: 42px 0 0;
    border-top: 1px solid #ddd2c0;
}

.marketmemo-page .mm-section-content h2,
.marketmemo-page .mm-section-heading h2,
.marketmemo-page .mm-subscribe-block h2,
.marketmemo-page .mm-author-bio-copy h2,
.marketmemo-page .mm-discussion-header h2,
.marketmemo-page .mm-related-card h3,
.marketmemo-page .mm-verdict-copy h3 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.marketmemo-page .mm-section-content h2 {
    max-width: 12ch;
}

.marketmemo-page .mm-pull-quote {
    margin: 28px 0;
    padding: 28px 0 0;
    border-top: 2px solid #231d18;
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    font-style: italic;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.marketmemo-page .mm-stat-block {
    margin-top: 24px;
    padding: 22px 24px;
    border-left: 6px solid #231d18;
    background: #f1e7d0;
}

.marketmemo-page .mm-stat-block span {
    display: block;
    color: #4b4038;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.marketmemo-page .mm-stat-block strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 3rem;
    font-style: italic;
}

.marketmemo-page .mm-stat-block p {
    margin: 0;
    color: #675b52;
    font-size: 1rem;
}

.marketmemo-page .mm-verdict-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 20px;
    margin: 34px 0 6px 82px;
    padding: 26px 28px;
    border-radius: 24px;
}

.marketmemo-page .mm-verdict-copy span,
.marketmemo-page .mm-honest-column span,
.marketmemo-page .mm-live-offer p,
.marketmemo-page .mm-subscribe-block small,
.marketmemo-page .mm-section-heading span {
    color: #c54c35;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.marketmemo-page .mm-verdict-copy p,
.marketmemo-page .mm-honest-column li,
.marketmemo-page .mm-subscribe-block p,
.marketmemo-page .mm-faq-item p {
    color: #4c4038;
    font-size: 1.1rem;
    line-height: 1.7;
}

.marketmemo-page .mm-verdict-score {
    display: grid;
    align-content: start;
    gap: 10px;
    text-align: center;
}

.marketmemo-page .mm-verdict-score strong {
    font-size: 4rem;
    font-style: italic;
}

.marketmemo-page .mm-verdict-score div {
    color: #c54c35;
}

.marketmemo-page .mm-verdict-score a,
.marketmemo-page .mm-primary-button,
.marketmemo-page .mm-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.marketmemo-page .mm-verdict-score a,
.marketmemo-page .mm-primary-button {
    background: #c54c35;
    color: #fff8ef;
}

.marketmemo-page .mm-secondary-button {
    border: 1px solid #bdaea0;
    color: #2d241f;
}

.marketmemo-page .mm-honest-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 38px 0;
}

.marketmemo-page .mm-honest-column {
    padding-top: 18px;
    border-top: 1px solid #ddd2c0;
}

.marketmemo-page .mm-honest-column ol {
    margin: 16px 0 0;
    padding-left: 22px;
}

.marketmemo-page .mm-honest-column li {
    margin-bottom: 12px;
}

.marketmemo-page .mm-live-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 36px 0 28px;
    padding: 30px;
    background: #bf4532;
    color: #fff4ea;
    scroll-margin-top: 80px;
}

.marketmemo-page .mm-live-offer p {
    margin: 0 0 10px;
    color: #ffd7ca;
}

.marketmemo-page .mm-live-offer h2 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
    font-style: italic;
    line-height: 1.04;
}

.marketmemo-page .mm-subscribe-block,
.marketmemo-page .mm-author-bio {
    padding: 32px;
}

.marketmemo-page .mm-subscribe-block {
    text-align: center;
}

.marketmemo-page .mm-subscribe-block h2 {
    margin-bottom: 10px;
}

.marketmemo-page .mm-subscribe-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 22px auto 16px;
    max-width: 580px;
}

.marketmemo-page .mm-subscribe-form input {
    flex: 1 1 auto;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid #ddd2c0;
    background: #fffdf8;
    color: #241e1a;
    font-size: 1.1rem;
}

.marketmemo-page .mm-subscribe-form button {
    min-width: 150px;
    border: none;
    background: #1e1a18;
    color: #fff8ef;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.marketmemo-page .mm-footnotes,
.marketmemo-page .mm-faq,
.marketmemo-page .mm-related,
.marketmemo-page .mm-discussion {
    padding-top: 40px;
}

.marketmemo-page .mm-section-heading {
    padding-top: 18px;
    border-top: 2px solid #231d18;
}

.marketmemo-page .mm-footnotes-list {
    display: grid;
    gap: 16px;
}

.marketmemo-page .mm-footnote-row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 18px;
}

.marketmemo-page .mm-author-bio {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.marketmemo-page .mm-author-bio-avatar {
    width: 86px;
    height: 86px;
    font-size: 2rem;
}

.marketmemo-page .mm-author-bio-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.marketmemo-page .mm-discussion-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 2px solid #231d18;
}

.marketmemo-page .mm-comments-list {
    display: grid;
}

.marketmemo-page .mm-comment {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #ddd2c0;
}

.marketmemo-page .mm-comment-avatar {
    width: 48px;
    height: 48px;
    background: #c2824d;
}

.marketmemo-page .mm-comment-body p {
    margin: 10px 0 0;
}

.marketmemo-page .mm-comments-more {
    display: inline-flex;
    margin-top: 22px;
    color: #c54c35;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.marketmemo-page .mm-faq-list {
    border-bottom: 1px solid #ddd2c0;
}

.marketmemo-page .mm-faq-item {
    border-top: 1px solid #ddd2c0;
}

.marketmemo-page .mm-faq-item summary {
    position: relative;
    padding: 22px 34px 22px 0;
    list-style: none;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
}

.marketmemo-page .mm-faq-item summary::-webkit-details-marker {
    display: none;
}

.marketmemo-page .mm-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 0;
    color: #c54c35;
    font-size: 28px;
}

.marketmemo-page .mm-faq-item[open] summary::after {
    content: "−";
}

.marketmemo-page .mm-faq-item p {
    margin: 0;
    padding: 0 0 22px;
}

.marketmemo-page .mm-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.marketmemo-page .mm-related-card {
    padding-top: 18px;
    border-top: 1px solid #ddd2c0;
}

.marketmemo-page .mm-related-card h3 {
    font-size: 2.2rem;
}

.marketmemo-page .mm-related-card h3 a {
    color: #241e1a;
    text-decoration: none;
}

.marketmemo-page .mm-related-card p,
.marketmemo-page .mm-footer p {
    color: #7a7067;
}

.marketmemo-page .mm-rail {
    position: sticky;
    top: 24px;
    align-self: start;
}

.marketmemo-page .mm-rail-card {
    padding-top: 10px;
}

.marketmemo-page .mm-rail-card h3 {
    margin: 0 0 18px;
    font-size: 1.5rem;
    font-style: italic;
}

.marketmemo-page .mm-rail-card dl {
    margin: 0;
}

.marketmemo-page .mm-rail-card div {
    padding: 12px 0;
    border-top: 1px solid #ddd2c0;
}

.marketmemo-page .mm-rail-card dt {
    color: #7a7067;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.marketmemo-page .mm-rail-card dd {
    margin: 6px 0 0;
    font-size: 1rem;
}

.marketmemo-page .mm-rail-card a {
    color: #c54c35;
}

.marketmemo-page .mm-footer {
    margin-top: 56px;
    padding: 28px 0 0;
    border-top: 1px solid #ddd2c0;
    text-align: center;
}

.marketmemo-page .mm-footer p {
    max-width: 760px;
    margin: 12px auto 18px;
}

.marketmemo-page .mm-footer div {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.marketmemo-page .mm-footer div a {
    color: #4a4038;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .marketmemo-page .mm-hero,
    .marketmemo-page .mm-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .marketmemo-page .mm-rail {
        position: static;
    }
}

@media (max-width: 800px) {
    .marketmemo-page .mm-page {
        width: min(100vw - 32px, 1260px);
    }

    .marketmemo-page .mm-header,
    .marketmemo-page .mm-meta-row,
    .marketmemo-page .mm-verdict-card,
    .marketmemo-page .mm-honest-list,
    .marketmemo-page .mm-related-grid,
    .marketmemo-page .mm-author-bio,
    .marketmemo-page .mm-live-offer {
        grid-template-columns: minmax(0, 1fr);
    }

    .marketmemo-page .mm-header,
    .marketmemo-page .mm-meta-row,
    .marketmemo-page .mm-live-offer,
    .marketmemo-page .mm-verdict-card {
        display: grid;
    }

    .marketmemo-page .mm-section {
        grid-template-columns: minmax(0, 1fr);
    }

    .marketmemo-page .mm-section-marker {
        margin-bottom: 4px;
    }

    .marketmemo-page .mm-verdict-card {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .marketmemo-page .mm-headline {
        font-size: clamp(2.625rem, 11vw, 3.5rem);
    }

    .marketmemo-page .mm-deck {
        font-size: 1.3rem;
    }

    .marketmemo-page .mm-meta-row {
        gap: 14px;
    }

    .marketmemo-page .mm-engagement {
        flex-wrap: wrap;
        gap: 10px;
    }

    .marketmemo-page .mm-figure-chart {
        height: 260px;
    }

    .marketmemo-page .mm-live-offer h2 {
        max-width: none;
        font-size: 2rem;
    }

    .marketmemo-page .mm-subscribe-form {
        flex-direction: column;
    }
}

.tickframe-page {
    background: #f5f0e7;
    color: #1d1b18;
}

.tickframe-page .review-page {
    width: 100%;
}

.tickframe-page .tf-page {
    min-height: 100vh;
}

.tickframe-page .tf-header {
    background: #fbf8f1;
    border-bottom: 1px solid #ddd4c6;
}

.tickframe-page .tf-header-bar,
.tickframe-page .tf-article,
.tickframe-page .tf-footer {
    width: min(100vw - 40px, 1400px);
    margin: 0 auto;
}

.tickframe-page .tf-header-bar {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
    align-items: end;
    gap: 28px 40px;
    padding: 22px 0 18px;
}

.tickframe-page .tf-header-brand {
    display: grid;
    gap: 10px;
}

.tickframe-page .tf-header-tag {
    margin: 0;
    color: #7e7467;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tickframe-page .tf-header-navgroup {
    display: grid;
    gap: 18px;
}

.tickframe-page .tf-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #171410;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.tickframe-page .tf-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f2cd58;
    color: #171410;
    font-size: 1.5rem;
    font-weight: 700;
}

.tickframe-page .tf-nav {
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
}

.tickframe-page .tf-nav a,
.tickframe-page .tf-footer-column a,
.tickframe-page .tf-breadcrumbs a,
.tickframe-page .tf-related-body h3 a,
.tickframe-page .tf-text-link {
    color: #4f4a42;
    text-decoration: none;
}

.tickframe-page .tf-nav a {
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
}

.tickframe-page .tf-nav a.is-active,
.tickframe-page .tf-nav a:hover {
    color: #177645;
    border-bottom-color: #177645;
}

.tickframe-page .tf-header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.tickframe-page .tf-search input {
    width: min(280px, 34vw);
    padding: 14px 18px;
    border: 1px solid #dfd3c4;
    border-radius: 999px;
    background: #fffdfa;
    color: #3a342d;
    font-size: 1rem;
}

.tickframe-page .tf-subscribe-button,
.tickframe-page .tf-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 12px;
    background: #1d1813;
    color: #f8f4ea;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tickframe-page .tf-subscribe-button:visited,
.tickframe-page .tf-cta-button:visited {
    color: #f8f4ea;
}

.tickframe-page .tf-subscribe-button:hover,
.tickframe-page .tf-cta-button:hover,
.tickframe-page .tf-subscribe-button:focus-visible,
.tickframe-page .tf-cta-button:focus-visible {
    background: #2c241d;
    box-shadow: 0 0 0 3px rgba(23, 118, 69, 0.18);
    outline: none;
    transform: translateY(-1px);
}

.tickframe-page .tf-article {
    padding: 24px 0 0;
}

.tickframe-page .tf-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8f867a;
    font-size: 0.95rem;
    font-weight: 700;
}

.tickframe-page .tf-breadcrumbs strong {
    color: #322d28;
}

.tickframe-page .tf-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
    gap: 28px;
    padding: 34px 0 34px;
    border-bottom: 1px solid #e2dacc;
}

.tickframe-page .tf-hero-main {
    display: grid;
    gap: 0;
}

.tickframe-page .tf-eyebrow,
.tickframe-page .tf-section-kicker,
.tickframe-page .tf-card-heading span,
.tickframe-page .tf-author-card-copy > span,
.tickframe-page .tf-related > span,
.tickframe-page .tf-footer-column h3,
.tickframe-page .tf-sidebar-card > span {
    color: #b4552e;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tickframe-page .tf-headline,
.tickframe-page .tf-section h2,
.tickframe-page .tf-related h2,
.tickframe-page .tf-audience-head h3,
.tickframe-page .tf-author-card-copy h2,
.tickframe-page .tf-score-copy blockquote,
.tickframe-page .tf-table-card h3,
.tickframe-page .tf-pros-card h3,
.tickframe-page .tf-cons-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.tickframe-page .tf-headline {
    max-width: 860px;
    margin-top: 18px;
    font-size: clamp(3.3rem, 6vw, 5.4rem);
    line-height: 0.98;
}

.tickframe-page .tf-deck,
.tickframe-page .tf-section p,
.tickframe-page .tf-score-copy p,
.tickframe-page .tf-author-card-copy p,
.tickframe-page .tf-footer-brand p {
    color: #49443d;
    font-size: 1.15rem;
    line-height: 1.65;
}

.tickframe-page .tf-deck {
    max-width: 900px;
    margin: 20px 0 0;
    font-size: 1.25rem;
}

.tickframe-page .tf-meta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 24px;
    align-items: center;
    margin-top: 30px;
}

.tickframe-page .tf-hero-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.tickframe-page .tf-hero-stat {
    padding: 14px 16px;
    border: 1px solid #ddd4c6;
    border-radius: 12px;
    background: #f8f2e7;
}

.tickframe-page .tf-hero-stat span {
    display: block;
    color: #877c70;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tickframe-page .tf-hero-stat strong {
    display: block;
    margin-top: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.tickframe-page .tf-hero-verdict {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
    border: 1px solid #ddd4c6;
    border-radius: 18px;
    background: linear-gradient(180deg, #fcf8ef, #f0e8d9);
}

.tickframe-page .tf-verdict-label {
    color: #177645;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tickframe-page .tf-hero-verdict strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.2rem;
    line-height: 0.92;
    color: #143d2a;
}

.tickframe-page .tf-hero-verdict em {
    margin-left: 6px;
    font-style: normal;
    font-size: 1.8rem;
    color: #73685d;
}

.tickframe-page .tf-hero-verdict p {
    margin: 0;
    color: #3e372f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.1;
}

.tickframe-page .tf-hero-verdict small {
    color: #7c7266;
    font-size: 0.98rem;
}

.tickframe-page .tf-verdict-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tickframe-page .tf-verdict-tags span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(23, 118, 69, 0.08);
    color: #295942;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tickframe-page .tf-author-group,
.tickframe-page .tf-voice-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tickframe-page .tf-author-avatar,
.tickframe-page .tf-author-card-avatar,
.tickframe-page .tf-voice-author span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fffdfa;
    font-weight: 700;
}

.tickframe-page .tf-author-avatar,
.tickframe-page .tf-author-card-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2d332f, #70816d);
}

.tickframe-page .tf-author-copy {
    display: grid;
    gap: 4px;
}

.tickframe-page .tf-author-copy strong,
.tickframe-page .tf-updated-meta strong,
.tickframe-page .tf-score-cta strong,
.tickframe-page .tf-sidebar-pick strong,
.tickframe-page .tf-glance-row strong,
.tickframe-page .tf-pricing-card strong,
.tickframe-page .tf-breakdown-score,
.tickframe-page .tf-metric strong {
    color: #1f1a15;
}

.tickframe-page .tf-author-copy span,
.tickframe-page .tf-author-copy small,
.tickframe-page .tf-updated-meta,
.tickframe-page .tf-score-cta span,
.tickframe-page .tf-score-cta small,
.tickframe-page .tf-metric span,
.tickframe-page .tf-metric small,
.tickframe-page .tf-glance-row span,
.tickframe-page .tf-pricing-card span,
.tickframe-page .tf-table-note,
.tickframe-page .tf-audience-note,
.tickframe-page .tf-voice-author small,
.tickframe-page .tf-related-body small {
    color: #8b8274;
}

.tickframe-page .tf-updated-meta {
    display: flex;
    gap: 18px;
    font-size: 1rem;
}

.tickframe-page .tf-share-actions {
    display: flex;
    gap: 10px;
}

.tickframe-page .tf-share-actions a {
    padding: 10px 18px;
    border: 1px solid #dfd3c4;
    border-radius: 999px;
    color: #5e564b;
    text-decoration: none;
}

.tickframe-page .tf-score-card {
    margin-top: 28px;
    background: #fffdfa;
    border: 1px solid #d9d0c1;
    border-radius: 22px;
    overflow: hidden;
}

.tickframe-page .tf-score-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    background: #1b1815;
}

.tickframe-page .tf-score-card-banner {
    color: #f2cd58;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.tickframe-page .tf-score-ribbon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tickframe-page .tf-score-ribbon span {
    padding: 6px 10px;
    border: 1px solid rgba(255, 248, 233, 0.14);
    border-radius: 999px;
    color: #d8cfbf;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tickframe-page .tf-score-card-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.6fr) minmax(260px, 0.8fr);
}

.tickframe-page .tf-product-summary,
.tickframe-page .tf-score-side {
    padding: 28px 24px;
}

.tickframe-page .tf-product-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    background: #f7f0e2;
}

.tickframe-page .tf-product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    height: 116px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f6e3d, #279458);
    box-shadow: 0 16px 28px rgba(24, 93, 53, 0.18);
    color: #f5f0e7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.8rem;
    font-weight: 700;
}

.tickframe-page .tf-product-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.7rem;
}

.tickframe-page .tf-product-copy p {
    margin: 10px 0 0;
    color: #8d8479;
    font-size: 1rem;
    font-weight: 600;
}

.tickframe-page .tf-score-copy {
    padding: 30px 30px 26px;
}

.tickframe-page .tf-stars {
    color: #f2a20e;
    letter-spacing: 0.2em;
}

.tickframe-page .tf-score-copy h3 {
    margin: 18px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.3vw, 2.8rem);
    font-style: italic;
    line-height: 1.05;
}

.tickframe-page .tf-score-side {
    display: grid;
    align-content: stretch;
    background: #fff9ee;
    border-left: 1px solid #e5dccd;
}

.tickframe-page .tf-score-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0;
    text-align: left;
}

.tickframe-page .tf-score-cta strong,
.tickframe-page .tf-sidebar-pick strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.6rem, 8vw, 6rem);
    line-height: 0.9;
    color: #177645;
}

.tickframe-page .tf-score-cta em,
.tickframe-page .tf-sidebar-pick em {
    font-style: normal;
    font-size: 2rem;
    color: #80776b;
}

.tickframe-page .tf-score-cta p,
.tickframe-page .tf-sidebar-pick p {
    margin: 10px 0 18px;
    color: #665e53;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-style: italic;
}

.tickframe-page .tf-score-cta .tf-cta-button,
.tickframe-page .tf-sidebar-pick .tf-cta-button {
    width: auto;
    margin-top: 8px;
}

.tickframe-page .tf-text-link {
    margin-top: 14px;
    color: #8b8274;
    font-style: italic;
}

.tickframe-page .tf-metrics-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid #e5dccd;
}

.tickframe-page .tf-metric {
    padding: 18px 16px 20px;
    border-right: 1px solid #e5dccd;
    text-align: center;
}

.tickframe-page .tf-metric:last-child {
    border-right: 0;
}

.tickframe-page .tf-metric span {
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tickframe-page .tf-metric strong {
    display: block;
    margin-top: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
}

.tickframe-page .tf-review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 42px;
    padding: 36px 0 64px;
}

.tickframe-page .tf-main {
    display: grid;
    gap: 38px;
}

.tickframe-page .tf-section h2 {
    margin-top: 10px;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.tickframe-page .tf-intro {
    position: relative;
    padding-left: 58px;
}

.tickframe-page .tf-intro::before {
    content: "{";
    position: absolute;
    left: 0;
    top: -24px;
    color: #177645;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 7rem;
    line-height: 1;
}

.tickframe-page .tf-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    display: grid;
    gap: 18px;
}

.tickframe-page .tf-sidebar-card,
.tickframe-page .tf-table-card,
.tickframe-page .tf-author-card,
.tickframe-page .tf-related-card,
.tickframe-page .tf-voice-card,
.tickframe-page .tf-pros-card,
.tickframe-page .tf-cons-card,
.tickframe-page .tf-audience,
.tickframe-page .tf-score-breakdown {
    background: #fffdfa;
    border: 1px solid #ddd4c6;
    border-radius: 12px;
}

.tickframe-page .tf-sidebar-pick {
    padding: 20px;
    border: 0;
    background: linear-gradient(135deg, #203529, #314b3a);
}

.tickframe-page .tf-sidebar-pick-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tickframe-page .tf-sidebar-pick-top span {
    color: #d8efe0;
}

.tickframe-page .tf-sidebar-pick h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
    font-style: italic;
    color: #fffdfa;
}

.tickframe-page .tf-sidebar-pick strong {
    display: block;
    margin: 0;
    color: #f2cd58;
    font-size: 3.4rem;
}

.tickframe-page .tf-sidebar-pick-bottom {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.tickframe-page .tf-sidebar-pick p {
    margin: 0;
    color: #dfe8df;
    font-size: 1.1rem;
}

.tickframe-page .tf-sidebar-toc {
    padding: 22px 22px 24px;
    background: #fbf6ec;
}

.tickframe-page .tf-sidebar-toc ol {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tickframe-page .tf-sidebar-toc li {
    margin: 0;
    padding: 12px 14px;
    border-left: 0;
    border-bottom: 1px dashed #ddd4c6;
}

.tickframe-page .tf-sidebar-toc li.is-active {
    background: #eef5ed;
    border-radius: 10px;
}

.tickframe-page .tf-sidebar-toc a {
    color: #4a433a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-weight: 700;
    text-decoration: none;
}

.tickframe-page .tf-sidebar-toc li.is-active a {
    color: #177645;
    font-style: italic;
}

.tickframe-page .tf-table-card,
.tickframe-page .tf-score-breakdown {
    padding: 24px 26px;
}

.tickframe-page .tf-table-card h3,
.tickframe-page .tf-score-breakdown h3 {
    margin-top: 8px;
    font-size: 2.2rem;
}

.tickframe-page .tf-glance-table {
    margin-top: 22px;
    border-top: 2px solid #1f1b17;
}

.tickframe-page .tf-glance-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tickframe-page .tf-glance-row > div {
    display: grid;
    gap: 10px;
    padding: 18px 22px;
    border-bottom: 1px solid #ddd4c6;
}

.tickframe-page .tf-glance-row > div:first-child {
    border-right: 1px solid #ddd4c6;
}

.tickframe-page .tf-glance-row span,
.tickframe-page .tf-pricing-card span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    font-style: italic;
}

.tickframe-page .tf-glance-row strong {
    font-size: 1.8rem;
}

.tickframe-page .tf-breakdown-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 2fr) auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px dashed #ddd4c6;
}

.tickframe-page .tf-breakdown-row:first-of-type {
    margin-top: 18px;
}

.tickframe-page .tf-breakdown-copy h4,
.tickframe-page .tf-security-item h4,
.tickframe-page .tf-audience-card h4 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-style: italic;
}

.tickframe-page .tf-breakdown-copy p,
.tickframe-page .tf-security-item p,
.tickframe-page .tf-audience-card p,
.tickframe-page .tf-pricing-card p {
    margin: 0;
    color: #71685d;
    font-size: 1rem;
    line-height: 1.5;
}

.tickframe-page .tf-breakdown-bar {
    height: 18px;
    border-radius: 999px;
    background: #efe6d5;
    overflow: hidden;
}

.tickframe-page .tf-breakdown-bar span {
    display: block;
    height: 100%;
    border-right: 4px solid #17673d;
    background: linear-gradient(90deg, #177645 0%, #177645 78%, #b48d16 78%, #b48d16 100%);
}

.tickframe-page .tf-breakdown-score {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: #177645;
}

.tickframe-page .tf-table-wrap {
    overflow-x: auto;
}

.tickframe-page .tf-table {
    width: 100%;
    margin-top: 18px;
    border-collapse: collapse;
}

.tickframe-page .tf-table th,
.tickframe-page .tf-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #ddd4c6;
    text-align: left;
}

.tickframe-page .tf-table th {
    background: #f3eee2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-style: italic;
}

.tickframe-page .tf-table tbody tr.is-highlight {
    background: #edf5ef;
}

.tickframe-page .tf-table-badge {
    display: inline-block;
    margin-right: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    background: #1a7443;
    color: #f5f0e7;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.tickframe-page .tf-pros-cons,
.tickframe-page .tf-audience-grid,
.tickframe-page .tf-pricing-grid,
.tickframe-page .tf-security-list,
.tickframe-page .tf-voices-grid,
.tickframe-page .tf-related-grid,
.tickframe-page .tf-footer {
    display: grid;
    gap: 18px;
}

.tickframe-page .tf-pros-cons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tickframe-page .tf-pros-card,
.tickframe-page .tf-cons-card {
    padding: 24px 26px;
}

.tickframe-page .tf-pros-card span {
    color: #177645;
}

.tickframe-page .tf-cons-card span {
    color: #b4552e;
}

.tickframe-page .tf-pros-card ul,
.tickframe-page .tf-cons-card ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: #4a433a;
    line-height: 1.7;
}

.tickframe-page .tf-audience {
    overflow: hidden;
}

.tickframe-page .tf-audience-head {
    padding: 24px 28px 22px;
    background: #f6f0e2;
}

.tickframe-page .tf-audience-head h3 {
    margin-top: 10px;
    font-size: 2.2rem;
}

.tickframe-page .tf-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.tickframe-page .tf-audience-card {
    padding: 28px;
    border-right: 1px solid #ddd4c6;
}

.tickframe-page .tf-audience-card:last-child {
    border-right: 0;
}

.tickframe-page .tf-audience-icon {
    font-size: 2.2rem;
}

.tickframe-page .tf-audience-note {
    margin: 0;
    padding: 18px 28px 24px;
    background: #f6f0e2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-style: italic;
}

.tickframe-page .tf-pricing-grid,
.tickframe-page .tf-security-list,
.tickframe-page .tf-voices-grid,
.tickframe-page .tf-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tickframe-page .tf-pricing-card,
.tickframe-page .tf-security-item {
    padding: 22px;
    border: 1px solid #e3daca;
    border-radius: 12px;
    background: #fefcf7;
}

.tickframe-page .tf-pricing-card strong {
    display: block;
    margin: 8px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.tickframe-page .tf-security-list {
    margin-top: 18px;
}

.tickframe-page .tf-voices-grid,
.tickframe-page .tf-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tickframe-page .tf-voice-card {
    padding: 22px 22px 18px;
}

.tickframe-page .tf-voice-card blockquote {
    margin: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid #ddd4c6;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.35;
}

.tickframe-page .tf-voice-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
}

.tickframe-page .tf-voice-author span {
    width: 42px;
    height: 42px;
    background: #1b7a47;
}

.tickframe-page .tf-faq-list {
    border-top: 1px solid #ddd4c6;
}

.tickframe-page .tf-faq-item {
    border-bottom: 1px solid #ddd4c6;
}

.tickframe-page .tf-faq-item summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
}

.tickframe-page .tf-faq-item summary::-webkit-details-marker {
    display: none;
}

.tickframe-page .tf-faq-item summary::after {
    content: "+";
    color: #7e7469;
    font-size: 2rem;
}

.tickframe-page .tf-faq-item[open] summary::after {
    content: "−";
}

.tickframe-page .tf-faq-item summary span,
.tickframe-page .tf-faq-item summary strong {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.tickframe-page .tf-faq-item summary span {
    color: #b4552e;
    font-size: 2.2rem;
}

.tickframe-page .tf-faq-item summary strong {
    font-size: 1.7rem;
}

.tickframe-page .tf-faq-item p {
    margin: 0 0 22px 72px;
    color: #5a5349;
}

.tickframe-page .tf-author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 26px;
    background: #f6f0e2;
}

.tickframe-page .tf-author-card-avatar {
    width: 96px;
    height: 96px;
    font-size: 2rem;
}

.tickframe-page .tf-author-card-copy h2 {
    margin-top: 12px;
    font-size: 3rem;
}

.tickframe-page .tf-author-card-copy small {
    color: #8b8274;
    font-size: 1rem;
    letter-spacing: 0.14em;
}

.tickframe-page .tf-related h2 {
    margin-top: 10px;
    font-size: 3.2rem;
}

.tickframe-page .tf-related-grid {
    margin-top: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tickframe-page .tf-related-top {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 0.8;
    color: #fffdfa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    font-style: italic;
    font-weight: 700;
}

.tickframe-page .tf-related-body {
    padding: 18px 16px;
}

.tickframe-page .tf-related-body small {
    color: #b4552e;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tickframe-page .tf-related-body h3 {
    margin: 12px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-style: italic;
}

.tickframe-page .tf-footer {
    grid-template-columns: 1.2fr 0.9fr 1fr 1.1fr;
    padding: 42px 0 64px;
    border-top: 1px solid #1f1b17;
    background: #1b1713;
    color: #f5f0e7;
}

.tickframe-page .tf-footer-brand,
.tickframe-page .tf-footer-column {
    padding: 0 20px;
}

.tickframe-page .tf-footer .tf-logo {
    color: #f5f0e7;
}

.tickframe-page .tf-footer .tf-logo-mark {
    color: #171410;
}

.tickframe-page .tf-footer-brand p,
.tickframe-page .tf-footer-column a {
    color: #d6c9b5;
}

.tickframe-page .tf-footer-column {
    display: grid;
    gap: 12px;
}

.tickframe-page .tf-footer-column a:hover,
.tickframe-page .tf-footer-column a:focus-visible,
.tickframe-page .tf-breadcrumbs a:hover,
.tickframe-page .tf-related-body h3 a:hover,
.tickframe-page .tf-text-link:hover {
    color: #177645;
    outline: none;
}

@media (max-width: 1280px) {
    .tickframe-page .tf-header-bar,
    .tickframe-page .tf-score-card-grid,
    .tickframe-page .tf-review-layout,
    .tickframe-page .tf-footer {
        grid-template-columns: minmax(0, 1fr);
    }

    .tickframe-page .tf-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .tickframe-page .tf-sidebar {
        position: static;
    }

    .tickframe-page .tf-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .tickframe-page .tf-hero-strip,
    .tickframe-page .tf-metrics-row,
    .tickframe-page .tf-pros-cons,
    .tickframe-page .tf-pricing-grid,
    .tickframe-page .tf-security-list,
    .tickframe-page .tf-voices-grid,
    .tickframe-page .tf-audience-grid,
    .tickframe-page .tf-related-grid,
    .tickframe-page .tf-glance-row,
    .tickframe-page .tf-author-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .tickframe-page .tf-metric,
    .tickframe-page .tf-audience-card,
    .tickframe-page .tf-glance-row > div:first-child {
        border-right: 0;
    }

    .tickframe-page .tf-meta-row,
    .tickframe-page .tf-share-actions,
    .tickframe-page .tf-header-actions {
        grid-template-columns: minmax(0, 1fr);
        display: grid;
    }

    .tickframe-page .tf-score-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tickframe-page .tf-search input,
    .tickframe-page .tf-subscribe-button {
        width: 100%;
    }

    .tickframe-page .tf-breakdown-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .tickframe-page .tf-header-bar,
    .tickframe-page .tf-article,
    .tickframe-page .tf-footer {
        width: min(100vw - 24px, 1400px);
    }

    .tickframe-page .tf-headline {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
    }

    .tickframe-page .tf-score-copy blockquote,
    .tickframe-page .tf-section h2,
    .tickframe-page .tf-author-card-copy h2,
    .tickframe-page .tf-related h2 {
        font-size: 2.35rem;
    }

    .tickframe-page .tf-faq-item summary {
        grid-template-columns: auto 1fr;
    }
}

/* ---------- RatingsLab theme ---------- */
.ratingslab-page {
    background:
        radial-gradient(circle at top right, rgba(233, 31, 76, 0.08), transparent 26%),
        linear-gradient(180deg, #f5f7fa 0%, #eff2f6 100%);
    color: #161a22;
    font-family: Arial, Helvetica, sans-serif;
}

.ratingslab-page .review-page {
    display: block;
}

.ratingslab-review a {
    color: inherit;
}

.ratingslab-review a:visited {
    color: inherit;
}

.ratingslab-review .rl-button:visited,
.ratingslab-review .rl-signin:visited,
.ratingslab-review .rl-nav a:visited {
    color: inherit;
}

.ratingslab-review {
    min-height: 100vh;
}

.ratingslab-review .rl-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #d7dce4;
    backdrop-filter: blur(12px);
}

.ratingslab-review .rl-header-inner,
.ratingslab-review .rl-page,
.ratingslab-review .rl-footer-grid,
.ratingslab-review .rl-risk-warning {
    width: min(1440px, calc(100vw - 40px));
    margin: 0 auto;
}

.ratingslab-review .rl-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.ratingslab-review .rl-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
}

.ratingslab-review .rl-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ef215a;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.ratingslab-review .rl-brand-word {
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.ratingslab-review .rl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1 1 auto;
    flex-wrap: wrap;
}

.ratingslab-review .rl-nav a {
    color: #353c4d;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.ratingslab-review .rl-nav a.is-active {
    color: #ef215a;
}

.ratingslab-review .rl-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ratingslab-review .rl-search input {
    width: 220px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d5dbe5;
    border-radius: 10px;
    background: #fff;
    color: #4e5668;
    font-size: 0.98rem;
}

.ratingslab-review .rl-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    background: #171922;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.ratingslab-review .rl-signin:visited,
.ratingslab-review .rl-signin:hover,
.ratingslab-review .rl-signin:focus,
.ratingslab-review .rl-signin:active {
    background: #171922;
    color: #fffdf8;
    opacity: 1;
    text-decoration: none;
}

.ratingslab-review .rl-signin:hover {
    background: #202534;
}

.ratingslab-review .rl-signin:focus {
    outline: 3px solid rgba(239, 33, 90, 0.35);
    outline-offset: 3px;
}

.ratingslab-review .rl-signin:active {
    background: #11141c;
}

.ratingslab-review .rl-page {
    padding: 22px 0 0;
}

.ratingslab-review .rl-hero {
    display: grid;
    gap: 20px;
}

.ratingslab-review .rl-hero-topline,
.ratingslab-review .rl-hero-main,
.ratingslab-review .rl-score-panel,
.ratingslab-review .rl-review-layout,
.ratingslab-review .rl-metric-strip,
.ratingslab-review .rl-cta-row {
    display: grid;
    gap: 18px;
}

.ratingslab-review .rl-hero-topline {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    background: #e9eef4;
    border: 1px solid #d6dde7;
    border-radius: 18px;
    padding: 14px 18px;
}

.ratingslab-review .rl-breadcrumbs,
.ratingslab-review .rl-version-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ratingslab-review .rl-breadcrumbs {
    color: #687184;
    font-weight: 700;
}

.ratingslab-review .rl-breadcrumbs a {
    color: #687184;
    text-decoration: none;
}

.ratingslab-review .rl-version-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #cfd6e0;
    border-radius: 8px;
    background: #fff;
    color: #6d778d;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ratingslab-review .rl-version-pills .is-updated {
    border-color: #8fd1a4;
    color: #169b4e;
    background: #eaf8ee;
}

.ratingslab-review .rl-hero-main {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    align-items: start;
}

.ratingslab-review .rl-hero-copy,
.ratingslab-review .rl-hero-note,
.ratingslab-review .rl-score-panel,
.ratingslab-review .rl-metric-strip,
.ratingslab-review .rl-sidebar-card,
.ratingslab-review .rl-section,
.ratingslab-review .rl-footer {
    border: 1px solid #d7dce4;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 44px rgba(25, 34, 56, 0.06);
}

.ratingslab-review .rl-hero-copy {
    border-radius: 26px;
    padding: 28px 30px 24px;
}

.ratingslab-review .rl-kicker,
.ratingslab-review .rl-reviewer-kicker,
.ratingslab-review .rl-related-intro {
    margin: 0;
    color: #ef215a;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ratingslab-review .rl-hero-copy h1 {
    margin: 12px 0 14px;
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.ratingslab-review .rl-subtitle,
.ratingslab-review .rl-section-intro {
    margin: 0;
    color: #4b5568;
    font-size: 1.8rem;
    line-height: 1.35;
    max-width: 20ch;
}

.ratingslab-review .rl-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #dfe5ee;
}

.ratingslab-review .rl-meta-people {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ratingslab-review .rl-avatar,
.ratingslab-review .rl-reviewer-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f2b44, #64708d);
    color: #fff;
    font-weight: 800;
}

.ratingslab-review .rl-avatar {
    width: 44px;
    height: 44px;
}

.ratingslab-review .rl-meta-copy {
    display: grid;
    gap: 4px;
}

.ratingslab-review .rl-meta-copy strong {
    font-size: 1.05rem;
}

.ratingslab-review .rl-meta-copy span,
.ratingslab-review .rl-formula-tag,
.ratingslab-review .rl-score-row-copy p,
.ratingslab-review .rl-quick-stats dt,
.ratingslab-review .rl-footer a,
.ratingslab-review .rl-footer p {
    color: #758096;
}

.ratingslab-review .rl-formula-tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    background: #ffeaf0;
    color: #ef215a;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ratingslab-review .rl-hero-note {
    border-radius: 24px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(239, 33, 90, 0.08), rgba(47, 185, 103, 0.06)),
        #fff;
}

.ratingslab-review .rl-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ratingslab-review .rl-note-grid div,
.ratingslab-review .rl-metric-chip,
.ratingslab-review .rl-step-card {
    display: grid;
    gap: 6px;
}

.ratingslab-review .rl-note-grid span,
.ratingslab-review .rl-metric-chip span,
.ratingslab-review .rl-table-card-copy p,
.ratingslab-review .rl-reviewer-meta span,
.ratingslab-review .rl-reviewer-stats span,
.ratingslab-review .rl-related-card p {
    color: #6f7990;
}

.ratingslab-review .rl-note-grid strong,
.ratingslab-review .rl-metric-chip strong,
.ratingslab-review .rl-reviewer-meta strong,
.ratingslab-review .rl-reviewer-stats strong {
    font-size: 1.3rem;
    letter-spacing: -0.04em;
}

.ratingslab-review .rl-score-panel {
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr) minmax(260px, 0.7fr);
    border-radius: 28px;
    padding: 18px;
    margin-top: 6px;
}

.ratingslab-review .rl-score-lead,
.ratingslab-review .rl-radar-card,
.ratingslab-review .rl-metric-grid {
    border-radius: 22px;
    background: #fff;
    padding: 22px;
}

.ratingslab-review .rl-panel-label,
.ratingslab-review .rl-radar-head p,
.ratingslab-review .rl-sidebar-card > p,
.ratingslab-review .rl-section-index,
.ratingslab-review .rl-reviewer-stats span,
.ratingslab-review .rl-footer h3,
.ratingslab-review .rl-card-top span,
.ratingslab-review .rl-step-card span,
.ratingslab-review .rl-compare-head strong {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ratingslab-review .rl-panel-label,
.ratingslab-review .rl-radar-head p,
.ratingslab-review .rl-radar-head span,
.ratingslab-review .rl-sidebar-card > p,
.ratingslab-review .rl-step-card span {
    color: #6a7489;
}

.ratingslab-review .rl-score-ring {
    position: relative;
    width: 206px;
    height: 206px;
    margin: 18px 0 20px;
    border-radius: 50%;
    background: conic-gradient(#8fd600 0 288deg, #dfe7ef 288deg 360deg);
}

.ratingslab-review .rl-score-ring::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: #fff;
}

.ratingslab-review .rl-score-ring-inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    z-index: 1;
}

.ratingslab-review .rl-score-ring-inner strong {
    font-size: 4.2rem;
    line-height: 0.9;
    color: #8fd600;
    letter-spacing: -0.08em;
}

.ratingslab-review .rl-score-ring-inner span,
.ratingslab-review .rl-score-verdict span,
.ratingslab-review .rl-toc-list span {
    color: #7b8497;
}

.ratingslab-review .rl-score-verdict h2 {
    margin: 6px 0;
    color: #1ea54e;
    font-size: 2.1rem;
    letter-spacing: -0.05em;
}

.ratingslab-review .rl-score-verdict p {
    margin: 0 0 12px;
    color: #4c5669;
    line-height: 1.6;
}

.ratingslab-review .rl-stars {
    color: #ffb400;
    letter-spacing: 0.18em;
}

.ratingslab-review .rl-pass-badge {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid #a8dfb2;
    border-radius: 14px;
    background: #edf9ef;
    color: #27a34d;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ratingslab-review .rl-radar-card {
    display: grid;
    gap: 16px;
}

.ratingslab-review .rl-radar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ratingslab-review .rl-radar-visual {
    position: relative;
    min-height: 360px;
    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(239, 33, 90, 0.08), transparent 55%),
        linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    overflow: hidden;
}

.ratingslab-review .rl-radar-ring,
.ratingslab-review .rl-radar-shape,
.ratingslab-review .rl-radar-axis {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
}

.ratingslab-review .rl-radar-ring {
    border: 1px solid #d8dfe8;
    clip-path: polygon(50% 0%, 93% 25%, 82% 78%, 50% 100%, 18% 78%, 7% 25%);
}

.ratingslab-review .rl-radar-ring-1 {
    width: 280px;
    height: 280px;
}

.ratingslab-review .rl-radar-ring-2 {
    width: 210px;
    height: 210px;
}

.ratingslab-review .rl-radar-ring-3 {
    width: 140px;
    height: 140px;
}

.ratingslab-review .rl-radar-axis {
    width: 1px;
    height: 132px;
    background: #d8dfe8;
    transform-origin: top center;
}

.ratingslab-review .rl-axis-top {
    transform: translate(-50%, -50%) rotate(0deg);
}

.ratingslab-review .rl-axis-bottom-left {
    transform: translate(-50%, -50%) rotate(58deg);
}

.ratingslab-review .rl-axis-bottom-right {
    transform: translate(-50%, -50%) rotate(-58deg);
}

.ratingslab-review .rl-axis-left {
    transform: translate(-50%, -50%) rotate(118deg);
}

.ratingslab-review .rl-axis-right {
    transform: translate(-50%, -50%) rotate(-118deg);
}

.ratingslab-review .rl-radar-shape {
    width: 220px;
    height: 220px;
    background: rgba(239, 33, 90, 0.18);
    border: 3px solid #ef215a;
    clip-path: polygon(50% 9%, 81% 22%, 88% 56%, 66% 87%, 30% 80%, 18% 48%);
}

.ratingslab-review .rl-radar-labels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ratingslab-review .rl-radar-labels div,
.ratingslab-review .rl-mini-score,
.ratingslab-review .rl-related-body,
.ratingslab-review .rl-footer-grid > div {
    display: grid;
    gap: 4px;
}

.ratingslab-review .rl-radar-labels strong,
.ratingslab-review .rl-mini-score strong,
.ratingslab-review .rl-section h3,
.ratingslab-review .rl-related-body h3 {
    font-size: 1.05rem;
}

.ratingslab-review .rl-radar-labels span,
.ratingslab-review .rl-mini-score span {
    color: #1f2a3d;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.ratingslab-review .rl-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    background: #f0f4f8;
}

.ratingslab-review .rl-mini-score {
    align-content: start;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
}

.ratingslab-review .rl-mini-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border: 8px solid #1fb65c;
    border-right-color: #d7dde6;
    border-bottom-color: #d7dde6;
    border-radius: 50%;
}

.ratingslab-review .rl-mini-ring span {
    font-size: 2rem;
    color: #1fb65c;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.ratingslab-review .rl-mini-ring.is-large {
    width: 112px;
    height: 112px;
}

.ratingslab-review .rl-metric-strip {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.ratingslab-review .rl-metric-chip {
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    border-right: 1px solid #dde3ea;
}

.ratingslab-review .rl-metric-chip:last-child {
    border-right: none;
}

.ratingslab-review .rl-cta-row {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
}

.ratingslab-review .rl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid #d5dbe5;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.ratingslab-review .rl-button-primary {
    background: linear-gradient(135deg, #ef215a, #e71849);
    border-color: #e71849;
    color: #fff;
}

.ratingslab-review .rl-button-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #242a37;
}

.ratingslab-review .rl-review-layout {
    grid-template-columns: minmax(0, 1.4fr) 330px;
    align-items: start;
    margin-top: 26px;
}

.ratingslab-review .rl-main,
.ratingslab-review .rl-sidebar {
    display: grid;
    gap: 18px;
}

.ratingslab-review .rl-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-gutter: stable;
}

.ratingslab-review .rl-sidebar::-webkit-scrollbar {
    width: 10px;
}

.ratingslab-review .rl-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.ratingslab-review .rl-sidebar::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(110, 121, 144, 0.45);
    background-clip: padding-box;
}

.ratingslab-review .rl-sidebar-card,
.ratingslab-review .rl-section {
    border-radius: 20px;
    padding: 20px;
}

.ratingslab-review .rl-verdict-card {
    padding-top: 0;
    overflow: hidden;
}

.ratingslab-review .rl-verdict-card > p {
    margin: 0 -20px 18px;
    padding: 16px 20px;
    background: #171922;
    color: #fff;
}

.ratingslab-review .rl-sidebar-score {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.ratingslab-review .rl-sidebar-score strong {
    display: block;
    font-size: 2rem;
    color: #1ea54e;
    letter-spacing: -0.05em;
}

.ratingslab-review .rl-sidebar-score small,
.ratingslab-review .rl-community-card small {
    color: #6e7990;
}

.ratingslab-review .rl-quick-stats {
    display: grid;
    gap: 12px;
    margin: 0;
}

.ratingslab-review .rl-quick-stats div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #dce2ea;
}

.ratingslab-review .rl-quick-stats div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.ratingslab-review .rl-quick-stats dt,
.ratingslab-review .rl-quick-stats dd {
    margin: 0;
}

.ratingslab-review .rl-quick-stats dd {
    color: #222939;
    font-weight: 800;
}

.ratingslab-review .rl-toc-list {
    display: grid;
    gap: 10px;
}

.ratingslab-review .rl-toc-list a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #edf1f5;
}

.ratingslab-review .rl-toc-list a:last-child {
    border-bottom: none;
}

.ratingslab-review .rl-toc-list strong {
    color: #40495d;
}

.ratingslab-review .rl-toc-list em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    background: #26b35f;
    color: #fff;
    font-style: normal;
    font-weight: 800;
}

.ratingslab-review .rl-community-card {
    display: grid;
    gap: 10px;
}

.ratingslab-review .rl-community-score {
    color: #1ea54e;
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.ratingslab-review .rl-community-bar {
    height: 10px;
    border-radius: 999px;
    background: #e4eaf2;
    overflow: hidden;
}

.ratingslab-review .rl-community-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #1cb253, #8fd600);
}

.ratingslab-review .rl-community-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #7a8498;
}

.ratingslab-review .rl-section {
    padding: 26px;
}

.ratingslab-review .rl-section-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 4px solid #171922;
}

.ratingslab-review .rl-section-index {
    color: #ef215a;
}

.ratingslab-review .rl-section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -0.07em;
}

.ratingslab-review .rl-section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 52px;
    border-radius: 14px;
    background: #8fd600;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}

.ratingslab-review .rl-section p,
.ratingslab-review .rl-faq-item p,
.ratingslab-review .rl-reviewer-copy p {
    color: #313949;
    font-size: 1.2rem;
    line-height: 1.7;
}

.ratingslab-review .rl-bottom-line {
    margin: 24px 0;
    padding: 16px 18px;
    border-left: 4px solid #7dd22d;
    border-radius: 12px;
    background: #edf7e8;
    color: #425160;
    font-size: 1.05rem;
    font-weight: 700;
}

.ratingslab-review .rl-score-rows,
.ratingslab-review .rl-faq-list {
    display: grid;
}

.ratingslab-review .rl-score-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #dde3ea;
}

.ratingslab-review .rl-score-row:last-child {
    border-bottom: none;
}

.ratingslab-review .rl-score-row-copy h3 {
    margin: 0 0 6px;
    font-size: 1.35rem;
}

.ratingslab-review .rl-score-row-copy p,
.ratingslab-review .rl-score-row-meta small,
.ratingslab-review .rl-faq-item summary span,
.ratingslab-review .rl-related-body span {
    font-family: "Courier New", Courier, monospace;
    letter-spacing: 0.03em;
}

.ratingslab-review .rl-score-row-bar {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: #ebf0f5;
    overflow: hidden;
}

.ratingslab-review .rl-score-row-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #1db45a, #8fd600);
}

.ratingslab-review .rl-score-row-meta {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.ratingslab-review .rl-score-row-meta strong {
    font-size: 1.2rem;
    color: #1cb253;
}

.ratingslab-review .rl-table-card,
.ratingslab-review .rl-reviewer-card {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid #d7dce4;
    border-radius: 18px;
    background: #f8fbfe;
}

.ratingslab-review .rl-table-wrap {
    overflow-x: auto;
}

.ratingslab-review .rl-data-table,
.ratingslab-review .rl-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.ratingslab-review .rl-data-table th,
.ratingslab-review .rl-data-table td,
.ratingslab-review .rl-compare-table th,
.ratingslab-review .rl-compare-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #dde3ea;
    text-align: left;
}

.ratingslab-review .rl-data-table th,
.ratingslab-review .rl-compare-table th {
    color: #6e7890;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ratingslab-review .rl-data-table tr.is-highlight td,
.ratingslab-review .rl-compare-table tr.is-highlight td {
    font-weight: 800;
}

.ratingslab-review .rl-step-grid,
.ratingslab-review .rl-split-grid,
.ratingslab-review .rl-related-grid,
.ratingslab-review .rl-reviewer-stats {
    display: grid;
    gap: 14px;
}

.ratingslab-review .rl-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.ratingslab-review .rl-step-card {
    padding: 18px;
    border: 1px solid #d5dce6;
    border-top: 4px solid #ef215a;
    border-radius: 16px;
    background: #fff;
}

.ratingslab-review .rl-step-card h3,
.ratingslab-review .rl-card-top strong {
    margin: 0;
    font-size: 1.2rem;
}

.ratingslab-review .rl-step-card p {
    margin: 0;
    font-size: 1.1rem;
}

.ratingslab-review .rl-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.ratingslab-review .rl-pros-card,
.ratingslab-review .rl-cons-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
}

.ratingslab-review .rl-pros-card {
    border-top: 4px solid #1cb253;
}

.ratingslab-review .rl-cons-card {
    border-top: 4px solid #ef3c3c;
}

.ratingslab-review .rl-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.ratingslab-review .rl-delta-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e5ec;
}

.ratingslab-review .rl-delta-row:last-child {
    border-bottom: none;
}

.ratingslab-review .rl-delta-row p {
    margin: 0;
    font-size: 1.08rem;
}

.ratingslab-review .rl-delta-row .is-positive {
    color: #1cb253;
}

.ratingslab-review .rl-delta-row .is-negative {
    color: #ef3c3c;
}

.ratingslab-review .rl-compare-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dfe5ee;
}

.ratingslab-review .rl-compare-head a {
    color: #748095;
    text-decoration: none;
}

.ratingslab-review .rl-pick-badge,
.ratingslab-review .rl-table-score,
.ratingslab-review .rl-related-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    font-weight: 800;
}

.ratingslab-review .rl-pick-badge {
    margin-right: 10px;
    background: #ef215a;
    color: #fff;
    text-transform: uppercase;
}

.ratingslab-review .rl-table-score {
    background: #ff9f11;
    color: #fff;
}

.ratingslab-review .rl-table-score.is-best {
    background: #8fd600;
}

.ratingslab-review .rl-faq-list {
    border: 1px solid #dbe2eb;
    border-radius: 16px;
    overflow: hidden;
}

.ratingslab-review .rl-faq-item {
    padding: 0 18px;
    background: #fff;
    border-bottom: 1px solid #e4e9f1;
}

.ratingslab-review .rl-faq-item:last-child {
    border-bottom: none;
}

.ratingslab-review .rl-faq-item summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-size: 1.15rem;
    font-weight: 800;
}

.ratingslab-review .rl-faq-item summary::-webkit-details-marker {
    display: none;
}

.ratingslab-review .rl-faq-item p {
    margin: 0 0 18px 64px;
}

.ratingslab-review .rl-reviewer-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
}

.ratingslab-review .rl-reviewer-avatar {
    width: 78px;
    height: 78px;
    border-radius: 22px;
}

.ratingslab-review .rl-reviewer-copy h3 {
    margin: 6px 0 10px;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.ratingslab-review .rl-reviewer-meta {
    text-align: right;
}

.ratingslab-review .rl-reviewer-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 16px;
    border-top: 1px solid #dce2ea;
}

.ratingslab-review .rl-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 20px;
}

.ratingslab-review .rl-related-card {
    position: relative;
    border: 1px solid #d7dce4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.ratingslab-review .rl-related-visual {
    min-height: 108px;
}

.ratingslab-review .rl-related-score {
    position: absolute;
    top: 64px;
    right: 10px;
    background: #8fd600;
    color: #fff;
}

.ratingslab-review .rl-related-body {
    padding: 14px;
}

.ratingslab-review .rl-related-body span {
    color: #ef215a;
    font-weight: 800;
    text-transform: uppercase;
}

.ratingslab-review .rl-related-body h3 {
    margin: 4px 0 6px;
    font-size: 1.05rem;
    line-height: 1.25;
}

.ratingslab-review .rl-related-body h3 a {
    text-decoration: none;
}

.ratingslab-review .rl-footer {
    margin-top: 34px;
    padding: 44px 0 0;
    background: #171922;
    color: #fff;
}

.ratingslab-review .rl-footer .rl-brand-word,
.ratingslab-review .rl-footer h3 {
    color: #fff;
}

.ratingslab-review .rl-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.ratingslab-review .rl-footer-brand p {
    color: #a8b0c1;
    font-size: 1.15rem;
    line-height: 1.7;
}

.ratingslab-review .rl-footer a {
    color: #a8b0c1;
    text-decoration: none;
    font-size: 1.1rem;
}

.ratingslab-review .rl-risk-warning {
    margin-top: 30px;
    padding: 18px 0 26px;
    border-top: 1px solid #2a3142;
    color: #96a0b4;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .ratingslab-review .rl-header-inner,
    .ratingslab-review .rl-page,
    .ratingslab-review .rl-footer-grid,
    .ratingslab-review .rl-risk-warning {
        width: min(100vw - 28px, 1440px);
    }

    .ratingslab-review .rl-score-panel,
    .ratingslab-review .rl-review-layout,
    .ratingslab-review .rl-hero-main,
    .ratingslab-review .rl-footer-grid,
    .ratingslab-review .rl-related-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ratingslab-review .rl-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .ratingslab-review .rl-metric-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ratingslab-review .rl-cta-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .ratingslab-review .rl-header-inner,
    .ratingslab-review .rl-meta-row,
    .ratingslab-review .rl-hero-topline,
    .ratingslab-review .rl-compare-head,
    .ratingslab-review .rl-card-top {
        grid-template-columns: minmax(0, 1fr);
        display: grid;
    }

    .ratingslab-review .rl-header-inner,
    .ratingslab-review .rl-header-actions {
        justify-content: stretch;
    }

    .ratingslab-review .rl-header-actions,
    .ratingslab-review .rl-nav {
        width: 100%;
    }

    .ratingslab-review .rl-search input,
    .ratingslab-review .rl-signin {
        width: 100%;
    }

    .ratingslab-review .rl-metric-strip,
    .ratingslab-review .rl-step-grid,
    .ratingslab-review .rl-split-grid,
    .ratingslab-review .rl-reviewer-card,
    .ratingslab-review .rl-reviewer-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .ratingslab-review .rl-score-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .ratingslab-review .rl-score-row-meta {
        justify-items: start;
    }

    .ratingslab-review .rl-reviewer-meta {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .ratingslab-review .rl-hero-copy,
    .ratingslab-review .rl-hero-note,
    .ratingslab-review .rl-score-panel,
    .ratingslab-review .rl-sidebar-card,
    .ratingslab-review .rl-section {
        border-radius: 18px;
    }

    .ratingslab-review .rl-hero-copy {
        padding: 22px 20px;
    }

    .ratingslab-review .rl-hero-copy h1,
    .ratingslab-review .rl-section-heading h2 {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .ratingslab-review .rl-subtitle,
    .ratingslab-review .rl-section-intro,
    .ratingslab-review .rl-section p,
    .ratingslab-review .rl-faq-item p {
        font-size: 1.05rem;
    }

    .ratingslab-review .rl-radar-visual {
        min-height: 280px;
    }

    .ratingslab-review .rl-radar-ring-1 {
        width: 220px;
        height: 220px;
    }

    .ratingslab-review .rl-radar-ring-2 {
        width: 165px;
        height: 165px;
    }

    .ratingslab-review .rl-radar-ring-3 {
        width: 110px;
        height: 110px;
    }

    .ratingslab-review .rl-radar-shape {
        width: 168px;
        height: 168px;
    }

    .ratingslab-review .rl-note-grid,
    .ratingslab-review .rl-metric-grid,
    .ratingslab-review .rl-radar-labels {
        grid-template-columns: minmax(0, 1fr);
    }

    .ratingslab-review .rl-score-ring {
        width: 170px;
        height: 170px;
    }
}

/* ---------- RetailReview Domain Page ---------- */
.retailreview-page {
    background: #e7edf3;
    color: #1f2430;
}

.retailreview-page .review-page {
    display: block;
}

.retailreview-review {
    min-height: 100vh;
    color: #1f2430;
}

.retailreview-review a {
    color: #2165d8;
    text-decoration: none;
}

.retailreview-review a:hover {
    text-decoration: underline;
}

.retailreview-review .rr-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #d6dde7;
    backdrop-filter: blur(12px);
}

.retailreview-review .rr-header-inner,
.retailreview-review .rr-community-hero,
.retailreview-review .rr-feed-layout,
.retailreview-review .rr-footer-inner {
    width: min(100vw - 36px, 1500px);
    margin: 0 auto;
}

.retailreview-review .rr-header-inner {
    display: grid;
    grid-template-columns: auto auto minmax(260px, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
}

.retailreview-review .rr-brand,
.retailreview-review .rr-brand:visited {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1b2230;
    font-weight: 800;
    font-size: 1.9rem;
}

.retailreview-review .rr-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ff4d0f);
    color: #fff;
    font-weight: 800;
}

.retailreview-review .rr-brand-word {
    letter-spacing: -0.05em;
}

.retailreview-review .rr-community-pill,
.retailreview-review .rr-community-pill:visited {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #f1f4f8;
    color: #4c5364;
    font-size: 1rem;
    font-weight: 700;
}

.retailreview-review .rr-community-pill::before {
    content: "r";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7a33d2;
    color: #fff;
    font-size: 0.95rem;
}

.retailreview-review .rr-header-search input {
    width: 100%;
    height: 48px;
    border: 1px solid #e3e8ef;
    border-radius: 999px;
    padding: 0 18px;
    background: #f7f9fb;
    color: #303849;
    font-size: 1.05rem;
}

.retailreview-review .rr-header-search input:focus {
    outline: 2px solid rgba(33, 101, 216, 0.18);
    border-color: #9ebdf5;
}

.retailreview-review .rr-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.retailreview-review .rr-icon-link,
.retailreview-review .rr-icon-link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f7fb;
    color: #7d8697;
    font-size: 1rem;
}

.retailreview-review .rr-create-post,
.retailreview-review .rr-create-post:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #6da8ff;
    border-radius: 999px;
    color: #2165d8;
    background: #fff;
    font-weight: 700;
}

.retailreview-review .rr-avatar-button,
.retailreview-review .rr-avatar-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cd5b38, #6f8de4);
    color: #fff;
    font-weight: 800;
}

.retailreview-review .rr-community-hero {
    margin-top: 18px;
}

.retailreview-review .rr-community-banner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px 26px;
    border-radius: 28px 28px 18px 18px;
    background:
        linear-gradient(135deg, rgba(20, 40, 84, 0.92), rgba(26, 56, 115, 0.92)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 14%, transparent 14%) 0 0 / 90px 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.retailreview-review .rr-community-banner::after {
    content: "";
    position: absolute;
    inset: auto -40px -36px auto;
    width: 260px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 132, 0, 0.26), transparent 70%);
    pointer-events: none;
}

.retailreview-review .rr-community-main {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.retailreview-review .rr-community-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 24px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #762fe2, #8f4ff0);
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(8, 18, 40, 0.35);
}

.retailreview-review .rr-community-copy h1 {
    margin: 0 0 8px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.retailreview-review .rr-community-copy p,
.retailreview-review .rr-card-kicker,
.retailreview-review .rr-section-label,
.retailreview-review .rr-comment-meta span,
.retailreview-review .rr-post-meta span,
.retailreview-review .rr-month-labels,
.retailreview-review .rr-author-stats dt,
.retailreview-review .rr-sentiment-meta,
.retailreview-review .rr-top-link span,
.retailreview-review .rr-footer p,
.retailreview-review .rr-footer-breadcrumbs a {
    color: #73809a;
    font-size: 0.95rem;
}

.retailreview-review .rr-community-copy p {
    color: rgba(235, 241, 255, 0.88);
    margin: 0;
}

.retailreview-review .rr-community-actions {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.retailreview-review .rr-hero-button,
.retailreview-review .rr-hero-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
}

.retailreview-review .rr-hero-button-secondary,
.retailreview-review .rr-hero-button-secondary:visited {
    background: #fff;
    color: #1a2540;
}

.retailreview-review .rr-hero-button-ghost,
.retailreview-review .rr-hero-button-ghost:visited {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.retailreview-review .rr-community-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid #d7e0ea;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: #f9fbfd;
    overflow-x: auto;
}

.retailreview-review .rr-community-tabs a,
.retailreview-review .rr-community-tabs a:visited {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 12px;
    color: #556072;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.retailreview-review .rr-community-tabs a.is-active {
    color: #152033;
    border-bottom-color: #ff5c0b;
}

.retailreview-review .rr-feed-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.74fr) minmax(312px, 0.68fr);
    gap: 24px;
    align-items: start;
    padding: 22px 0 44px;
}

.retailreview-review .rr-main-column {
    display: grid;
    gap: 22px;
}

.retailreview-review .rr-feed-toolbar,
.retailreview-review .rr-post-card,
.retailreview-review .rr-faq-card,
.retailreview-review .rr-comment-thread,
.retailreview-review .rr-sidebar-card {
    background: #fff;
    border: 1px solid #d8dee6;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(50, 68, 102, 0.07);
}

.retailreview-review .rr-feed-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
}

.retailreview-review .rr-sort-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.retailreview-review .rr-sort-group a,
.retailreview-review .rr-card-toggle,
.retailreview-review .rr-card-toggle:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f3f6fa;
    color: #5c6678;
    font-weight: 700;
}

.retailreview-review .rr-sort-group a.is-active {
    background: #1d2434;
    color: #fff;
}

.retailreview-review .rr-post-frame {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0;
}

.retailreview-review .rr-vote-rail {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 10px;
    padding: 26px 12px 22px;
    border-right: 1px solid #e7edf3;
    background: linear-gradient(180deg, #fbfcfe, #f1f5fa);
    border-radius: 22px 0 0 22px;
}

.retailreview-review .rr-vote-arrow {
    color: #ff5a18;
    font-size: 1.5rem;
}

.retailreview-review .rr-vote-rail strong {
    color: #ff5a18;
    font-size: 2rem;
    line-height: 1;
}

.retailreview-review .rr-vote-rail small,
.retailreview-review .rr-vote-rail em {
    color: #8a95a8;
    font-style: normal;
    text-align: center;
}

.retailreview-review .rr-awards {
    display: grid;
    gap: 8px;
    justify-items: center;
}

.retailreview-review .rr-post-body {
    padding: 24px 24px 26px;
}

.retailreview-review .rr-post-meta,
.retailreview-review .rr-tag-row,
.retailreview-review .rr-comments-head,
.retailreview-review .rr-author-head,
.retailreview-review .rr-sentiment-meta,
.retailreview-review .rr-post-actions,
.retailreview-review .rr-action-cluster,
.retailreview-review .rr-verdict-score,
.retailreview-review .rr-meta-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.retailreview-review .rr-post-meta {
    margin-bottom: 14px;
}

.retailreview-review .rr-post-meta a,
.retailreview-review .rr-post-meta a:visited,
.retailreview-review .rr-comment-meta a,
.retailreview-review .rr-comment-meta a:visited {
    font-weight: 700;
}

.retailreview-review .rr-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 7px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.retailreview-review .rr-badge-gold {
    background: #ffb300;
    color: #1d2130;
}

.retailreview-review .rr-badge-purple {
    background: #7a4ef0;
}

.retailreview-review .rr-badge-green {
    background: #179659;
}

.retailreview-review .rr-badge-slate {
    background: #7b8aa2;
}

.retailreview-review .rr-tag-row {
    margin-bottom: 16px;
}

.retailreview-review .rr-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 9px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
}

.retailreview-review .rr-tag-green {
    background: #128f63;
}

.retailreview-review .rr-tag-violet {
    background: #7440df;
}

.retailreview-review .rr-tag-gold {
    background: #ffb128;
    color: #272b35;
}

.retailreview-review .rr-post-body h2 {
    margin: 0 0 18px;
    color: #202532;
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.retailreview-review .rr-mod-note,
.retailreview-review .rr-tldr-card,
.retailreview-review .rr-ledger-card,
.retailreview-review .rr-pros-card,
.retailreview-review .rr-cons-card {
    border-radius: 18px;
}

.retailreview-review .rr-mod-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid #ffb445;
    background: #fff8e9;
    margin-bottom: 16px;
}

.retailreview-review .rr-mod-note p {
    margin: 0;
}

.retailreview-review .rr-tldr-card {
    padding: 18px 20px 18px 24px;
    background: linear-gradient(135deg, #f7f8fb, #eff3f8);
    border-left: 5px solid #ff5a18;
    margin-bottom: 26px;
}

.retailreview-review .rr-section-label,
.retailreview-review .rr-card-kicker {
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.retailreview-review .rr-tldr-card ul,
.retailreview-review .rr-pros-card ul,
.retailreview-review .rr-cons-card ul {
    margin: 0;
    padding-left: 22px;
}

.retailreview-review .rr-tldr-card li,
.retailreview-review .rr-pros-card li,
.retailreview-review .rr-cons-card li {
    margin-bottom: 12px;
    color: #334056;
    font-size: 1.08rem;
    line-height: 1.65;
}

.retailreview-review .rr-article-section {
    margin-top: 28px;
}

.retailreview-review .rr-section-heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 10px;
}

.retailreview-review .rr-section-heading span,
.retailreview-review .rr-ledger-head h4,
.retailreview-review .rr-author-head h3,
.retailreview-review .rr-top-link strong {
    color: #1f2634;
}

.retailreview-review .rr-section-heading span {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.retailreview-review .rr-section-heading h3 {
    margin: 0;
    color: #202634;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.retailreview-review .rr-article-section p,
.retailreview-review .rr-faq-item p,
.retailreview-review .rr-sidebar-card p,
.retailreview-review .rr-comment-body p {
    margin: 0 0 18px;
    color: #364257;
    font-size: 1.12rem;
    line-height: 1.72;
}

.retailreview-review .rr-ledger-card {
    margin-top: 20px;
    padding: 20px;
    background: #f9fbfe;
    border: 1px solid #dfe7f1;
}

.retailreview-review .rr-ledger-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.retailreview-review .rr-ledger-head h4 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.retailreview-review .rr-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    background: #ffb300;
    color: #1c2230;
    font-weight: 900;
}

.retailreview-review .rr-table-wrap {
    overflow-x: auto;
}

.retailreview-review .rr-ledger-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.retailreview-review .rr-ledger-table th,
.retailreview-review .rr-ledger-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e4ebf3;
    text-align: left;
    font-size: 1rem;
}

.retailreview-review .rr-ledger-table th {
    color: #7d899c;
    font-weight: 700;
}

.retailreview-review .rr-ledger-table tr.is-highlight td {
    background: #fff5d8;
    font-weight: 800;
}

.retailreview-review .rr-pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.retailreview-review .rr-sentiment-card {
    padding: 22px;
}

.retailreview-review .rr-pros-card {
    background: linear-gradient(180deg, #effaf4, #f7fcf8);
    border: 1px solid #8fd7ac;
}

.retailreview-review .rr-cons-card {
    background: linear-gradient(180deg, #fff3f3, #fffafb);
    border: 1px solid #ff9e9e;
}

.retailreview-review .rr-edit-log {
    padding: 18px 0 0;
    border-top: 1px solid #e7edf4;
}

.retailreview-review .rr-edit-log p {
    color: #6a7383;
    font-style: italic;
}

.retailreview-review .rr-post-actions {
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    margin-top: 24px;
    border-top: 1px solid #e6edf4;
}

.retailreview-review .rr-action-cluster a,
.retailreview-review .rr-inline-cta,
.retailreview-review .rr-inline-cta:visited {
    color: #6e7788;
    font-weight: 700;
}

.retailreview-review .rr-inline-cta,
.retailreview-review .rr-inline-cta:visited {
    color: #2165d8;
}

.retailreview-review .rr-faq-card,
.retailreview-review .rr-comment-thread {
    padding: 22px 26px;
}

.retailreview-review .rr-sidebar-card {
    padding: 22px 22px 20px;
    border-radius: 17px;
    box-shadow: 0 8px 22px rgba(44, 63, 94, 0.06);
}

.retailreview-review .rr-faq-list {
    display: grid;
}

.retailreview-review .rr-faq-item {
    border-top: 1px solid #e5ecf3;
}

.retailreview-review .rr-faq-item:first-child {
    border-top: 0;
}

.retailreview-review .rr-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    cursor: pointer;
    color: #202633;
    font-size: 1.18rem;
    font-weight: 800;
    list-style: none;
}

.retailreview-review .rr-faq-item summary::-webkit-details-marker {
    display: none;
}

.retailreview-review .rr-faq-item summary::after {
    content: "+";
    color: #2165d8;
    font-size: 1.9rem;
    line-height: 1;
}

.retailreview-review .rr-faq-item[open] summary::after {
    content: "−";
}

.retailreview-review .rr-comments-head {
    justify-content: space-between;
    margin-bottom: 16px;
}

.retailreview-review .rr-comments-head h3 {
    margin: 0;
    color: #1f2635;
    font-size: 1.48rem;
    letter-spacing: -0.03em;
}

.retailreview-review .rr-comment-sorts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.retailreview-review .rr-comment-sorts a,
.retailreview-review .rr-comment-sorts a:visited {
    display: inline-flex;
    align-items: center;
    min-height: 33px;
    padding: 0 11px;
    border-radius: 999px;
    color: #697589;
    font-size: 0.92rem;
    font-weight: 700;
}

.retailreview-review .rr-comment-sorts a.is-active {
    background: #f1f4f8;
    color: #1d2431;
}

.retailreview-review .rr-comment-input {
    margin-bottom: 16px;
    padding: 15px 16px;
    border: 1px solid #dde4ec;
    border-radius: 15px;
    background: linear-gradient(180deg, #f8fafc, #f2f5f8);
    color: #8792a5;
    font-size: 0.98rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.retailreview-review .rr-comments-list,
.retailreview-review .rr-replies {
    display: grid;
    gap: 12px;
}

.retailreview-review .rr-comments-list > .rr-comment {
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
}

.retailreview-review .rr-comments-list > .rr-comment:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.retailreview-review .rr-comment {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
}

.retailreview-review .rr-comment-reply {
    margin-top: 6px;
    padding-top: 8px;
    border-left: 2px solid #dbe5f0;
    padding-left: 12px;
}

.retailreview-review .rr-comment-votes {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 3px;
    color: #ff6a2b;
    font-weight: 700;
    padding-top: 1px;
}

.retailreview-review .rr-comment-votes span {
    font-size: 0.78rem;
}

.retailreview-review .rr-comment-votes span:last-child {
    color: #acb5c5;
}

.retailreview-review .rr-comment-votes strong {
    color: #667388;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 800;
}

.retailreview-review .rr-comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.retailreview-review .rr-comment-meta a,
.retailreview-review .rr-comment-meta a:visited {
    color: #1e2940;
    font-size: 0.96rem;
    font-weight: 800;
}

.retailreview-review .rr-comment-meta span {
    color: #8791a2;
    font-size: 0.84rem;
}

.retailreview-review .rr-comment-meta .rr-badge {
    min-height: 20px;
    padding: 0 7px;
    border-radius: 6px;
    font-size: 0.73rem;
    letter-spacing: 0.03em;
}

.retailreview-review .rr-comment-body p {
    margin: 0 0 10px;
    color: #394558;
    font-size: 0.97rem;
    line-height: 1.6;
}

.retailreview-review .rr-comment-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: #7b8799;
    font-size: 0.84rem;
    font-weight: 700;
}

.retailreview-review .rr-comment-actions a,
.retailreview-review .rr-comment-actions a:visited {
    color: #7183a4;
}

.retailreview-review .rr-comment-actions a:hover {
    color: #4d6791;
    text-decoration: none;
}

.retailreview-review .rr-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 92px;
}

.retailreview-review .rr-sentiment-score {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.retailreview-review .rr-sentiment-score strong {
    color: #159154;
    font-size: 3.4rem;
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.retailreview-review .rr-sentiment-score span {
    color: #647286;
    font-size: 1.08rem;
    font-weight: 700;
}

.retailreview-review .rr-sentiment-bar {
    display: flex;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #edf2f7;
    margin-bottom: 11px;
    box-shadow: inset 0 1px 2px rgba(49, 67, 99, 0.08);
}

.retailreview-review .rr-sentiment-bar span {
    display: block;
}

.retailreview-review .rr-sentiment-bar .is-positive {
    background: linear-gradient(90deg, #1a9b5b, #32b76f);
}

.retailreview-review .rr-sentiment-bar .is-neutral {
    background: #99a3b2;
}

.retailreview-review .rr-sentiment-bar .is-negative {
    background: #eb6a62;
}

.retailreview-review .rr-sentiment-meta {
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.retailreview-review .rr-sentiment-meta span {
    flex: 1 1 0;
    min-width: 0;
    color: #718093;
    font-size: 0.84rem;
    text-align: center;
}

.retailreview-review .rr-mentions-chart {
    display: grid;
    grid-template-columns: repeat(22, minmax(0, 1fr));
    align-items: end;
    gap: 4px;
    height: 118px;
    padding: 8px 6px 6px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f9fbfd, #f4f7fb);
}

.retailreview-review .rr-mentions-chart span {
    display: block;
    border-radius: 6px 6px 2px 2px;
    opacity: 0.92;
}

.retailreview-review .rr-mentions-chart .is-cool {
    background: linear-gradient(180deg, #74b8f2, #3187d9);
}

.retailreview-review .rr-mentions-chart .is-hot {
    background: linear-gradient(180deg, #ff9c6d, #ff6222);
}

.retailreview-review .rr-month-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 6px;
}

.retailreview-review .rr-month-labels span {
    font-size: 0.83rem;
}

.retailreview-review .rr-author-head {
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.retailreview-review .rr-author-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a3f72, #79a3e6);
    color: #fff;
    font-size: 1.45rem;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(48, 91, 154, 0.18);
}

.retailreview-review .rr-author-head h3 {
    margin: 0 0 5px;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.retailreview-review .rr-author-head .rr-meta-inline {
    gap: 6px;
    align-items: center;
}

.retailreview-review .rr-author-head .rr-meta-inline span:last-child {
    color: #7c8798;
    font-size: 0.87rem;
}

.retailreview-review .rr-author-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0 0 14px;
}

.retailreview-review .rr-author-stats div {
    padding: 10px 0 0;
    border-top: 1px solid #e7edf4;
}

.retailreview-review .rr-author-stats dd {
    margin: 4px 0 0;
    color: #1c2535;
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.retailreview-review .rr-verdict-card {
    background: linear-gradient(180deg, #1b223a, #202847);
    color: #fff;
    padding-top: 20px;
    padding-bottom: 22px;
    box-shadow: 0 16px 32px rgba(26, 36, 62, 0.16);
}

.retailreview-review .rr-verdict-card .rr-card-kicker,
.retailreview-review .rr-verdict-card p,
.retailreview-review .rr-verdict-card span {
    color: rgba(224, 230, 245, 0.82);
}

.retailreview-review .rr-verdict-score strong {
    color: #fff;
    font-size: 3.9rem;
    line-height: 1;
    letter-spacing: -0.07em;
}

.retailreview-review .rr-verdict-score span {
    font-size: 1rem;
    font-weight: 700;
}

.retailreview-review .rr-verdict-card p {
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.62;
}

.retailreview-review .rr-sidebar-cta,
.retailreview-review .rr-sidebar-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ff5a0f;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 90, 15, 0.22);
}

.retailreview-review .rr-sidebar-cta:hover,
.retailreview-review .rr-sidebar-cta:focus-visible {
    background: #ea4f08;
    color: #fff;
    text-decoration: none;
}

.retailreview-review .rr-sidebar-cta:visited {
    color: #fff;
    background: #ff5a0f;
}

.retailreview-review .rr-top-links {
    display: grid;
    gap: 10px;
}

.retailreview-review .rr-top-link,
.retailreview-review .rr-top-link:visited {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 14px;
    border: 1px solid #e7edf3;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfcfe, #f7f9fc);
    color: #202735;
}

.retailreview-review .rr-top-link em {
    color: #189558;
    font-style: normal;
    font-size: 1.15rem;
    font-weight: 800;
}

.retailreview-review .rr-top-link strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.38;
}

.retailreview-review .rr-top-link span {
    font-size: 0.84rem;
}

.retailreview-review .rr-footer {
    border-top: 1px solid #d9e1ea;
    background: rgba(255, 255, 255, 0.55);
}

.retailreview-review .rr-footer-inner {
    display: grid;
    gap: 12px;
    padding: 24px 0 30px;
}

.retailreview-review .rr-footer-breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.retailreview-review .rr-footer-breadcrumbs strong {
    color: #2d374a;
}

@media (max-width: 1280px) {
    .retailreview-review .rr-feed-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .retailreview-review .rr-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .retailreview-review .rr-header-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .retailreview-review .rr-community-banner,
    .retailreview-review .rr-comments-head,
    .retailreview-review .rr-post-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .retailreview-review .rr-sidebar,
    .retailreview-review .rr-pros-cons-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .retailreview-review .rr-post-frame {
        grid-template-columns: minmax(0, 1fr);
    }

    .retailreview-review .rr-vote-rail {
        grid-template-columns: repeat(5, auto);
        justify-content: start;
        gap: 16px;
        border-right: 0;
        border-bottom: 1px solid #e7edf3;
        border-radius: 22px 22px 0 0;
    }

    .retailreview-review .rr-awards {
        display: flex;
        gap: 8px;
    }
}

@media (max-width: 720px) {
    .retailreview-review .rr-header-inner,
    .retailreview-review .rr-community-hero,
    .retailreview-review .rr-feed-layout,
    .retailreview-review .rr-footer-inner {
        width: min(100vw - 18px, 1500px);
    }

    .retailreview-review .rr-post-body,
    .retailreview-review .rr-faq-card,
    .retailreview-review .rr-comment-thread,
    .retailreview-review .rr-sidebar-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .retailreview-review .rr-community-banner {
        padding: 22px 20px;
        border-radius: 22px 22px 16px 16px;
    }

    .retailreview-review .rr-community-mark {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        font-size: 1.9rem;
    }

    .retailreview-review .rr-comment {
        grid-template-columns: minmax(0, 1fr);
    }

    .retailreview-review .rr-comment-votes {
        grid-auto-flow: column;
        justify-content: start;
        gap: 8px;
    }

    .retailreview-review .rr-author-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .retailreview-review .rr-sidebar-card,
    .retailreview-review .rr-comment-thread,
    .retailreview-review .rr-faq-card {
        border-radius: 16px;
    }
}
