﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #1a1e2b;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

ul,
li {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eaeef2;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-bottom-color: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.main-nav .nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 450;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0f172a;
    border-bottom: 2px solid #d46d46;
    padding-bottom: 4px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1e293b;
}




.breaking-strip {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    font-size: 0.95rem;
}

.breaking-strip .badge {
    background: #dc2626;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-right: 12px;
    text-transform: uppercase;
}

.breaking-strip a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

.breaking-strip a:hover {
    text-decoration: underline;
}


.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 8px;
    font-size: 0.9rem;
    margin: 24px 0;
    color: #64748b;
}

.breadcrumb a {
    color: #d46d46;
    text-decoration: none;
}


.section {
    padding: 48px 0;
}

.bg-light {
    background-color: #f9f9fc;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.view-all {
    margin-left: auto;
    font-size: 1rem;
    font-weight: 400;
    color: #d46d46;
    text-decoration: none;
}

.subhead {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 300;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.card-grid--diverse {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid--triple-alt {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f3f7;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #d9e2ef;
}

.card-img {
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.aspect-4-3 {
    aspect-ratio: 4 / 3;
}

.card-content {
    padding: 20px 16px 16px;
}

.tag {
    display: inline-block;
    background: #eef2ff;
    color: #d46d46;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    max-height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card h3 a {
    text-decoration: none;
    color: inherit;
}

.excerpt {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    gap: 8px;
    align-items: center;
}


.card--large-image {
    grid-column: span 1;
}

.card--horizontal {
    display: flex;
    flex-direction: row;
}

.card--horizontal .card-img {
    width: 40%;
}

.card--horizontal .card-content {
    width: 60%;
}

.card--compact .excerpt {
    -webkit-line-clamp: 2;
}

.card--overlay-light {
    background: #ffffff;
}

.card--banner-right .card-content {
    border-left: 3px solid #d46d46;
}

.card--minimal {
    border: none;
    box-shadow: none;
    background: transparent;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.feature-card--alt {
    flex-direction: column-reverse;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 28px 24px;
}

.feature-tag {
    background: #d46d46;
    color: white;
}


.topics-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: center;
}

.topic-item {
    background: #ffffff;
    padding: 8px 24px;
    border-radius: 60px;
    border: 1px solid #dee4ed;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    font-size: calc(1rem * var(--size, 1));
    transition: all 0.2s;
}

.topic-item:hover {
    background: #d46d46;
    color: white;
    border-color: #d46d46;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0 24px;
    margin-top: auto;
}

.site-footer p {
    text-align: center;
    margin: 0;
}

.site-footer a {
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.brand-col p {
    font-size: 0.9rem;
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f172a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    background: #d46d46;
}

.category-two-col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
    margin: 40px 0 60px;
}

@media (max-width: 900px) {
    .category-two-col {
        grid-template-columns: 1fr;
    }
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.static-select {
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid #cfddee;
    background: white;
    font-size: 0.9rem;
    color: #1e293b;
    cursor: default;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}


.list-card {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf2f9;
    transition: 0.2s;
}

.list-card:hover {
    border-color: #b9cfec;
    transform: translateY(-3px);
}

.list-card-img {
    flex: 0 0 40%;
    width: 100%;
    height: 100%;
}

.list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-card-content {
    padding: 16px 16px 16px 0;
    flex: 1;
}

.list-card-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.5rem;
}

.list-card--reverse {
    flex-direction: row-reverse;
}

.list-card--reverse .list-card-content {
    padding: 16px 0 16px 16px;
}

@media (max-width: 640px) {

    .list-card,
    .list-card--reverse {
        flex-direction: column;
    }

    .list-card-img {
        width: 100%;
        aspect-ratio: 4/3;
    }
}


.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 14px;
    border-radius: 40px;
    border: 1px solid #dde3eb;
    text-decoration: none;
    color: #334155;
}

.page-link.active {
    background: #d46d46;
    color: white;
    border-color: #d46d46;
}

.page-link.disabled {
    opacity: 0.4;
    pointer-events: none;
}


.sidebar-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #edf2f9;
    padding: 28px 20px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s;
}

.sidebar-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: #d9e2ef;
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.author-bio {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef2f6;
    color: #0f172a;
}

.list-linked {
    list-style: none;
}

.list-linked li {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.list-linked li a {
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 4px;
}

.list-linked li a:hover {
    color: #d46d46;
}

.list-linked .meta-date {
    font-size: 0.75rem;
    color: #64748b;
}

.category-list {
    list-style: none;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e9eef3;
}

.category-list li a {
    color: #334155;
    text-decoration: none;
    font-weight: 450;
}

.category-list li a:hover {
    color: #d46d46;
}

.category-list .count {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
}

.article-two-col {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 48px;
    align-items: start;
    margin: 40px 0 60px;
}

@media (max-width: 900px) {
    .article-two-col {
        grid-template-columns: 100%;
    }
}

.article-main-content {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f3f7;
}

@media (max-width: 640px) {
    .article-main-content {
        padding: 0;
        border-radius: inherit;
        box-shadow: none;
        border: none;
    }
}

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

.article-header h1 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 12px 0 8px;
    color: #0f172a;
}

.share-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem 0 2.5rem;
    flex-wrap: wrap;
}

.share-btn {
    background: #eef2f5;
    border: none;
    border-radius: 40px;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background: #d46d46;
    color: white;
}


.subheadline {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 20px;
    font-weight: 350;
}

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    border-top: 1px solid #e9eef3;
    border-bottom: 1px solid #e9eef3;
    padding: 16px 0;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-mini img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-mini .name {
    font-weight: 600;
    color: #0f172a;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.9rem;
}

