:root {
    --blog-bg: #f4f7f5;
    --blog-surface: #ffffff;
    --blog-surface-muted: #edf4ef;
    --blog-border: rgba(15, 23, 42, 0.08);
    --blog-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
    --blog-shadow-soft: 0 12px 36px rgba(15, 23, 42, 0.06);
    --blog-radius-xl: 32px;
    --blog-radius-lg: 24px;
    --blog-radius-md: 18px;
    --blog-radius-sm: 999px;
    --blog-text-strong: #0f172a;
    --blog-text: #334155;
    --blog-text-muted: #64748b;
    --blog-accent: #10b981;
    --blog-accent-dark: #047857;
    --blog-accent-soft: rgba(16, 185, 129, 0.14);
    --blog-secondary-soft: rgba(14, 165, 233, 0.12);
}

.blog-page {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.10), transparent 22%),
        var(--blog-bg);
}

.blog-main {
    padding: 120px 0 110px;
}

.blog-shell {
    display: grid;
    gap: 48px;
}

.blog-hero-panel {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.06), transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(14, 165, 233, 0.05), transparent 40%),
                #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 56px;
    padding: 80px 72px;
    box-shadow: 0 42px 120px -30px rgba(15, 23, 42, 0.08);
}

.blog-hero-panel::before,
.blog-hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
}

.blog-hero-panel::before {
    width: 240px;
    height: 240px;
    right: -60px;
    top: -80px;
    background: rgba(16, 185, 129, 0.10);
}

.blog-hero-panel::after {
    width: 180px;
    height: 180px;
    left: -50px;
    bottom: -70px;
    background: rgba(14, 165, 233, 0.09);
}

.blog-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 72px;
    align-items: center;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--blog-radius-sm);
    background: rgba(255, 255, 255, 0.78);
    color: var(--blog-accent-dark);
    border: 1px solid rgba(16, 185, 129, 0.18);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 22px;
}

.blog-hero-title {
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--blog-text-strong);
}

.blog-hero-title span {
    display: block;
    color: var(--blog-accent);
}

.blog-hero-subtitle {
    max-width: 620px;
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--blog-text);
    margin-bottom: 36px;
    font-weight: 500;
}

.blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.blog-btn,
.blog-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 32px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-btn {
    background: #10b981;
    color: #fff;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.blog-btn-secondary {
    background: #f8fafc;
    color: var(--blog-text-strong);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-btn:hover,
.blog-btn-secondary:hover {
    transform: translateY(-2px);
}

.blog-hero-metrics {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-value {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--blog-text-strong);
}

.metric-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blog-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-note {
    display: none;
}

.featured-story {
    background: #0f172a;
    color: #f8fafc;
    border-radius: 44px;
    padding: 32px;
    box-shadow: 0 60px 100px -30px rgba(15, 23, 42, 0.35);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-story:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 80px 130px -40px rgba(15, 23, 42, 0.5);
}

.featured-story-media img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 32px;
}

.featured-story-body {
    padding-top: 20px;
}

.featured-story-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--blog-radius-sm);
    background: rgba(16, 185, 129, 0.16);
    color: #a7f3d0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    margin-bottom: 14px;
}

.featured-story h2 {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 14px;
}

.featured-story p {
    color: #cbd5e1;
    line-height: 1.7;
}

.featured-story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.blog-section {
    display: grid;
    gap: 22px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.section-heading h2 {
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--blog-text-strong);
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
}

#editoriais .section-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--blog-accent);
    border-radius: 2px;
}

.section-heading p {
    max-width: 620px;
    color: var(--blog-text);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    margin-top: 32px;
}

