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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    color: #1e1e1e;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

ul,
li {
    list-style: none;
}

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


.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    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 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
}

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

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #0a2540;
}

.logo-text .light {
    font-weight: 300;
    color: #5f6b7a;
}

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

.nav-list a {
    text-decoration: none;
    color: #1e2b3c;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #1e2b3c;
    margin: 3px 0;
}


.top-note {
    background: #f4f7fb;
    border-bottom: 1px solid #e6eaf0;
    padding: 12px 0;
    font-size: 0.95rem;
}

.top-note a {
    color: #0066cc;
    font-weight: 500;
}


.breadcrumbs-rich {
    background: #f9fbfe;
    padding: 16px 24px;
    border-radius: 60px;
    margin: 32px 0 16px;
    border: 1px solid #eaeef4;
}

.breadcrumbs-rich ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px 16px;
    align-items: center;
}

.breadcrumbs-rich li {
    font-size: 0.95rem;
    color: #3e4d60;
}

.breadcrumbs-rich li:not(:last-child)::after {
    content: "›";
    margin-left: 16px;
    color: #b2c0cd;
    font-weight: 400;
}

.breadcrumbs-rich a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs-rich a:hover {
    text-decoration: underline;
}

.breadcrumbs-rich .current {
    color: #1e2b3c;
    font-weight: 600;
}


.section {
    padding: 48px 0;
    border-bottom: 1px solid #eceef2;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #121212;
    letter-spacing: -0.01em;
}


.grid {
    display: grid;
    gap: 28px;
}

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

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

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

.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.3s;
    border: 1px solid #f0f2f5;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 60, 120, 0.08);
}

.card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.3s;
}

.card:hover .card-img img {
    scale: 1.03;
}

.card-content {
    padding: 18px 16px 22px;
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0066cc;
    font-weight: 600;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: #111;
    text-decoration: none;
}

.card-title a:hover {
    color: #0066cc;
}

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

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 1rem;
    color: #5d6b7c;
}

.card-meta a {
    color: #1e2b3c;
    text-decoration: none;
}


.card-large {
    grid-column: span 2;
}


.card-horizontal {
    display: flex;
}

.card-horizontal .card-img {
    width: 40%;
    aspect-ratio: 4/3;
}

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


.cat-block {
    background: #f9fafc;
    border-radius: 24px;
    padding: 24px;
}

.cat-block.alt-bg {
    background: #eef1f6;
}

.cat-block-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.more-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: #0066cc;
}

.mini-card {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: center;
}

.mini-img {
    width: 20%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

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

.mini-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.mini-content a {
    text-decoration: none;
    color: #1e2b3c;
}

.mini-time {
    font-size: 0.75rem;
    color: #6b7a8d;
}

.simple-card {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e6ec;
}

.simple-card h4 a {
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.card-image-overlay {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    height: 150px;
    display: flex;
    align-items: flex-end;
}

.overlay-content {
    padding: 16px;
    color: white;
    width: 100%;
}

.overlay-content h4 a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}


.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.topic-item {
    background: #f2f5f9;
    padding: 16px 12px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    color: #0a2540;
    font-weight: 600;
    transition: background 0.2s;
    border: 1px solid #e2e8f0;
}

.topic-item span {
    display: block;
    font-size: 0.8rem;
    color: #4d6275;
    font-weight: 400;
}

.topic-item:hover {
    background: #e0e7f0;
}


.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.static-select {
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid #ccd3dd;
    background: white;
    font-size: 0.95rem;
    color: #1e2b3c;
}

.static-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 48px 0 20px;
}

.page-link {
    padding: 10px 18px;
    border-radius: 40px;
    background: white;
    border: 1px solid #dee3e9;
    color: #1a2634;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.page-link:hover:not(.disabled):not(.active) {
    background: #e9f0f9;
    border-color: #b8c5d4;
}

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

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


.list-layout {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 48px;
    margin: 40px auto;
}

.list-card {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf0f5;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 28px;
}

.list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 40, 80, 0.08);
}

.list-img {
    width: 200px;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    overflow: hidden;
}

.list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.3s;
}

.list-card:hover .list-img img {
    scale: 1.03;
}

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

.list-content .card-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #0066cc;
    letter-spacing: 0.4px;
}

.list-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 10px 0 8px;
    line-height: 1.4;
}

.list-content h3 a {
    text-decoration: none;
    color: #121212;
}

.list-content h3 a:hover {
    color: #0066cc;
}

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

.list-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #5d6b7c;
}

.list-meta a {
    color: #1e2b3c;
    text-decoration: none;
}

.list-meta a:hover {
    text-decoration: underline;
}


.sidebar {
    background: #f8fafd;
    padding: 28px;
    border-radius: 24px;
    height: fit-content;
}

.author-card {
    background: #f8fafd;
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 32px;
    border: 1px solid #eef2f6;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin:0 auto 16px;
    border: 3px solid white;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 0.95rem;
    color: #3e4d60;
    line-height: 1.5;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 16px;
    letter-spacing: -0.3px;
}

.sidebar-list {
    list-style: none;
    margin-top: 16px;
}

.sidebar-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6ecf3;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    text-decoration: none;
    font-weight: 500;
    color: #1e2b3c;
    display: block;
    line-height: 1.4;
}

.sidebar-list a:hover {
    color: #0066cc;
}

.category-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.category-list li a {
    background: #eef3f9;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e2b3c;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.category-list li a:hover {
    background: #0066cc;
    color: white;
}


