:root {

    --container-width: 1200px;
    --content-width: 760px;
    --sidebar-width: 300px;
    --sidebar-gap: 140px;

    --color-ink: #0A0F1E;
    --color-text: #1f2937;
    --color-muted: #6C7293;
    --color-bg: #F4F1EB;
    --color-surface: #ECEAE3;
    --color-link: #1A4F8A;
    --color-accent: #C8963E;
    --color-alert: #D45454;
    --color-border: rgba(10, 15, 30, 0.14);
    --color-input-bg: #ffffff;
    --color-white: #ffffff;
    --color-ink-soft: #1E2436;
    --color-nav-muted: #9CA3AF;
    --color-tag-ai-bg: #E6F1FB;
    --color-tag-ai-text: #0C447C;
    --color-tag-india-bg: #EAF3DE;
    --color-tag-india-text: #27500A;
    --color-tag-review-bg: #FAEEDA;
    --color-tag-review-text: #633806;
    --color-tag-vs-bg: #EEEDFE;
    --color-tag-vs-text: #3C3489;
    --color-tag-green-bg: #E1F5EE;
    --color-tag-green-text: #085041;

    --font-headline: "Manrope", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --font-ui: "Inter", system-ui, sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --radius-sm: 4px;
    --radius-md: 8px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-ink);
    font-family: var(--font-headline);
    font-weight: 800;
    line-height: 1.15;
}

button,
input,
textarea,
select,
.site-header,
.site-footer,
.menu,
.entry-meta,
.button,
.affiliate-card,
.pagination {
    font-family: var(--font-ui);
}

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

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

.container--narrow {
    --container-width: var(--content-width);
}

.container--wide {
    --container-width: 1200px;
}

.container--full {
    width: 100%;
}

.content-grid,
.layout-sidebar .container {
    display: grid;
    gap: var(--sidebar-gap);
    grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
}

.site-header,
.site-footer {
    background: var(--color-ink);
    color: var(--color-bg);
}

.site-header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    gap: var(--space-md);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: max-content;
}

.site-branding a {
    color: var(--color-bg);
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-weight: 700;
}

.site-branding span {
    border-left: 1px solid rgba(244, 241, 235, 0.18);
    color: var(--color-accent);
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.4;
    padding-left: var(--space-sm);
    text-transform: uppercase;
}

.desktop-search {
    align-items: center;
    background: rgba(244, 241, 235, 0.08);
    border: 1px solid rgba(244, 241, 235, 0.14);
    border-radius: 999px;
    display: flex;
    flex: 0 1 280px;
    margin-left: auto;
    margin-block: 3px;
    max-width: 280px;
    min-width: 190px;
    overflow: hidden;
}

.desktop-search:focus-within {
    background: rgba(244, 241, 235, 0.12);
    border-color: rgba(213, 161, 67, 0.75);
}

.desktop-search__input {
    background: transparent;
    border: 0;
    color: var(--color-bg);
    flex: 1;
    font-size: 0.8125rem;
    line-height: 1.4;
    min-height: 28px;
    min-width: 0;
    padding: 0 0 0 16px;
}

.desktop-search__input::placeholder {
    color: var(--color-nav-muted);
}

.desktop-search__input:focus {
    outline: 0;
}

.desktop-search__submit {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--color-nav-muted);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 40px;
    font-size: 0.75rem;
    font-weight: 800;
    justify-content: center;
    line-height: 1.4;
    min-height: 28px;
    padding: 0;
}

.desktop-search__submit:hover,
.desktop-search__submit:focus {
    background: transparent;
    color: var(--color-bg);
}

.desktop-search__submit span {
    border: 2px solid currentcolor;
    border-radius: 50%;
    display: block;
    height: 13px;
    position: relative;
    width: 13px;
}