.editorial-feature,
.editorial-stack article,
.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.editorial-feature {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-feature img {
    width: 100%;
    aspect-ratio: 16/9.5;
    object-fit: cover;
}

.editorial-feature-content {
    padding: 40px;
}

.editorial-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.editorial-stack article {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 36px;
    padding: 34px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.article-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
}

.editorial-feature h3,
.editorial-stack h3,
.blog-card h3 {
    color: var(--blog-text-strong);
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.editorial-feature h3 {
    font-size: 2.3rem;
    margin-bottom: 18px;
    font-weight: 800;
}

.editorial-stack h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.article-excerpt {
    color: var(--blog-text);
    line-height: 1.7;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    font-size: 0.93rem;
    color: var(--blog-text-muted);
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.5);
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: var(--blog-radius-sm);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--blog-border);
    color: var(--blog-text);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.blog-card {
    background: var(--blog-surface);
    border: 1px solid var(--blog-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--blog-shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-card:hover,
.editorial-feature:hover,
.editorial-stack article:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.10);
    border-color: rgba(16, 185, 129, 0.25);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 1.3;
    object-fit: cover;
}

.blog-card-content {
    padding: 22px 22px 24px;
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--blog-text-muted);
    font-size: 0.92rem;
}

.blog-readmore {
    color: var(--blog-accent-dark);
    font-weight: 700;
}

.newsletter-band {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #16324f 60%, #0b1f33);
    color: #e2e8f0;
    border-radius: 34px;
    padding: 34px;
    overflow: hidden;
    position: relative;
}

.newsletter-band::after {
    content: "";
    position: absolute;
    inset: auto -50px -60px auto;
    width: 240px;
    height: 240px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 999px;
}

.newsletter-band h3 {
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.newsletter-band p {
    max-width: 620px;
    color: #cbd5e1;
    line-height: 1.7;
}

.newsletter-actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 18px;
}

.newsletter-card span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #86efac;
    margin-bottom: 8px;
}

.newsletter-card strong {
    display: block;
    font-size: 1.05rem;
    color: #fff;
}

.blog-footer-note {
    text-align: center;
    color: var(--blog-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 1100px) {
    .blog-hero-layout,
    .editorial-grid,
    .newsletter-band {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .blog-main {
        padding: 104px 0 84px;
    }

    .blog-hero-panel {
        padding: 28px;
        border-radius: 28px;
    }

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

    .section-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-band {
        padding: 26px;
        border-radius: 28px;
    }
}

.blog-article-page {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.10), transparent 24%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 18%),
        var(--blog-bg);
    padding-bottom: 100px;
}

.article-hero {
    padding: 120px 0 40px;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--blog-text-muted);
    font-size: 0.92rem;
}

.article-breadcrumbs a {
    color: var(--blog-text-muted);
    text-decoration: none;
}

.article-breadcrumbs strong {
    color: var(--blog-text-strong);
}

.article-hero-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 36px;
    padding: 34px;
    box-shadow: var(--blog-shadow);
}

.article-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 32px;
    align-items: center;
}

.post-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: var(--blog-radius-sm);
    background: var(--blog-accent-soft);
    color: var(--blog-accent-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    margin-bottom: 18px;
}

.post-title {
    font-size: clamp(2.3rem, 4.6vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--blog-text-strong);
    margin-bottom: 18px;
}

.post-deck {
    color: var(--blog-text);
    font-size: 1.08rem;
    line-height: 1.78;
    margin-bottom: 24px;
}

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

.post-meta-card {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(244, 247, 245, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.post-meta-label {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blog-text-muted);
    margin-bottom: 7px;
}

.post-meta-value {
    display: block;
    color: var(--blog-text-strong);
    font-weight: 700;
}

.article-hero-media img {
    width: 100%;
    aspect-ratio: 1.12;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.article-shell {
    padding-top: 18px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.3fr) minmax(0, 0.7fr);
    gap: 30px;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--blog-shadow-soft);
}

.sidebar-card h3 {
    color: var(--blog-text-strong);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.sidebar-card p {
    color: var(--blog-text);
    line-height: 1.7;
}

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

.toc-list a,
.mini-link-list a {
    color: var(--blog-text);
    text-decoration: none;
    line-height: 1.55;
}

.toc-list a:hover,
.mini-link-list a:hover {
    color: var(--blog-accent-dark);
}

.mini-link-list {
    display: grid;
    gap: 12px;
}

.article-main {
    display: grid;
    gap: 28px;
}

.article-prose-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 32px;
    padding: 38px;
    box-shadow: var(--blog-shadow-soft);
}

