:root {
    --primary: #E86B5E;
    --primary-light: #FFB4A2;
    --secondary: #7C9EB2;
    --secondary-light: #C1D9E0;
    --bg: #FEFAF6;
    --surface: #FFFFFF;
    --border-light: #F0E6DD;
    --text-dark: #4A4A4A;
    --text-soft: #6B6B6B;
    --gray-light: #D9D0C7;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 16px 32px -12px rgba(232, 107, 94, 0.12);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    color: var(--text-soft);
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--secondary-light);
}

.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
}

.menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
    flex: 1;
    margin-left: 40px;
}

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

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover {
    border-bottom-color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        margin-left: 0;
        padding: 0 28px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s;
        border-bottom: 1px solid transparent;
    }

    .main-nav.active {
        max-height: 420px;
        padding: 28px;
        border-bottom-color: var(--border-light);
        box-shadow: var(--shadow-sm);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

.site-footer {
    background: #E9DFD7;
    color: var(--text-dark);
    margin-top: 80px;
    padding: 32px 0;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-nav h4,
.footer-recent h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

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

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a,
.footer-copyright a {
    color: var(--text-soft);
    border-bottom: 1px dashed transparent;
}

.footer-nav a:hover,
.footer-copyright a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary-light);
    text-decoration: none;
}

.footer-article {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-article img {
    width: 80px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
}

.footer-article a {
    color: var(--text-dark);
    font-weight: 500;
}

.footer-article a:hover {
    color: var(--primary);
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-soft);
}

.footer-copyright p {
    margin-bottom: 0;
}

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

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
}

.sidebar-widget {
    background: var(--surface);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.widget-categories,
.widget-popular,
.widget-author {
    margin-bottom: 44px;
}

.widget-categories h3,
.widget-popular h3,
.widget-author h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 4px dotted var(--primary-light);
    display: inline-block;
    color: var(--primary);
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-list li a {
    display: block;
    padding: 10px 18px;
    background: var(--bg);
    border-radius: 40px;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    transition: var(--transition);
}

.category-list li a:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--text-dark);
    transform: translateX(6px);
    text-decoration: none;
}

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

.popular-list li {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-light);
}

.popular-list time {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.popular-list a {
    font-weight: 500;
}

.pagination-wrapper {
    margin-top: 64px;
}

.post-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.post-pagination a,
.post-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 10px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.post-pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    text-decoration: none;
}

.post-pagination .current {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.post-pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

.post-pagination .dots {
    border: none;
    background: transparent;
    box-shadow: none;
}

.feature-section {
    margin: 60px 0 40px;
}

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

.feature-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.feature-card .card-media {
    flex: 0 0 180px;
    max-width: 180px;
}

.feature-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.feature-card .card-content {
    flex: 1;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card .card-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card .card-content h2 a {
    color: inherit;
}

.feature-card .card-content h2 a:hover {
    color: var(--primary);
    text-decoration: none;
}

.feature-card .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.feature-card .brief {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 0;
    line-height: 1.5;
}

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

    .feature-card .card-media {
        flex: 0 0 160px;
        max-width: 160px;
    }
}

@media (max-width: 640px) {
    .feature-card {
        flex-direction: column;
    }

    .feature-card .card-media {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .feature-card .card-media img {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .feature-card .card-content {
        padding: 22px;
    }
}

.category-section {
    margin: 80px 0;
    position: relative;
}

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

.section-header h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--secondary);
    display: inline-block;
    position: relative;
}

.section-header h3:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(45deg, var(--primary-light), var(--primary-light) 8px, transparent 8px, transparent 16px);
}

.category-style-a .category-articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.category-style-a .text-only-article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px dashed var(--border-light);
    position: relative;
}

.category-style-a .text-only-article:before {
    content: "●";
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 8px;
    opacity: 0.6;
}

.category-style-b .category-articles {
    display: flex;
    flex-direction: column;
}

.category-style-b .text-only-article {
    background: var(--surface);
    padding: 22px 28px;
    margin-bottom: 12px;
    border-radius: 30px 30px 30px 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-style-b .text-only-article:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: scale(1.01);
}