.meta-item i {
    font-style: normal;
    opacity: 0.7;
}

.share-btn-static {
    background: none;
    border: 1px solid #cfdeed;
    border-radius: 30px;
    padding: 6px 16px;
    margin-left: auto;
    font-size: 0.9rem;
    cursor: default;
    transition: 0.2s;
}

.share-btn-static:hover {
    background: #f1f5f9;
    border-color: #d46d46;
}

.article-body {
    font-size: 0.985rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.7;
    margin: 32px 0;
}

.article-body img {
    margin: 0 auto;
}

.article-body p {
    margin-bottom: 1.8em;
}

.article-body h2 {
    font-size: 1.6rem;
    margin: 2.2rem 0 1rem;
    font-weight: 500;
}

.article-body blockquote {
    border-left: 4px solid #d46d46;
    background: #f8fafc;
    padding: 20px 24px;
    margin: 32px 0;
    font-style: italic;
    color: #1e293b;
    border-radius: 0 20px 20px 0;
}

.article-categories {
    margin: 32px 0 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-pill {
    background: #eef2ff;
    color: #d46d46;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.category-pill:hover {
    background: #d46d46;
    color: white;
}

.author-large-card {
    display: flex;
    gap: 24px;
    background: #f9f9fc;
    border-radius: 24px;
    padding: 28px;
    margin: 40px 0;
    border: 1px solid #ecf1f7;
}

.author-large-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.author-large-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.author-large-info p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comments-section {
    margin: 48px 0;
}

.comment {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #edf2f9;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    margin-right: 12px;
}

.comment-date {
    font-size: 0.8rem;
    color: #64748b;
}

.comment-text {
    margin-top: 6px;
    color: #1e293b;
}

.comment-form-static {
    background: #f8fafc;
    border-radius: 24px;
    padding: 24px;
    margin-top: 32px;
}

.comment-form-static textarea {
    width: 100%;
    border: 1px solid #dbe4ed;
    border-radius: 20px;
    padding: 16px;
    background: white;
    font-family: inherit;
    margin-bottom: 16px;
    resize: vertical;
}

.comment-form-static button {
    background: #e2e8f0;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: #64748b;
    font-weight: 500;
    cursor: default;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.related-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf2f9;
    transition: 0.2s;
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: #b9cfec;
}

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

.related-card h4 {
    padding: 12px 12px 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.related-card h4 a {
    text-decoration: none;
    color: #0f172a;
}


.author-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.author-master-card {
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid #edf2f9;
    padding: 48px 48px 56px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 56px;
}

@media (max-width: 640px) {
    .author-master-card {
        padding: 32px 24px;
    }
}

.author-header {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.author-header-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.author-header-info {
    flex: 1;
}

.author-header-info h1 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #0f172a;
}

@media (max-width: 640px) {
    .author-header-info h1 {
        font-size: 2rem;
    }
}

.author-tagline {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 20px;
    font-weight: 350;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.author-social {
    display: flex;
    gap: 16px;
}

.author-social a {
    background: #f1f5f9;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    border: 1px solid transparent;
}

.author-social a:hover {
    background: #d46d46;
    color: white;
    transform: translateY(-3px);
    border-color: #d46d46;
}

.author-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 6px 16px;
    border-radius: 40px;
    color: #1e293b;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
}

.author-bio-full {
    font-size: 1rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.7;
    margin: 32px 0 24px;
    padding-top: 24px;
    border-top: 1px solid #e9eef3;
}

.author-bio-full p {
    margin-bottom: 1.6em;
}

.author-bio-full h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: #0f172a;
}

.author-bio-full blockquote {
    border-left: 4px solid #d46d46;
    background: #f8fafc;
    padding: 20px 24px;
    margin: 32px 0;
    font-style: italic;
    color: #1e293b;
    border-radius: 0 20px 20px 0;
}

.featured-works {
    margin-top: 48px;
}

.featured-works h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.work-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf2f9;
    transition: 0.25s ease;
}

.work-card:hover {
    transform: translateY(-6px);
    border-color: #b9cfec;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.work-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.work-content {
    padding: 18px 16px 16px;
}

.work-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #d46d46;
    background: #eef2ff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 40px;
    margin-bottom: 10px;
}

.work-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.work-content h3 a {
    text-decoration: none;
    color: #0f172a;
}

.work-content h3 a:hover {
    color: #d46d46;
}

.work-meta {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 800px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .works-grid {
        grid-template-columns: 1fr;
    }

    .author-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .author-meta {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .card-grid--diverse {
        grid-template-columns: 100%;
    }

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

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


@media (max-width: 640px) {
    .site-header {
        position: relative;
    }

    .header-container {
        height: 54px;
    }

    .card--horizontal {
        flex-direction: column;
    }

    .card--horizontal .card-img,
    .card--horizontal .card-content {
        width: 100%;
    }

    .list-card-content {
        padding: 16px;
    }

    .hamburger {
        display: block;
    }

    .main-nav .nav-list {
        display: none;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #ddd;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-list.show {
        display: flex;
    }

    .article-header h1 {
        font-size: 1.4rem;
    }

    .meta-item,
    .author-mini .name {
        font-size: 0.7rem;
    }

    .card-grid,
    .card-grid--diverse,
    .card-grid--triple-alt {
        grid-template-columns: 1fr;
    }

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

    .article-meta-bar {
        gap: 0.5rem;
    }

    .share-btn-static {
        margin-left: 0;
    }

    .author-large-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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