:root {
    --canvas: #f5f1ec;
    --surface-1: #ffffff;
    --surface-2: #ede9e3;
    --ink: #111111;
    --ink-muted: #626260;
    --ink-subtle: #7b7b78;
    --ink-tertiary: #9c9fa5;
    --hairline: #d3cec6;
    --hairline-soft: #e8e3db;
    --inverse-canvas: #000000;
    --inverse-ink: #ffffff;
    --rounded-xs: 4px;
    --rounded-sm: 6px;
    --rounded-md: 8px;
    --rounded-lg: 12px;
    --rounded-xl: 16px;
    --rounded-xxl: 24px;
    --spacing-xxs: 4px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --spacing-section: 96px;
    --max-width: 1280px;
    --font: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--canvas);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ink);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.5rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    height: 56px;
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.nav-logo {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo:hover {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-muted);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--ink);
    text-decoration: none;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xs) 0;
    min-width: 240px;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 14px;
    color: var(--ink-muted);
}

.nav-dropdown-menu a:hover {
    background: var(--canvas);
    color: var(--ink);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--spacing-xs);
    border-radius: var(--rounded-md);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.2s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    padding: var(--spacing-md) var(--spacing-xl);
    z-index: 99;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: var(--spacing-sm) 0;
    font-size: 15px;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--hairline-soft);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--ink);
    text-decoration: none;
}

.hero {
    padding: var(--spacing-section) 0;
    background: var(--canvas);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.10;
    letter-spacing: -1.4px;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.50;
    letter-spacing: -0.1px;
    color: var(--ink-muted);
    margin-bottom: 0;
}

.hero-image-card {
    background: var(--surface-1);
    border-radius: var(--rounded-xl);
    border: 1px solid var(--hairline);
    overflow: hidden;
}

.hero-image-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.section {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 18px;
    color: var(--ink-muted);
    margin-bottom: var(--spacing-xxl);
}

.section-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: var(--spacing-xs);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.article-card {
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s;
}

.article-card:hover {
    border-color: var(--ink-subtle);
    text-decoration: none;
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-body {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.30;
    letter-spacing: -0.2px;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.article-card-excerpt {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.50;
    flex: 1;
    margin-bottom: var(--spacing-md);
}

.article-card-meta {
    font-size: 12px;
    color: var(--ink-tertiary);
    margin-top: auto;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.topic-card {
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
}

.topic-icon {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
}

.topic-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.2px;
}

.topic-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
}

.article-hero {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
}

.article-breadcrumb {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: var(--spacing-md);
}

.article-breadcrumb a {
    color: var(--ink-muted);
}

.article-breadcrumb a:hover {
    color: var(--ink);
}

.article-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.10;
    letter-spacing: -1.4px;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
}

.article-meta {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 13px;
    color: var(--ink-muted);
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-layout {
    padding: var(--spacing-section) 0;
}

.article-layout-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-xxl);
    align-items: start;
}

.article-content {
    max-width: 720px;
}

.article-featured-image {
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-xxl);
}

.article-featured-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-md);
    line-height: 1.20;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: var(--ink);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    line-height: 1.30;
}

.article-content p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.70;
    margin-bottom: var(--spacing-md);
}

.article-content ul, .article-content ol {
    margin-bottom: var(--spacing-md);
}

.article-content li {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.70;
    margin-bottom: var(--spacing-xs);
}

.article-content a {
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
}

.article-content a:hover {
    border-color: var(--ink);
    text-decoration: none;
}

.article-content strong {
    color: var(--ink);
    font-weight: 500;
}

.info-box {
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.info-box-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.info-box p, .info-box li {
    font-size: 14px;
    color: var(--ink-muted);
}

.warning-box {
    background: #fffbf0;
    border: 1px solid #e8d4a0;
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.warning-box-title {
    font-size: 15px;
    font-weight: 500;
    color: #7a5a00;
    margin-bottom: var(--spacing-sm);
}

.warning-box p {
    font-size: 14px;
    color: #5a4200;
}

.article-sidebar {
    position: sticky;
    top: calc(56px + var(--spacing-xl));
}

.sidebar-card {
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.sidebar-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--hairline-soft);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--hairline-soft);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.4;
}

.sidebar-links a:hover {
    color: var(--ink);
}

.sidebar-ext-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-tertiary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section {
    padding: var(--spacing-section) 0;
    background: var(--canvas);
}

.contact-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-section);
    align-items: start;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.8px;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
}

.contact-info p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.contact-detail {
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: var(--spacing-sm);
}