.category-style-b .content h4 {
    margin-bottom: 6px;
}

.category-style-b .content .brief {
    margin: 6px 0 0;
}

.text-only-article .content {
    flex: 1;
}

.text-only-article .content h4 {
    margin-bottom: 8px;
}

.text-only-article .content h4 a {
    color: var(--text-dark);
}

.text-only-article .content h4 a:hover {
    color: var(--primary);
}

.text-only-article .meta {
    margin-top: 8px;
}

.static-modules {
    background: linear-gradient(145deg, #FEFAF6 0%, #FCF5EE 100%);
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 80px 0 80px 0;
}

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

.module-card {
    background: var(--surface);
    padding: 36px 28px;
    border-radius: 40px 16px 40px 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.module-card:hover {
    border-radius: 16px 40px 16px 40px;
    background: var(--bg);
    border-color: var(--secondary-light);
    transform: translateY(-4px);
}

.module-icon {
    font-size: 3.2rem;
    display: block;
    margin-bottom: 20px;
}

.module-card h4 {
    color: var(--primary);
    margin-bottom: 16px;
}

.module-card p {
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--secondary);
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.read-more:hover {
    border-bottom-color: var(--secondary);
    text-decoration: none;
}

.latest-articles {
    margin: 80px 0;
}

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

.article-card {
    background: var(--surface);
    border-radius: 32px 32px 32px 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    position: relative;
}

.article-card:hover {
    border-radius: 8px 32px 8px 32px;
    transform: translateY(-6px);
    box-shadow: 0 30px 35px -10px rgba(124, 158, 178, 0.2);
    border-color: var(--secondary-light);
}

.card-image {
    overflow: hidden;
}

.card-image img {
    transition: transform 0.6s;
    border-radius: 32px 32px 0 0;
}

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

.article-card .card-content {
    padding: 28px;
    flex: 1;
}

.category-badge {
    display: inline-block;
    background: var(--secondary-light);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.article-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.article-card h3 a {
    color: var(--text-dark);
}

.article-card h3 a:hover {
    color: var(--primary);
}

.article-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-soft);
    margin: 8px 0 12px;
}

.article-card .brief {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.category-page {
    margin: 40px 0;
}

.category-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.breadcrumb-nav {
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.85rem;
    background: var(--surface);
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid var(--border-light);
}

.breadcrumb-item a {
    color: var(--text-soft);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

.sep {
    margin: 0 8px;
    color: var(--border-light);
}

.post_tag_name {
    font-size: 2rem;
    margin: 24px 0 40px;
    color: var(--primary);
    border-left: 10px solid var(--secondary-light);
    padding-left: 24px;
}

.category-article-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.list-article {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    background: var(--surface);
    border-radius: 24px 8px 24px 8px;
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.list-article:nth-child(odd) {
    transform: rotate(-0.5deg);
    border-radius: 8px 24px 8px 24px;
}

.list-article:nth-child(even) {
    transform: rotate(0.8deg);
}

.list-article:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: var(--primary);
    background: #FFFDFB;
    box-shadow: var(--shadow-md);
}

.list-image img {
    width: 100%;
    border-radius: var(--radius-sm);
    height: 100%;
    object-fit: cover;
}

.category-label {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.list-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.list-content h2 a {
    color: var(--text-dark);
}

.list-content h2 a:hover {
    color: var(--primary);
}

.list-content .meta {
    margin-bottom: 12px;
}

.list-content .brief {
    margin-bottom: 16px;
}

.list-content .read-more {
    font-weight: 600;
    color: var(--primary);
}

.detail-page {
    margin: 40px 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(300px,2fr) minmax(0, 1fr);
    gap: 48px;
}

.article-header h1 {
    font-size: 2.4rem;
    margin: 16px 0 20px;
}

.article-header .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.author-info-card {
    display: flex;
    gap: 28px;
    background: linear-gradient(145deg, #FFFFFF, #FEFAF6);
    padding: 32px;
    border-radius: 48px 16px 48px 16px;
    margin: 36px 0;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid var(--primary-light);
}

.author-details .author-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.author-bio {
    margin-bottom: 16px;
    font-style: italic;
    color: var(--secondary);
}

.author-fullbio {
    font-size: 0.95rem;
    border-top: 1px dashed var(--border-light);
    padding-top: 20px;
    margin-top: 16px;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin-top: 1.8em;
    margin-bottom: 0.6em;
}

.article-body p {
    margin-bottom: 1.5em;
    color: var(--text-dark);
}

.article-body img {
    border-radius: var(--radius-md);
    margin: 24px auto;
    height: auto;
    aspect-ratio: auto;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 56px 0 40px;
    padding: 28px 0;
    border-top: 2px dotted var(--primary-light);
    border-bottom: 2px dotted var(--primary-light);
}

.post-navigation a {
    font-weight: 600;
    background: var(--surface);
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.post-navigation a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    text-decoration: none;
}

.related-articles {
    margin: 56px 0;
}

.related-articles h3 {
    margin-bottom: 28px;
}

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

.related-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.related-card img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.related-card h4 {
    padding: 18px;
    text-align: center;
    font-size: 1rem;
}

.related-card h4 a {
    color: var(--text-dark);
}

.related-card h4 a:hover {
    color: var(--primary);
}

.comment-form-section {
    margin: 56px 0;
    background: var(--surface);
    padding: 44px;
    border-radius: 60px 20px 60px 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.comment-form-section h3 {
    margin-bottom: 28px;
}

.comment-form .form-group {
    margin-bottom: 24px;
}

.comment-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-family: inherit;
    background: var(--bg);
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(232, 107, 94, 0.1);
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-submit:hover {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
    text-decoration: none;
}

.author-page {
    margin: 60px 0;
}

.author-full-profile {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 70px 20px 70px 20px;
    padding: 56px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.author-hero {
    text-align: center;
    border-bottom: 2px dotted var(--primary-light);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.author-avatar-large {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 28px;
    border: 6px solid var(--secondary-light);
    padding: 6px;
    background: white;
    object-fit: cover;
}

.author-hero h1 {
    color: var(--primary);
    margin-bottom: 8px;
}

.author-tagline {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
}

.author-biography {
    line-height: 1.9;
    font-size: 1.05rem;
}

.alone-page {
    margin: 60px 0;
}

.static-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    padding: 56px;
    border-radius: 40px 80px 40px 80px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.static-content h1 {
    color: var(--primary);
    margin-bottom: 32px;
    border-left: 8px solid var(--secondary-light);
    padding-left: 24px;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.85;
}

.more-article-page {
    margin: 40px 0;
}

.more-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.page-title {
    margin-bottom: 32px;
    color: var(--primary);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70%;
    height: 6px;
    background: var(--secondary-light);
    border-radius: 6px;
}

.article-feed {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feed-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    background: var(--surface);
    padding: 28px;
    border-radius: 30px 10px 30px 10px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feed-item:hover {
    border-radius: 10px 30px 10px 30px;
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.feed-image img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

.feed-content h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.feed-content h2 a {
    color: var(--text-dark);
}

.feed-content h2 a:hover {
    color: var(--primary);
}

.feed-content .meta {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.feed-content .brief {
    margin-bottom: 0;
}

.all-article-page {
    margin: 40px 0;
}

.archive-list {
    max-width: 1000px;
    margin: 48px auto;
    background: var(--surface);
    border-radius: 48px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 32px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-item:hover {
    background: var(--primary-light);
    transform: scale(1.01);
}

.archive-item h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.archive-item h2 a {
    color: var(--text-dark);
}

.archive-item:hover h2 a {
    color: var(--primary);
}

.archive-item time {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 992px) {

    .category-layout,
    .detail-layout,
    .more-layout {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .category-style-a .category-articles {
        grid-template-columns: 1fr;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

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

    .list-article,
    .feed-item {
        grid-template-columns: 1fr;
        transform: none !important;
    }

    .list-image,
    .feed-image {
        max-width: 280px;
    }

    .archive-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width:768px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        padding: .6rem 0;
    }

    .logo-text {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .feature-section {
        margin-top: 30px;
    }

    .detail-page {
        margin-top: 20px;
    }

    .author-full-profile {
        padding: 20px;
    }
}