.article-layout {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 48px;
    margin: 40px auto;
}

.article-main {
    max-width: 100%;
}

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

.article-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #0f1a27;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .article-header h1 {
        font-size: 1.4rem;
    }

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

.article-dek {
    font-size: 1.2rem;
    color: #3f4d62;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.article-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    color: #5d6b7c;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9edf3;
    padding-bottom: 18px;
    margin-bottom: 24px;
}

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

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

.author-mini-name {
    font-weight: 600;
    color: #1e2b3c;
}

.author-mini-name a {
    color: inherit;
    text-decoration: none;
}

.author-mini-name a:hover {
    color: #0066cc;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.views::before {
    content: "👁️";
    font-size: 1rem;
    margin-right: 4px;
}


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

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

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

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

.article-body img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.article-body figcaption {
    font-size: 0.8rem;
    color: #6d7b8c;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.category-tags {
    margin: 32px 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-tag {
    background: #eef3f9;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e2b3c;
    text-decoration: none;
    transition: 0.2s;
}

.category-tag:hover {
    background: #0066cc;
    color: white;
}


.author-bio-card {
    background: #f8fafd;
    border-radius: 24px;
    padding: 28px;
    margin: 40px 0 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    border: 1px solid #edf2f8;
}

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

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

.author-bio-info p {
    color: #3e4d60;
    font-size: 0.95rem;
    line-height: 1.5;
}


.share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin: 32px 0 40px;
    padding: 18px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.share-btn {
    background: #eef3f9;
    border: none;
    border-radius: 40px;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.95rem;
    color: #6a77a5;
}

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


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

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.comment-item {
    background: #f9fbfe;
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 20px;
    border: 1px solid #e9edf4;
}

.comment-author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-author strong {
    font-size: 1rem;
}

.comment-date {
    font-size: 0.8rem;
    color: #6b7a8f;
    margin-left: auto;
}

.comment-text {
    color: #1e2b3c;
    line-height: 1.5;
}

.comment-form-static {
    margin-top: 40px;
    background: #f8fafd;
    border-radius: 24px;
    padding: 28px;
}

.comment-form-static textarea {
    width: 100%;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid #d0d8e3;
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 16px;
    resize: vertical;
}

.comment-form-static button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: default;
    opacity: 0.8;
}


.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0 48px;
}

.related-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 40, 70, 0.08);
}

.related-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.3s;
}

.related-card:hover .related-img img {
    scale: 1.03;
}

.related-content {
    padding: 16px;
}

.related-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-content h4 a {
    text-decoration: none;
    color: #121212;
}

.related-content h4 a:hover {
    color: #0066cc;
}

.related-meta {
    font-size: 0.8rem;
    color: #5f6f82;
}


.author-page {
    margin: 40px auto 60px;
}

.author-card-large {
    background: #f8fafd;
    border-radius: 32px;
    padding: 48px 48px;
    margin-bottom: 48px;
    border: 1px solid #edf2f8;
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.author-card-left {
    flex-shrink: 0;
}

.author-avatar-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.author-card-right {
    flex: 1;
    min-width: 280px;
}

.author-card-right h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f1a27;
    letter-spacing: -0.02em;
}

.author-tagline {
    font-size: 1.2rem;
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 16px;
}

.author-quick-bio {
    font-size: 1.05rem;
    color: #1e2b3c;
    margin-bottom: 20px;
    max-width: 600px;
}

.author-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 24px 0;
}

.author-meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #6b7a8f;
    letter-spacing: 0.3px;
}

.meta-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f1a27;
}

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

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

.author-social a:hover {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.author-detailed-bio {
    background: white;
    border-radius: 32px;
    padding: 48px;
    border: 1px solid #edf2f8;
    margin-bottom: 48px;
}

.author-detailed-bio h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #0f1a27;
}

.author-detailed-bio p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2a3748;
    margin-bottom: 1.5em;
}

.author-detailed-bio p:last-child {
    margin-bottom: 0;
}


.author-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


.article-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 60, 120, 0.08);
}

.article-card .card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.article-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.3s;
}

.article-card:hover .card-img img {
    scale: 1.03;
}

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

.article-card .card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0066cc;
    font-weight: 600;
}

.article-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 10px 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-title a {
    color: #111;
    text-decoration: none;
}

.article-card .card-title a:hover {
    color: #0066cc;
}

.article-card .card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #5d6b7c;
}


.site-footer {
    background: #0f1a27;
    color: #b0c1d4;
    padding: 48px 0;
    margin-top: 60px;
}

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

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-logo .light {
    color: #8fa5c2;
}

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

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

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

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

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


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e2b3c;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99;
    transition: background 0.2s;
}

.back-to-top.show {
    display: flex;
}


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

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

    .card-large {
        grid-column: span 2;
    }

    .grid-3-cols {
        grid-template-columns: 1fr;
    }

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

    .list-layout,
    .article-layout {
        grid-template-columns: 100%;
    }

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

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

@media (max-width: 700px) {
    .mini-img{
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    .mini-card{
        display: block;
    }
    .author-card-large {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

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

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

@media (max-width: 600px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

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

    .nav-list li {
        margin: 12px 0;
    }

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

    .author-card-grid {
        grid-template-columns: 1fr;
    }

    .author-card-large h1 {
        font-size: 2rem;
    }

    .author-detailed-bio {
        padding: 28px;
    }

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

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

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

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

    .list-img {
        width: 100%;
    }
}