.contact-form {
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-xl);
    padding: var(--spacing-xxl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
}

.form-input {
    width: 100%;
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-md);
    padding: 10px 14px;
    font-family: var(--font);
    font-size: 16px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.15s;
    min-height: 44px;
}

.form-input:focus {
    border-color: var(--ink-muted);
}

.form-input::placeholder {
    color: var(--ink-tertiary);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background: var(--ink);
    color: var(--inverse-ink);
    border: none;
    border-radius: var(--rounded-md);
    padding: 10px 18px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    min-height: 44px;
    transition: opacity 0.15s;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-message {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--rounded-md);
    display: none;
}

.form-message.success {
    background: #f0faf0;
    border: 1px solid #a0d4a0;
    color: #2a6b2a;
    display: block;
}

.form-message.loading {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    color: var(--ink-muted);
    display: block;
}

.page-hero {
    padding: var(--spacing-xxl) 0;
    border-bottom: 1px solid var(--hairline);
}

.page-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1.4px;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
    line-height: 1.10;
}

.page-subtitle {
    font-size: 18px;
    color: var(--ink-muted);
    max-width: 600px;
}

.page-content {
    padding: var(--spacing-section) 0;
}

.prose {
    max-width: 760px;
}

.prose h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-md);
    line-height: 1.20;
}

.prose h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: var(--ink);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    line-height: 1.30;
}

.prose p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.70;
    margin-bottom: var(--spacing-md);
}

.prose ul, .prose ol {
    margin-bottom: var(--spacing-md);
}

.prose li {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.70;
    margin-bottom: var(--spacing-xs);
}

.prose a {
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
}

.prose a:hover {
    border-color: var(--ink);
    text-decoration: none;
}

.prose strong {
    color: var(--ink);
    font-weight: 500;
}

.disclaimer-box {
    background: var(--surface-2);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.disclaimer-box p {
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: 0;
}

.site-footer {
    background: var(--canvas);
    border-top: 1px solid var(--hairline);
    padding: var(--spacing-xxl) 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
    border-bottom: 1px solid var(--hairline-soft);
}

.footer-brand-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--ink-subtle);
    line-height: 1.5;
    max-width: 280px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    font-size: 13px;
    color: var(--ink-subtle);
}

.footer-links a:hover {
    color: var(--ink);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copy {
    font-size: 12px;
    color: var(--ink-tertiary);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    font-size: 12px;
    color: var(--ink-tertiary);
}

.footer-legal a:hover {
    color: var(--ink-muted);
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--inverse-canvas);
    color: var(--inverse-ink);
    padding: var(--spacing-lg) var(--spacing-xl);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-text a {
    color: #a0a0a0;
    border-bottom: 1px solid #444;
}

.cookie-text a:hover {
    color: var(--inverse-ink);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--inverse-ink);
    color: var(--inverse-canvas);
    border: none;
    border-radius: var(--rounded-md);
    padding: 8px 16px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-height: 40px;
}

.btn-cookie-reject {
    background: transparent;
    color: #a0a0a0;
    border: 1px solid #444;
    border-radius: var(--rounded-md);
    padding: 8px 16px;
    font-family: var(--font);
    font-size: 14px;
    cursor: pointer;
    min-height: 40px;
}

.btn-cookie-accept:hover {
    background: #e0e0e0;
}

.btn-cookie-reject:hover {
    border-color: #a0a0a0;
    color: var(--inverse-ink);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-section);
    align-items: start;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: var(--surface-1);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg);
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.8px;
    margin-bottom: var(--spacing-xxs);
}

.stat-label {
    font-size: 13px;
    color: var(--ink-muted);
}

.team-desc {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }

    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .nav-inner {
        padding: 0 var(--spacing-md);
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
        gap: var(--spacing-xl);
    }

    .hero {
        padding: var(--spacing-xxl) 0;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .hero-image-card img {
        height: 240px;
    }

    .section {
        padding: var(--spacing-xxl) 0;
    }

    .section-title {
        font-size: 28px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }

    .topics-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }

    .article-layout-inner {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }

    .article-sidebar {
        position: static;
    }

    .article-title {
        font-size: 32px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
        gap: var(--spacing-xl);
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: var(--spacing-xl);
    }

    .page-title {
        font-size: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }

    .footer-inner {
        padding: 0 var(--spacing-md);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .cookie-banner {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .article-title {
        font-size: 26px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        padding: 0;
    }

    .topics-grid {
        padding: 0;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
