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

body {
    font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1e24;
    background-color: #ffffff;
}

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

ul,
li {
    list-style: none;
}

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

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


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


.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-bottom-color: #d0ddee;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #0b1b33;
}

.logo span {
    color: #2a7de1;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1a1e24;
    line-height: 1;
}


.top-announcement {
    background: #f0f5fa;
    padding: 12px 0;
    border-bottom: 1px solid #dce5ec;
    font-size: 0.95rem;
}

.top-announcement p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-announcement a {
    color: #2a7de1;
    font-weight: 600;
    text-decoration: none;
}


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

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -12px rgba(0, 50, 100, 0.15);
    border-color: #d9e2ef;
}

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

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

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

.card-content {
    padding: 20px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #2a7de1;
    background: #e9f0fd;
    padding: 3px 10px;
    border-radius: 30px;
    margin-bottom: 10px;
    align-self: flex-start;
}

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

.card h4 {
    font-size: 1.1rem;
}

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

.card a:hover {
    color: #2a7de1;
}

.excerpt {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.meta {
    font-size: 0.85rem;
    color: #6b7a8f;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #edf2f7;
}


.card-large .card-content {
    padding: 24px 20px;
}

.card-horizontal {
    flex-direction: row;
    align-items: center;
}

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

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

.card-mini {
    background: #f8fafd;
    border: 1px dashed #bdd3e8;
}


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

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


.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 15px;
}

.block-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.view-all {
    color: #2a7de1;
    text-decoration: none;
    font-weight: 500;
}


.special-report {
    margin: 50px 0;
}

.report-card {
    display: flex;
    background: #f6faff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #dceaf5;
}

.report-img {
    flex: 1.2;
    aspect-ratio: 16/9;
}

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

.report-content {
    flex: 1;
    padding: 40px 30px;
}

.report-content .label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e05a2a;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.report-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}


.hot-topics {
    margin: 30px 0;
}

.topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.chip {
    background: #f0f4fa;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    color: #1f2a3f;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.chip:hover {
    background: #2a7de1;
    color: white;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.pagination .page,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 6px;
    border-radius: 44px;
    background: white;
    border: 1px solid #dee7ef;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination .page:hover {
    background: #e8f0fe;
    border-color: #2a7de1;
}

.pagination .page.active {
    background: #2a7de1;
    color: white;
    border-color: #2a7de1;
}

.pagination .prev,
.pagination .next {
    padding: 0 18px;
    background: #f2f8ff;
}


.breadcrumb-wrapper {
    margin-top: 20px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 12px 0;
    background: transparent;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 12px;
    color: #9aaebf;
    font-weight: 300;
}

.breadcrumb a {
    color: #2a7de1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #1b4f9e;
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #3e5a76;
    font-weight: 500;
}


.two-col-layout {
    display: flex;
    gap: 40px;
    margin: 30px auto 60px;
}

.main-content {
    flex: 0 0 70%;
    max-width: 70%;
}

.sidebar {
    flex: 0 0 30%;
    max-width: 30%;
}


.category-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e4ecf5;
}

.category-title .count {
    font-size: 1rem;
    font-weight: 400;
    color: #6f8a9f;
    margin-left: 12px;
}


.card-horizontal-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 24px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.3s;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.card-horizontal-list:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 24px -10px rgba(26, 68, 128, 0.15);
    border-color: #cbdae9;
}

.card-horizontal-list .card-img {
    flex: 0 0 200px;
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
}

.card-horizontal-list .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.card-horizontal-list .card-content {
    flex: 1;
    padding: 18px 18px 18px 0;
    display: flex;
    flex-direction: column;
}

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

.card-horizontal-list .excerpt {
    -webkit-line-clamp: 2;
    font-size: 0.95rem;
    margin-bottom: 10px;
}


.sidebar-card {
    background: #f9fcff;
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 30px;
    border: 1px solid #e2ecf9;
    box-shadow: 0 6px 14px rgba(0, 30, 60, 0.03);
    transition: box-shadow 0.2s;
}

.sidebar-card:hover {
    box-shadow: 0 12px 24px -8px rgba(42, 125, 225, 0.12);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 650;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid #d8e5f0;
}

.sidebar-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #2a7de1;
}


.author-card {
    display: flex;
    gap: 18px;
    align-items: center;
}

.author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.author-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

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


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

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #d5e2ed;
}

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

.sidebar-list a {
    text-decoration: none;
    color: #1f2e44;
    font-weight: 500;
    transition: color 0.2s;
    flex: 1;
    font-size: 0.98rem;
}

.sidebar-list a:hover {
    color: #2a7de1;
}

.sidebar-list .date {
    font-size: 0.8rem;
    color: #7795a6;
    margin-left: 12px;
    white-space: nowrap;
}


.category-list .count {
    background: #e4eef9;
    color: #2a5c8f;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}


.article-main {
    padding-right: 10px;
}

.article-header-detail {
    margin-bottom: 30px;
}

.article-header-detail h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #0b1b33;
}

.subhead {
    font-size: 1.2rem;
    color: #4f6f8f;
    margin-bottom: 20px;
    font-weight: 400;
    border-left: 4px solid #2a7de1;
    padding-left: 18px;
}

.meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4ecf5;
}

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

.author-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-name {
    font-weight: 650;
    color: #1f2e44;
    display: block;
    font-size: 0.85rem;
}

.meta-details {
    font-size: 0.85rem;
    color: #6a7f99;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    background: #eef3f8;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s;
}

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

