:root {
    --primary-color: #0d7377;
    --primary-hover: #0a5c5f;
    --secondary-color: #ff6b35;
    --secondary-hover: #e55a2b;
    --bg-color: #fafbfc;
    --bg-white: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --border-color: #e8e8e8;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
}

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

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.site-logo:hover {
    color: var(--primary-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 28px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

.main-navigation {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.main-content-wrapper,
main {
    flex: 1;
    padding: 2rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.section-accent {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 1px;
}

.featured-section {
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.featured-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.featured-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.featured-large {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.featured-large .featured-image-wrapper {
    height: 320px;
}

.featured-small {
    display: flex;
    flex-direction: row;
}

.featured-small .featured-image-wrapper {
    width: 140px;
    min-width: 140px;
    height: 100%;
}

.featured-image-wrapper {
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.featured-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.featured-title a {
    color: var(--text-primary);
}

.featured-title a:hover {
    color: var(--primary-color);
}

.featured-large .featured-title {
    font-size: 1.4rem;
}

.featured-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
}

.latest-section {
    margin-bottom: 2rem;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.latest-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.latest-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.latest-image-wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.latest-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.latest-card:hover .latest-image {
    transform: scale(1.05);
}

.latest-content {
    padding: 1.25rem;
}

.latest-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.latest-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-title a {
    color: var(--text-primary);
}

.latest-title a:hover {
    color: var(--primary-color);
}

.latest-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.content-layout {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 2.5rem;
}

.primary-content {
    min-width: 0;
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: var(--text-muted);
}

.breadcrumb-link {
    color: var(--text-muted);
}

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

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

.page-header {
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

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

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

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

.card-body {
    padding: 1.25rem;
}

.card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: var(--text-primary);
}

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

.card-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ad-fullwidth {
    grid-column: 1 / -1;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget .widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.author-widget {
    text-align: center;
}

.author-widget-header {
    margin-bottom: 1rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.75rem;
    border: 3px solid var(--border-light);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.author-name a {
    color: var(--text-primary);
}

.author-name a:hover {
    color: var(--primary-color);
}

.author-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trending-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trending-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.trending-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 24px;
    opacity: 0.6;
}

.trending-content {
    flex: 1;
}

.trending-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-title:hover {
    color: var(--primary-color);
}

.trending-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

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

.sidebar-list-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.sidebar-list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.sidebar-list-link:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    margin-left: 0.5rem;
}

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

.category-item {
    border-bottom: 1px solid var(--border-light);
}

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

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.category-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.category-link i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pagination-nav {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-item {
    display: flex;
}

.pagination-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.pagination-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-item.active .pagination-link {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-item.disabled .pagination-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    padding: 0.5rem 0.5rem;
    color: var(--text-muted);
}

.article-page {
    padding: 1.5rem 0;
}

.article-header {
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.author-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.article-date {
    white-space: nowrap;
}

.article-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-views i {
    font-size: 0.9rem;
}

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

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.article-body h2 {
    font-size: 1.5rem;
}

.article-body h3 {
    font-size: 1.25rem;
}

.article-body h4 {
    font-size: 1.1rem;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body img {
    border-radius: var(--radius-sm);
    margin: 1.5rem auto;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.author-profile {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.author-profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.author-profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-profile-name a {
    color: var(--text-primary);
}

.author-profile-name a:hover {
    color: var(--primary-color);
}

.author-profile-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.share-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.share-btn i {
    font-size: 1.1rem;
}

.share-twitter {
    color: #1da1f2;
}

.share-twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.share-facebook {
    color: #4267b2;
}

.share-facebook:hover {
    background: #4267b2;
    color: #fff;
}

.share-linkedin {
    color: #0077b5;
}

.share-linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.share-pinterest {
    color: #bd081c;
}

.share-pinterest:hover {
    background: #bd081c;
    color: #fff;
}

.related-articles {
    margin-top: 2.5rem;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

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

.related-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    box-shadow: var(--shadow-md);
}

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

.related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-image {
    transform: scale(1.05);
}

.related-content {
    padding: 1rem;
}

.related-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-title a {
    color: var(--text-primary);
}

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

.related-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.author-page {
    padding: 2rem 0;
}

.author-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #14919b 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #fff;
}

.author-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin:0 auto 1rem;
}

.author-name-large {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.author-bio-short {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.author-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.author-bio-full {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.75;
}

.author-articles-section {
    margin-bottom: 2rem;
}

.author-articles-section .section-title {
    margin-bottom: 1.25rem;
}

.static-page {
    padding: 1rem 0;
}

.static-page-content {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    line-height: 1.75;
}

.static-page-content h1,
.static-page-content h2,
.static-page-content h3 {
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
}

.static-page-content p {
    margin-bottom: 1rem;
}

.site-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.back-to-top i {
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .featured-large {
        grid-row: auto;
    }

    .featured-large .featured-image-wrapper {
        height: 240px;
    }

    .featured-small {
        flex-direction: column;
    }

    .featured-small .featured-image-wrapper {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

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

    .content-layout {
        grid-template-columns: 70% 28%;
        gap: 1.5rem;
    }

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

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

    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-light);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link::after {
        display: none;
    }

    .content-layout {
        grid-template-columns: 100%;
    }

    .sidebar {
        order: 2;
    }

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

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

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

    .article-title {
        font-size: 1.4rem;
    }

    .article-meta-row {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

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

    .author-profile-img {
        margin: 0 auto;
    }

    .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .author-hero {
        padding: 2rem 1rem;
    }

    .author-name-large {
        font-size: 1.5rem;
    }

    .static-page-content {
        padding: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .featured-large .featured-title {
        font-size: 1.15rem;
    }

    .card-image-wrapper {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .latest-image-wrapper {
        width: 100%;
        aspect-ratio: 4 / 3;
    }
}