.desktop-search__submit span::after {
    background: currentcolor;
    content: "";
    height: 2px;
    position: absolute;
    right: -6px;
    top: 10px;
    transform: rotate(45deg);
    width: 7px;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.main-navigation .menu {
    margin: 0;
}

.main-navigation .menu a {
    color: var(--color-nav-muted);
    padding: 6px 10px;
    white-space: nowrap;
}

.site-header__link {
    color: var(--color-nav-muted);
    padding: 6px 10px;
    white-space: nowrap;
}

.main-navigation .menu a:hover,
.main-navigation .menu a:focus,
.site-header__link:hover,
.site-header__link:focus,
.category-navigation a:hover,
.category-navigation a:focus {
    color: var(--color-bg);
}

.site-header__cta {
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    color: var(--color-ink);
    font-weight: 700;
    margin-left: var(--space-xs);
    padding: 6px 12px;
    white-space: nowrap;
}

.site-header__cta:hover,
.site-header__cta:focus {
    background: var(--color-bg);
    color: var(--color-ink);
}

.mobile-search-toggle,
.mobile-menu-toggle,
.mobile-search,
.mobile-menu-overlay,
.mobile-navigation {
    display: none;
}

.category-navigation {
    border-top: 1px solid rgba(244, 241, 235, 0.1);
}

.category-navigation .container {
    display: flex;
    align-items: center;
    min-height: 34px;
    gap: var(--space-md);
    overflow-x: auto;
}

.category-navigation a {
    color: var(--color-nav-muted);
    flex: 0 0 auto;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.category-navigation a:first-child {
    color: var(--color-accent);
}

.site-footer {
    padding: var(--space-md) 0;
}

.site-footer p {
    color: var(--color-nav-muted);
    margin: 0;
}

.site-footer__inner {
    align-items: center;
    display: flex;
    gap: var(--space-sm);
    justify-content: space-between;
}

.site-footer__links {
    display: flex;
    gap: var(--space-md);
    font-size: 0.875rem;
    line-height: 1.4;
}

.site-footer__links a {
    color: var(--color-nav-muted);
}

.site-footer__links a:hover,
.site-footer__links a:focus {
    color: var(--color-bg);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.site-main {
    padding: var(--space-lg) 0;
}

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

a:hover,
a:focus {
    color: var(--color-ink);
}

.site-branding a:hover,
.site-branding a:focus {
    color: var(--color-bg);
}

.button,
.affiliate-card__button,
.home-category-list a,
.contact-form button,
.newsletter-strip button,
.tool-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    padding: 0 var(--space-md);
    color: var(--color-ink);
    background: var(--color-accent);
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    gap: 0.35em;
    text-align: center;
    white-space: nowrap;
}

.button:hover,
.button:focus,
.affiliate-card__button:hover,
.affiliate-card__button:focus,
.home-category-list a:hover,
.home-category-list a:focus,
.contact-form button:hover,
.contact-form button:focus,
.newsletter-strip button:hover,
.newsletter-strip button:focus,
.tool-card:hover .tool-card__cta,
.tool-card:focus .tool-card__cta {
    background: var(--color-ink);
    color: var(--color-bg);
}

.menu {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
}

.page-header,
.home-intro {
    max-width: var(--content-width);
    margin-bottom: var(--space-lg);
}

.home-intro h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-header h1,
.home-intro h1 {
    margin: 0 0 var(--space-sm);
    line-height: 1.15;
}

.entry-content,
.entry-summary,
.home-intro p,
.page-header p {
    max-width: var(--content-width);
}

.entry-content > :where(p, ul, ol, blockquote, h1, h2, h3, h4, h5, h6),
.page-content > :where(p, ul, ol, blockquote) {
    max-width: var(--content-width);
}

.entry-content > :where(p, ul, ol, blockquote),
.page-content > :where(p, ul, ol, blockquote) {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 1.4em;
}

.entry-content > :where(ul, ol),
.page-content > :where(ul, ol) {
    padding-left: 1.35em;
}

.entry-content .article-checklist {
    list-style: none;
    padding-left: 0;
}

.entry-content .article-checklist li {
    padding-left: 0;
}

.entry-content > * + *,
.page-content > * + * {
    margin-top: 0;
}

.entry-content > :where(figure, table),
.page-content > :where(figure, table) {
    margin: 0 0 1.6em;
}

.entry-content .article-jump,
.entry-content .article-callout {
    max-width: var(--content-width);
}

.entry-content .article-jump {
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
    margin: 0 0 var(--space-md);
    padding: var(--space-sm);
}

.entry-content .article-jump p {
    color: var(--color-ink);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.entry-content .article-jump .button {
    font-size: 0.9rem;
}

.entry-content .article-callout {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #2563eb;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    padding: var(--space-sm);
}

.entry-content .article-callout__label {
    color: #1d4ed8;
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.entry-content .article-callout p {
    color: #1e3a8a;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.home-hero {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
}

.cover-card,
.post-card,
.tool-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cover-card a,
.post-card__link,
.tool-card {
    color: inherit;
    display: block;
    height: 100%;
}

.cover-card__media {
    align-items: flex-end;
    background: var(--color-link);
    display: flex;
    min-height: 320px;
    padding: var(--space-md);
    position: relative;
}

.cover-card__media::before {
    background:
        linear-gradient(var(--color-white), var(--color-white)) 18% 35% / 28% 64px no-repeat,
        linear-gradient(var(--color-white), var(--color-white)) 56% 35% / 28% 64px no-repeat,
        linear-gradient(var(--color-white), var(--color-white)) 18% 66% / 28% 48px no-repeat,
        linear-gradient(var(--color-white), var(--color-white)) 56% 66% / 28% 48px no-repeat;
    content: "";
    inset: 0;
    opacity: 0.12;
    position: absolute;
}

.cover-card__media > * {
    position: relative;
}

.cover-card h1 {
    color: var(--color-white);
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    margin: var(--space-xs) 0 0;
    max-width: 720px;
}

.cover-card__body,
.post-card__body {
    padding: var(--space-sm);
}

.cover-card__body {
    display: grid;
    gap: var(--space-sm);
}

.read-link,
.post-card__footer,
.section-heading a {
    color: var(--color-link);
    font-family: var(--font-ui);
    font-weight: 700;
    line-height: 1.4;
}

.home-hero__side {
    display: grid;
    gap: var(--space-sm);
}

.tag {
    background: var(--color-tag-review-bg);
    border-radius: var(--radius-sm);
    color: var(--color-tag-review-text);
    display: inline-flex;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    padding: 4px 9px;
    text-transform: uppercase;
}

.tag--soft {
    background: var(--color-tag-ai-bg);
    color: var(--color-tag-ai-text);
}

.post-card--compact .post-card__link {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: 64px minmax(0, 1fr);
    padding: var(--space-sm);
}

.post-card--compact .post-card__body {
    padding: 0;
}

.post-card--compact .entry-summary,
.post-card--compact .post-card__footer {
    display: none;
}

.post-card__media {
    align-items: center;
    aspect-ratio: 16 / 9;
    background: var(--color-tag-vs-bg);
    color: var(--color-tag-vs-text);
    display: flex;
    font-family: var(--font-ui);
    font-size: 1.125rem;
    font-weight: 800;
    justify-content: center;
}

.post-card--compact .post-card__media {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.post-card--related .post-card__media {
    min-height: 72px;
}

.post-card h3 {
    font-size: 1.15rem;
    margin: var(--space-xs) 0;
}

.post-card--compact h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.post-card__meta,
.post-card__footer {
    align-items: center;
    display: flex;
    gap: var(--space-xs);
    justify-content: space-between;
}

.post-card__meta {
    color: var(--color-muted);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    line-height: 1.4;
}

.rating {
    color: var(--color-accent);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    letter-spacing: 0;
    line-height: 1.4;
}

.home-section {
    margin-top: var(--space-lg);
}

.section-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.section-heading h2 {
    align-items: center;
    display: flex;
    gap: var(--space-sm);
    margin: 0;
}

.section-heading h2::after {
    background: var(--color-accent);
    content: "";
    display: block;
    height: 1px;
    width: 40px;
}

.card-grid {
    display: grid;
    gap: var(--space-md);
}

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

.newsletter-strip {
    align-items: center;
    background: var(--color-ink);
    border-radius: var(--radius-md);
    color: var(--color-bg);
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-md);
}

.newsletter-strip h2 {
    color: var(--color-bg);
    margin: 0 0 var(--space-xs);
}

.newsletter-strip p {
    color: var(--color-nav-muted);
    margin: 0;
}

.newsletter-strip form {
    display: flex;
    gap: var(--space-xs);
}

.newsletter-strip input {
    background: var(--color-ink-soft);
    border: 1px solid rgba(244, 241, 235, 0.16);
    border-radius: var(--radius-sm);
    color: var(--color-bg);
    min-height: 44px;
    padding: 0 var(--space-sm);
}

.newsletter-page {
    padding: var(--space-lg) 0;
}

.newsletter-page__hero {
    max-width: 760px;
}

.newsletter-page__eyebrow {
    color: var(--color-muted);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 var(--space-xs);
    text-transform: uppercase;
}

.newsletter-page__hero h1 {
    color: var(--color-ink);
    font-family: var(--font-ui);
    font-size: clamp(2.45rem, 5vw, 4.35rem);
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 var(--space-sm);
}

.newsletter-page__hero p {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.8;
}

.newsletter-page__proof {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.newsletter-page__avatars {
    display: flex;
}

.newsletter-page__avatars span {
    align-items: center;
    background: #d8f3e9;
    border: 2px solid var(--color-bg);
    border-radius: 50%;
    color: #0f6e56;
    display: inline-flex;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    margin-left: -8px;
    width: 34px;
}

.newsletter-page__avatars span:first-child {
    margin-left: 0;
}

.newsletter-page__avatars span:nth-child(2) {
    background: #e0eefc;
    color: #1d4d7c;
}

.newsletter-page__avatars span:nth-child(3) {
    background: #fae7dd;
    color: #8a3f1a;
}

.newsletter-page__avatars span:nth-child(4) {
    background: #efedfe;
    color: #443692;
}

.newsletter-page__avatars span:nth-child(5) {
    background: #e4f0d6;
    color: #375c15;
}

.newsletter-page__proof p {
    color: var(--color-muted);
    flex: 1;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    min-width: 240px;
}

.newsletter-page__panel {
    align-items: center;
    background: #f8faf8;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-ink);
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    margin: var(--space-md) 0;
    padding: var(--space-md);
}

.newsletter-page__panel h2 {
    color: var(--color-ink);
    font-family: var(--font-ui);
    font-size: 1.75rem;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 var(--space-xs);
}

.newsletter-page__panel p {
    color: var(--color-muted);
    margin: 0;
}

.newsletter-page__form form {
    display: flex;
    gap: var(--space-xs);
}

.newsletter-page__form input {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-ink);
    flex: 1;
    min-height: 48px;
    min-width: 0;
    padding: 10px var(--space-sm);
}

.newsletter-page .go1566021689.go1566021689.go1566021689 {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}

.newsletter-page__form input:focus {
    border-color: #1d9e75;
    outline: 2px solid rgba(29, 158, 117, 0.14);
}

.newsletter-page__form button {
    background: #1d9e75;
    border: 0;
    border-radius: var(--radius-sm);
    color: var(--color-white);
    cursor: pointer;
    font-family: var(--font-ui);
    font-weight: 800;
    min-height: 48px;
    padding: 0 var(--space-sm);
}

.newsletter-page__form button:hover,
.newsletter-page__form button:focus {
    background: #0f6e56;
}

.newsletter-page__divider {
    align-items: center;
    display: flex;
    gap: var(--space-xs);
    margin: var(--space-md) 0;
}

.newsletter-page__divider span {
    background: var(--color-border);
    flex: 1;
    height: 1px;
}

.newsletter-page__divider strong {
    color: var(--color-muted);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-page__topics {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: var(--space-md);
}

.newsletter-page__topics article {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
}

.newsletter-page__topics span {
    color: #1d9e75;
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
}

.newsletter-page__topics h2 {
    color: var(--color-ink);
    font-family: var(--font-ui);
    font-size: 1rem;
    letter-spacing: 0;
    margin: 0 0 var(--space-xs);
}

.newsletter-page__topics p {
    color: var(--color-text);
    margin: 0;
}

.newsletter-page__latest,
.newsletter-page__notes {
    max-width: 760px;
}

.newsletter-page__latest {
    margin-bottom: var(--space-md);
}

.newsletter-page__latest h2 {
    color: var(--color-muted);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    margin: 0 0 var(--space-xs);
    text-transform: uppercase;
}

.newsletter-page__latest a {
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-ink);
    display: flex;
    gap: var(--space-xs);
    justify-content: space-between;
    padding: 0.85rem 0;
    text-decoration: none;
}

.newsletter-page__latest a:hover,
.newsletter-page__latest a:focus {
    color: #0f6e56;
}

.newsletter-page__latest span {
    background: #e1f5ee;
    border-radius: 999px;
    color: #0f6e56;
    flex: 0 0 auto;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
}

.newsletter-page__notes {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-page__notes article {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
}

.newsletter-page__notes strong {
    color: var(--color-ink);
    display: block;
    font-family: var(--font-ui);
    margin-bottom: 0.35rem;
}

.newsletter-page__notes p {
    color: var(--color-text);
    margin: 0;
}

.tool-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tool-card {
    display: grid;
    gap: var(--space-xs);
    padding: var(--space-sm);
}

.tool-card__icon {
    align-items: center;
    background: var(--color-tag-review-bg);
    border-radius: var(--radius-md);
    color: var(--color-tag-review-text);
    display: inline-flex;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.tool-card strong {
    color: var(--color-ink);
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.tool-card > span:not(.tool-card__icon):not(.rating):not(.tool-card__cta) {
    color: var(--color-muted);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.home-category-list {
    display: grid;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
}

.home-magazine {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.home-magazine__header {
    max-width: var(--content-width);
}

.home-magazine__grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-magazine__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
}

.home-magazine__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.home-magazine__item h3 {
    margin: 0;
}

.home-magazine__item:first-child h3 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.entry-meta {
    color: var(--color-muted);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.post-list {
    display: grid;
    gap: var(--space-md);
}

.post-list__item {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
}

.post-list__item > * + * {
    margin-top: var(--space-sm);
}

.blog-header {
    max-width: 820px;
    margin-bottom: var(--space-md);
}

.blog-header__eyebrow {
    color: var(--color-accent);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0 0 var(--space-xs);
    text-transform: uppercase;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-sm);
}

.blog-header > p:last-child {
    color: var(--color-text);
    font-size: 1.075rem;
    line-height: 1.75;
    margin: 0;
    max-width: var(--content-width);
}

.blog-summary {
    background: var(--color-white);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    max-width: 920px;
    padding: var(--space-md);
}

.blog-summary h2 {
    font-size: 1.35rem;
    margin: 0 0 var(--space-sm);
}

.blog-summary ul {
    color: var(--color-text);
    display: grid;
    gap: var(--space-xs);
    line-height: 1.65;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-summary li {
    padding-left: 20px;
    position: relative;
}

.blog-summary li::before {
    color: var(--color-accent);
    content: "\2713";
    font-weight: 800;
    left: 0;
    position: absolute;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.blog-filter {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: 42px;
    padding: 0 18px;
}

.blog-filter:hover,
.blog-filter:focus,
.blog-filter.is-active {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: var(--color-bg);
}

.blog-featured {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.blog-featured__link {
    color: inherit;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.95fr);
}

.blog-featured__media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blog-featured__media {
    align-items: center;
    background: var(--color-tag-vs-bg);
    color: var(--color-tag-vs-text);
    display: flex;
    font-family: var(--font-ui);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    justify-content: center;
    min-height: 280px;
}

.blog-featured__body {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-md);
}

.blog-featured__meta {
    color: var(--color-muted);
    display: flex;
    font-size: 0.75rem;
    font-weight: 700;
    gap: var(--space-sm);
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-featured h2 {
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    margin: 0;
}

.blog-featured .entry-summary {
    line-height: 1.7;
}

.blog-articles {
    margin-bottom: var(--space-md);
}

.post-card--blog .post-card__media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.post-card--blog .post-card__link {
    display: flex;
    flex-direction: column;
}

.post-card--blog .post-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: var(--space-xs);
}

.post-card--blog .post-card__footer {
    margin-top: auto;
    padding-top: var(--space-sm);
}

.post-card--blog .post-card__meta {
    flex-wrap: wrap;
}

.blog-filter-empty {
    color: var(--color-muted);
    margin: 0 0 var(--space-md);
}

.blog-newsletter {
    margin-top: var(--space-lg);
}

.search-results-header {
    margin-bottom: var(--space-lg);
    max-width: var(--content-width);
}

.search-results-header h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-sm);
}

.search-results-header > p:last-child {
    color: var(--color-text);
    margin: 0;
}

.search-results-grid {
    margin-bottom: var(--space-md);
}

.search-results-empty {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    max-width: var(--content-width);
    padding: var(--space-md);
}

.search-results-empty h2 {
    margin: 0 0 var(--space-xs);
}

.search-results-empty p {
    margin: 0 0 var(--space-md);
}

.single-post-layout {
    align-items: start;
}

.single-post-content,
.single-post-layout .entry-content {
    min-width: 0;
}

.single-post-layout .entry-content {
    max-width: var(--content-width);
    width: 100%;
}

.single-post-sidebar {
    display: grid;
    gap: var(--space-sm);
    position: sticky;
    top: var(--space-md);
}

.breadcrumb-bar {
    align-items: center;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: calc(-1 * var(--space-lg)) calc(50% - 50vw) var(--space-md);
    padding: 10px max(var(--space-sm), calc((100vw - var(--container-width)) / 2));
}

.breadcrumb-bar,
.breadcrumb-bar a {
    color: var(--color-muted);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    line-height: 1.4;
}

.breadcrumb-bar span:last-child {
    color: var(--color-text);
}

.review-header {
    margin-bottom: var(--space-sm);
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.review-header h1 {
    font-size: clamp(48px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 var(--space-sm);
}

.review-byline {
    align-items: center;
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    gap: var(--space-sm);
    line-height: 1.4;
}

.review-byline strong {
    color: var(--color-ink);
    display: block;
}

.review-byline span {
    display: block;
}

.author-avatar {
    align-items: center;
    background: var(--color-link);
    border-radius: 50%;
    color: var(--color-white);
    display: inline-flex;
    flex: 0 0 32px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    height: 32px;
    justify-content: center;
    text-transform: uppercase;
    width: 32px;
}

.review-byline__divider {
    background: var(--color-border);
    height: 22px;
    width: 1px;
}

.affiliate-disclosure {
    background: var(--color-tag-review-bg);
    border-left: 3px solid var(--color-accent);
    color: var(--color-tag-review-text);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-md);
    padding: 10px var(--space-sm);
}

.single-post-image {
    border-radius: var(--radius-md);
    margin: 0 0 var(--space-md);
    max-width: var(--content-width);
    overflow: hidden;
}

.single-post-image img {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.quick-verdict {
    background: var(--color-ink);
    border-radius: var(--radius-md);
    color: var(--color-bg);
    display: grid;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
}

.quick-verdict__eyebrow,
.review-toc h2,
.sidebar-panel h2 {
    color: var(--color-muted);
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.quick-verdict__eyebrow {
    color: var(--color-accent);
}

.quick-verdict__grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-verdict__grid span {
    color: var(--color-nav-muted);
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.quick-verdict__grid strong {
    color: var(--color-bg);
    display: block;
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.quick-verdict p {
    color: #D1D5DB;
    font-family: var(--font-ui);
    line-height: 1.6;
    margin: 0;
}

.quick-verdict .button {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    width: 100%;
}

.review-cta {
    align-items: center;
    background: var(--color-link);
    border-radius: var(--radius-md);
    color: var(--color-white);
    display: flex;
    gap: var(--space-md);
    justify-content: space-between;
    margin-top: var(--space-md);
    padding: var(--space-md);
}

.review-cta strong,
.review-cta span {
    display: block;
    font-family: var(--font-ui);
    line-height: 1.4;
}

.review-cta strong {
    color: var(--color-white);
    margin-bottom: 4px;
}

.review-cta span {
    color: #B5D4F4;
    font-size: 0.875rem;
}

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

.related-reviews {
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
}

.related-reviews > h2 {
    color: var(--color-muted);
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0 0 var(--space-sm);
    text-transform: uppercase;
}

.review-toc {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: grid;
    gap: 0;
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
}

.review-toc h2 {
    margin-bottom: var(--space-xs);
}

.review-toc a {
    align-items: center;
    border-bottom: 1px solid rgba(10, 15, 30, 0.08);
    display: flex;
    gap: var(--space-xs);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 8px 0;
}

.review-toc a:last-child {
    border-bottom: 0;
}

.review-toc a span {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 24px;
}

.entry-content h2 {
    border-bottom: 0;
    display: inline-block;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 0.75em;
    margin-top: 2em;
    padding-bottom: var(--space-xs);
}

.entry-content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0.65em;
    margin-top: 1.75em;
}

.entry-content :where(h4, h5, h6) {
    line-height: 1.35;
    margin-bottom: 0.6em;
    margin-top: 1.5em;
}

.entry-content .wp-block-table {
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    margin: 2.5rem 0;
    max-width: var(--content-width);
    min-width: 0;
    overflow-x: auto;
    width: 100%;
}

.entry-content table {
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    border: 0;
    border-collapse: separate;
    border-radius: 14px;
    border-spacing: 0;
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 2.5rem 0;
    max-width: var(--content-width);
    overflow-x: auto;
    width: 100%;
}

.entry-content .wp-block-table table {
    display: table;
    margin: 0;
    min-width: 640px;
}

.entry-content th,
.entry-content td {
    border: 0;
    padding: 16px 20px;
    text-align: left;
    vertical-align: top;
}

.entry-content th {
    background: #f8fafc;
    border-bottom: 0;
    color: #111827;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.entry-content td {
    border-bottom: 0;
    color: #374151;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

.entry-content tr:nth-child(even) {
    background: #fcfcfd;
}

.entry-content tr:last-child td {
    border-bottom: 0;
}

.affiliate-card {
    display: grid;
    gap: var(--space-sm);
    background: var(--color-surface);
    border-top: 4px solid var(--color-accent);
    padding: var(--space-md);
}

.affiliate-card--dark {
    background: var(--color-ink);
    border: 2px solid var(--color-accent);
    color: var(--color-bg);
}

.affiliate-card__eyebrow {
    color: var(--color-muted);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.affiliate-card--dark .affiliate-card__eyebrow {
    color: var(--color-accent);
}

.affiliate-card__tool {
    align-items: center;
    display: flex;
    gap: var(--space-sm);
}

.affiliate-card__tool > span {
    align-items: center;
    background: var(--color-ink-soft);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    display: inline-flex;
    flex: 0 0 44px;
    font-size: 0.75rem;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.affiliate-card h2 {
    margin: 0;
    font-size: 1.35rem;
}

.affiliate-card--dark h2 {
    color: var(--color-bg);
    font-size: 1rem;
}

.affiliate-card p {
    margin: 0;
    line-height: 1.5;
}

.affiliate-card--dark p {
    color: var(--color-nav-muted);
}

.affiliate-card__note {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.sidebar-panel {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-sm);
}

.sidebar-toc a {
    color: var(--color-link);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.score-row {
    display: grid;
    gap: 4px;
}

.score-row div {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xs);
}

.score-row span,
.score-row strong {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    line-height: 1.4;
}

.score-row span {
    color: var(--color-muted);
}

.score-row strong {
    color: var(--color-ink);
}

.score-row__bar {
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    display: block;
    height: 5px;
    overflow: hidden;
}

.score-row__bar span {
    background: var(--color-accent);
    display: block;
    height: 100%;
}

.sidebar-newsletter {
    background: var(--color-tag-india-bg);
    border-color: rgba(39, 80, 10, 0.28);
}

.sidebar-newsletter h2,
.sidebar-newsletter p {
    color: var(--color-tag-india-text);
}

.sidebar-newsletter p {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    line-height: 1.55;
    margin: 0;
}

.sidebar-newsletter form {
    display: grid;
    gap: var(--space-xs);
}

.sidebar-newsletter input {
    background: var(--color-white);
    border: 1px solid rgba(39, 80, 10, 0.28);
    border-radius: var(--radius-sm);
    min-height: 40px;
    padding: 0 10px;
}

.sidebar-newsletter button {
    background: var(--color-tag-india-text);
    border: 0;
    border-radius: var(--radius-sm);
    color: var(--color-tag-india-bg);
    font-weight: 700;
    min-height: 40px;
}

.contact-form {
    display: grid;
    gap: var(--space-sm);
    max-width: 640px;
}

.contact-form label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    line-height: 1.4;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    background: var(--color-input-bg);
    color: var(--color-text);
    padding: 12px;
    font: inherit;
    line-height: 1.4;
}

.contact-form button {
    width: fit-content;
}

.form-message {
    max-width: 640px;
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background: var(--color-surface);
    line-height: 1.4;
}

.form-message--success {
    border-left: 4px solid var(--color-accent);
}

.form-message--error {
    border-left: 4px solid var(--color-alert);
}

.uprasaai-field-honeypot {
    position: absolute;
    left: -9999px;
}

@media (max-width: 1024px) {
    .content-grid,
    .layout-sidebar .container {
        gap: var(--space-lg);
        grid-template-columns: 1fr;
    }

    .home-magazine__grid {
        grid-template-columns: 1fr;
    }

    .home-hero,
    .card-grid--three {
        grid-template-columns: 1fr;
    }

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

    .home-magazine__item:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .single-post-sidebar {
        position: static;
    }

    .quick-verdict__grid,
    .newsletter-page__panel,
    .newsletter-page__notes,
    .review-cta {
        grid-template-columns: 1fr;
    }

    .newsletter-page__topics {
        grid-template-columns: 1fr;
    }

    .review-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-featured__link {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 17px;
        line-height: 1.75;
    }

    body.mobile-menu-open,
    body.mobile-search-open {
        overflow: hidden;
    }

    .review-header h1 {
        font-size: clamp(34px, 10vw, 38px);
        line-height: 1.1;
    }

    .entry-content > :where(p, ul, ol, blockquote),
    .page-content > :where(p, ul, ol, blockquote) {
        font-size: 17px;
        line-height: 1.75;
    }

    .entry-content h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .entry-content h3 {
        font-size: 22px;
    }

    .blog-header h1 {
        font-size: clamp(34px, 10vw, 40px);
    }

    .blog-header > p:last-child {
        font-size: 17px;
    }

    .newsletter-page__hero h1 {
        font-size: clamp(34px, 10vw, 40px);
    }

    .newsletter-page__form form {
        flex-direction: column;
    }

    .newsletter-page__latest a {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-summary {
        margin-bottom: var(--space-md);
        padding: var(--space-sm);
    }

    .blog-filters {
        flex-wrap: nowrap;
        margin-inline: -16px;
        overflow-x: auto;
        padding-inline: 16px;
    }

    .blog-filter {
        flex: 0 0 auto;
    }

    .blog-featured {
        margin-bottom: var(--space-md);
    }

    .blog-featured__body {
        padding: var(--space-sm);
    }

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

    .search-results-header {
        margin-bottom: var(--space-md);
    }

    .search-results-header h1 {
        font-size: clamp(32px, 9vw, 38px);
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .entry-content table {
        white-space: nowrap;
    }

    .entry-content .wp-block-table table {
        min-width: 620px;
    }

    .entry-content th,
    .entry-content td {
        font-size: 15px;
        padding: 14px 16px;
    }

    .newsletter-strip,
    .newsletter-strip form {
        align-items: stretch;
        flex-direction: column;
    }

    .site-header > .container {
        min-height: 64px;
    }

    .site-branding {
        min-width: 0;
    }

    .site-branding span,
    .desktop-search,
    .main-navigation,
    .category-navigation {
        display: none;
    }

    .mobile-search-toggle,
    .mobile-menu-toggle {
        align-items: center;
        background: transparent;
        border: 0;
        color: var(--color-bg);
        display: inline-flex;
        height: 42px;
        justify-content: center;
        padding: 0;
        width: 42px;
    }

    .mobile-search-toggle {
        display: inline-flex;
        order: -1;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .mobile-search-toggle span,
    .mobile-search__icon {
        border: 2px solid currentcolor;
        border-radius: 50%;
        display: block;
        height: 17px;
        position: relative;
        width: 17px;
    }

    .mobile-search-toggle span::after,
    .mobile-search__icon::after {
        background: currentcolor;
        content: "";
        height: 2px;
        position: absolute;
        right: -7px;
        top: 14px;
        transform: rotate(45deg);
        width: 8px;
    }

    .mobile-menu-toggle span,
    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        background: currentcolor;
        content: "";
        display: block;
        height: 2px;
        position: relative;
        width: 25px;
    }

    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        position: absolute;
        left: 0;
    }

    .mobile-menu-toggle span::before {
        top: -8px;
    }

    .mobile-menu-toggle span::after {
        top: 8px;
    }

    .mobile-search {
        background: var(--color-white);
        bottom: 0;
        color: var(--color-ink);
        left: 0;
        overflow-y: auto;
        padding: var(--space-sm);
        position: fixed;
        right: 0;
        top: 0;
        z-index: 100;
    }

    .mobile-search.is-open {
        display: block;
    }

    .mobile-search__form {
        align-items: center;
        display: flex;
        gap: var(--space-sm);
    }

    .mobile-search__field {
        align-items: center;
        background: var(--color-white);
        border: 2px solid rgba(10, 15, 30, 0.18);
        border-radius: 12px;
        color: var(--color-text);
        display: flex;
        flex: 1 1 auto;
        min-width: 0;
        padding: 0 var(--space-sm);
    }

    .mobile-search__field:focus-within {
        border-color: var(--color-accent);
    }

    .mobile-search__submit {
        align-items: center;
        background: transparent;
        border: 0;
        color: var(--color-text);
        display: inline-flex;
        flex: 0 0 auto;
        margin-right: var(--space-sm);
        padding: 0;
    }

    .mobile-search__input {
        background: transparent;
        border: 0;
        color: var(--color-ink);
        font-size: 1.15rem;
        height: 46px;
        min-width: 0;
        outline: 0;
        width: 100%;
    }

    .mobile-search__cancel {
        background: transparent;
        border: 0;
        color: var(--color-ink);
        flex: 0 0 auto;
        font-size: 1rem;
        font-weight: 600;
        padding: 0;
    }

    .mobile-search__results {
        background: #f3f5fa;
        border-radius: 18px;
        color: var(--color-muted);
        margin-top: 38px;
        padding: var(--space-md);
    }

    .mobile-search__results p {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin: 0;
    }

    .mobile-menu-overlay {
        background: rgba(0, 0, 0, 0.4);
        border: 0;
        bottom: 0;
        left: 0;
        margin: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 98;
    }

    .mobile-menu-overlay.is-open {
        display: block;
    }

    .mobile-navigation {
        background: var(--color-white);
        bottom: 0;
        color: var(--color-ink);
        left: 0;
        overflow-y: auto;
        padding: 88px 30px 40px;
        position: fixed;
        top: 0;
        width: min(70vw, 360px);
        z-index: 99;
    }

    .mobile-navigation.is-open {
        display: block;
    }

    .mobile-menu-close {
        align-items: center;
        background: var(--color-white);
        border: 1px solid var(--color-border);
        border-radius: 50%;
        display: inline-flex;
        height: 46px;
        justify-content: center;
        padding: 0;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 46px;
    }

    .mobile-menu-close span,
    .mobile-menu-close span::after {
        background: var(--color-ink);
        content: "";
        display: block;
        height: 2px;
        transform: rotate(45deg);
        width: 21px;
    }

    .mobile-menu-close span::after {
        transform: rotate(90deg);
    }

    .mobile-navigation__primary,
    .mobile-navigation__primary .menu,
    .mobile-navigation__categories {
        display: flex;
        flex-direction: column;
    }

    .mobile-navigation__primary .menu {
        gap: 0;
        margin: 0;
    }

    .mobile-navigation__primary > a,
    .mobile-navigation__primary .menu a {
        color: var(--color-ink);
        display: block;
        font-family: var(--font-headline);
        font-size: clamp(24px, 7vw, 28px);
        font-weight: 800;
        line-height: 1.2;
        padding: 13px 0;
    }

    .mobile-navigation__categories {
        border-top: 1px solid var(--color-border);
        gap: var(--space-sm);
        margin-top: var(--space-md);
        padding-top: var(--space-md);
    }

    .mobile-navigation__categories a {
        color: var(--color-muted);
        font-size: 0.9375rem;
        font-weight: 700;
    }

    .site-footer__inner,
    .site-footer__links {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__links {
        gap: var(--space-xs);
    }

    .cover-card__media {
        min-height: 240px;
    }

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