.featured-image {
    margin: 30px 0;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

figcaption {
    font-size: 0.85rem;
    color: #6f7d95;
    margin-top: 8px;
}


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

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

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

.article-body h2 {
    font-size: 1.8rem;
    margin: 2em 0 1em;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0b1b33;
}

.article-body blockquote {
    border-left: 4px solid #2a7de1;
    background: #f5f9ff;
    padding: 20px 25px;
    border-radius: 8px 30px 30px 8px;
    font-style: italic;
    margin: 2em 0;
    color: #1e3349;
}

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

.article-body blockquote cite {
    font-size: 0.9rem;
    color: #4f6f8f;
    font-style: normal;
}


.article-tags {
    margin: 40px 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.article-tags .label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 5px;
}

.article-tags a {
    background: #edf2f7;
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: #1f2a3f;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.article-tags a:hover {
    background: #2a7de1;
    color: white;
}


.author-card-detailed {
    display: flex;
    gap: 25px;
    background: #f9fcff;
    border-radius: 28px;
    padding: 28px 30px;
    margin: 40px 0 30px;
    border: 1px solid #e2ecf9;
    align-items: center;
}

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

.author-info-detailed h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.author-info-detailed .author-bio {
    font-size: 0.95rem;
    color: #3d556f;
    line-height: 1.6;
}

.author-info-detailed a {
    color: #2a7de1;
    text-decoration: none;
}

.author-info-detailed a:hover {
    text-decoration: underline;
}


.comments-section {
    margin: 50px 0 40px;
}

.comments-section h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 650;
}

.comment {
    background: #f8fbfe;
    padding: 20px 25px;
    border-radius: 24px;
    margin-bottom: 15px;
    border: 1px solid #e3ecf5;
    transition: box-shadow 0.2s;
}

.comment:hover {
    box-shadow: 0 8px 18px -8px rgba(42, 125, 225, 0.1);
}

.comment-meta {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e2f42;
}

.comment-date {
    font-weight: normal;
    font-size: 0.8rem;
    color: #7c94ad;
    margin-left: 15px;
}

.comment p {
    color: #2d4055;
    line-height: 1.5;
}

.comment-form {
    margin-top: 30px;
}

.comment-form h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 15px;
    border: 1px solid #cbd6e4;
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #2a7de1;
}

.comment-form textarea {
    border-radius: 24px;
}

.comment-form .btn {
    background: #2a7de1;
    color: white;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-form .btn:hover {
    background: #1b5bbf;
}


.related-posts {
    margin-top: 50px;
}

.related-posts h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

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


.author-profile {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.author-header {
    text-align: center;
    margin: 40px 0 30px;
}

.author-avatar-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.15);
    margin: 0 auto 20px;
}

.author-header h1 {
    font-size: 2.8rem;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.author-role {
    font-size: 1.2rem;
    color: #2a7de1;
    font-weight: 500;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 15px 0 20px;
}

.author-social a {
    color: #3a4c62;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 40px;
    background: #edf2f7;
    transition: all 0.2s;
}

.author-social a:hover {
    background: #2a7de1;
    color: white;
}

.author-bio-full {
    font-size: 1.1rem;
    color: #2d4055;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.author-bio-content {
    margin: 50px 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #1f2e44;
    background: #f9fcff;
    padding: 35px 40px;
    border-radius: 32px;
    border: 1px solid #e2ecf9;
}

.author-bio-content p {
    margin-bottom: 1.5em;
}

.author-posts h2 {
    font-size: 2rem;
    margin: 40px 0 25px;
    font-weight: 650;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #e4ecf5;
    padding-bottom: 12px;
}


.site-footer {
    background: #f9fcff;
    border-top: 1px solid #e2ecf5;
    margin-top: 60px;
    padding: 50px 0 20px;
}

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

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

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

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

.footer-col a:hover {
    color: #2a7de1;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #6d7e94;
}

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

.copyright a {
    font-size: 0.9rem;
    color: #6d7e94;
}


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

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


@media (max-width: 992px) {

    .grid-3,
    .grid-2 {
        gap: 20px;
    }

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

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

    .report-img {
        height: 250px;
    }

    .two-col-layout {
        flex-direction: column;
    }

    .main-content,
    .sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sidebar {
        margin-top: 20px;
    }

    .card-horizontal-list .card-img {
        flex-basis: 140px;
    }

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

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

@media (max-width: 768px) {
    .author-meta {
        gap: 0.5rem;
    }

    .meta-details,
    .author-name {
        font-size: 0.7rem;
        gap: 0.2rem;
    }

    .site-header {
        position: relative;
    }

    .header-container {
        height: 54px;
    }

    .hamburger {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 54px;
        left: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

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

    .report-content {
        padding: 25px;
    }

    .report-content h2 {
        font-size: 1.6rem;
    }

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

    .card-horizontal-list .card-img {
        flex-basis: auto;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .card-horizontal-list .card-content {
        padding: 0 18px 18px 18px;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .breadcrumb li:not(:last-child)::after {
        margin: 0 8px;
    }

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

    .meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-card-detailed {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .author-card-detailed .author-avatar {
        width: 80px;
        height: 80px;
    }

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

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


    .subhead {
        font-size: 1rem;
    }
}

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

    .container {
        padding: 0 18px;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .pagination .page {
        min-width: 38px;
        height: 38px;
    }

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


    .comment-meta {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .comment-date {
        margin-left: 0;
    }

    .author-header h1 {
        font-size: 1.8rem;
    }
}