.article-prose {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--blog-text);
}

.article-prose p {
    margin-bottom: 22px;
}

.article-prose h2 {
    font-size: 2rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 52px 0 18px;
    padding-bottom: 12px;
    color: var(--blog-text-strong);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.article-prose h3 {
    color: var(--blog-text-strong);
    margin: 32px 0 14px;
    font-size: 1.3rem;
}

.article-prose ul,
.article-prose ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.article-prose li {
    margin-bottom: 10px;
}

.article-prose strong {
    color: var(--blog-text-strong);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 28px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.comparison-table th {
    background: rgba(244, 247, 245, 0.96);
    color: var(--blog-text-strong);
}

.info-box,
.cta-box {
    border-radius: 26px;
    padding: 28px;
}

.info-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(14, 165, 233, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.cta-box {
    background: linear-gradient(145deg, #0f172a, #16324f 70%, #0d263c);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.20);
}

.cta-box h3 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 10px;
}

.cta-box p {
    color: #cbd5e1;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.cta-actions .blog-btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(14, 165, 233, 0.14));
    display: grid;
    place-items: center;
    color: var(--blog-accent-dark);
    font-weight: 800;
}

.author-card strong {
    display: block;
    color: var(--blog-text-strong);
}

.author-card span {
    display: block;
    margin-top: 4px;
    color: var(--blog-text-muted);
    font-size: 0.92rem;
}

.related-section {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--blog-shadow-soft);
}

.related-section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
}

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

.related-card {
    display: block;
    background: rgba(244, 247, 245, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.related-card img {
    width: 100%;
    aspect-ratio: 1.28;
    object-fit: cover;
}

.related-card-content {
    padding: 18px;
}

.related-card h3 {
    color: var(--blog-text-strong);
    font-size: 1.08rem;
    line-height: 1.25;
    margin-top: 10px;
}

.related-card p {
    color: var(--blog-text);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-top: 10px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 26px 0;
}

.checklist li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
    background: rgba(244, 247, 245, 0.82);
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.checklist li::before {
    content: "✓";
    color: var(--blog-accent-dark);
    font-weight: 900;
}

@media (max-width: 1100px) {
    .article-hero-layout,
    .article-layout,
    .related-grid,
    .post-meta-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 100px 0 28px;
    }

    .article-hero-card,
    .article-prose-card,
    .related-section {
        padding: 24px;
        border-radius: 26px;
    }

    .article-prose {
        font-size: 1rem;
    }

    .article-prose h2 {
        font-size: 1.6rem;
    }
}

.layout-home .featured-story {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(11, 31, 51, 0.96));
}

.article-variant-guide .post-category,
.article-variant-guide .article-tag {
    background: rgba(14, 165, 233, 0.12);
    color: #0369a1;
}

.article-variant-guide .article-hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.9));
}

.article-variant-science .post-category,
.article-variant-science .article-tag {
    background: rgba(99, 102, 241, 0.12);
    color: #4338ca;
}

.article-variant-science .article-hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 242, 255, 0.9));
}

.article-variant-review .post-category,
.article-variant-review .article-tag {
    background: rgba(249, 115, 22, 0.14);
    color: #c2410c;
}

.article-variant-review .article-hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 237, 0.92));
}

.article-variant-review .article-hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.article-variant-habits .post-category,
.article-variant-habits .article-tag {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
}

.article-variant-habits .sidebar-card:first-child {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.92));
}

.article-variant-editorial .post-category,
.article-variant-editorial .article-tag {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.article-variant-editorial .article-hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
}

.article-variant-editorial .cta-box {
    background: linear-gradient(145deg, #111827, #0f172a 70%, #1f2937);
}

