/* ===== HERO SECTION STYLES ===== */
.fullpage-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
    color: #000;
}

.hero-breadcrumb a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-divider {
    opacity: 0.6;
}

/* Latest Posts Grid */
.latest-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    width: 100%;
}

/* Featured Latest Post */
.featured-latest {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    height: 450px;
    transition: transform 0.3s ease;
}

.featured-latest:hover {
    transform: translateY(-5px);
}

.featured-latest-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.6s ease;
}

.featured-latest:hover .featured-latest-bg {
    transform: scale(1.05);
}

.featured-latest-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.featured-latest-category {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-latest-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.featured-latest-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
}

.featured-latest-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.featured-latest-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-latest-meta i {
    font-size: 14px;
}

/* Latest Sidebar */
.latest-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.latest-side-post {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid #dfdfdf;
}

.latest-side-post:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border: 1px solid #dfdfdf;
}

.latest-side-img {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.latest-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-side-post:hover .latest-side-img img {
    transform: scale(1.1);
}

.latest-side-content {
    flex: 1;
}

.latest-side-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.latest-side-meta {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
}

.side-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Actions Container */
.hero-actions-container {
    position: relative;
    z-index: 3;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-actions .btn-hero {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: white;
    color: var(--primary);
}

.hero-actions .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-actions .btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Social Share */
.hero-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

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

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    border-color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-latest-title {
        font-size: 2rem;
    }
    
    .latest-side-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 992px) {
    .latest-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-latest {
        height: 400px;
    }
    
    .hero-actions {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 80px 0 30px;
    }
    
    .featured-latest {
        height: 350px;
    }
    
    .featured-latest-content {
        padding: 25px;
    }
    
    .featured-latest-title {
        font-size: 1.8rem;
    }
    
    .featured-latest-excerpt {
        font-size: 1rem;
    }
    
    .latest-side-post {
        padding: 15px;
    }
    
    .latest-side-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-latest {
        height: 300px;
    }
    
    .featured-latest-title {
        font-size: 1.5rem;
    }
    
    .featured-latest-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .latest-side-post {
        flex-direction: column;
        text-align: center;
    }
    
    .latest-side-img {
        width: 100%;
        height: 150px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
}
/* ===== CSS RESET & BASE ===== */
:root {
    --primary: #2c3e50;
    --primary-dark: #1a252f;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --gray: #95a5a6;
    --dark-gray: #7f8c8d;
    --border: #e0e0e0;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== FULL-PAGE HERO ===== */
.fullpage-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 30px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: black;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-divider {
    opacity: 0.6;
}

.hero-main-content {
    max-width: 800px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.9;
}

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

.hero-category {
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
}

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

.author-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.author-details p {
    font-size: 14px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 8px;
}

/* ===== FEATURED ARTICLES ===== */
.featured-articles {
    padding: 40px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.featured-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.featured-card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
}

.featured-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.featured-card-content {
    padding: 24px;
}

.featured-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray);
}

.featured-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.featured-card-content h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.featured-card-content h3 a:hover {
    color: var(--secondary);
}

.featured-card-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.featured-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.card-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 10px;
}

.card-views {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content-layout {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

/* Listing Header */
.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.listing-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.listing-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray);
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: var(--primary);
    cursor: pointer;
    transition: border-color 0.3s;
}

.sort-select:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Articles Listing */
.articles-listing {
    margin-bottom: 40px;
}

.listing-item {
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
    transition: background-color 0.3s;
}
.listing-item:first-child {
    padding-top: 0;
}

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

.listing-item-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.listing-image {
    flex-shrink: 0;
    width: 220px;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

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

.listing-item:hover .listing-image img {
    transform: scale(1.05);
}

.listing-content {
    flex: 1;
}

.listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray);
}

.listing-category {
    background: var(--light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.listing-content .listing-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.listing-content .listing-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.listing-content .listing-title a:hover {
    color: var(--secondary);
}

.listing-excerpt {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.listing-stats {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--gray);
}

.listing-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.listing-read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.listing-read-more:hover {
    gap: 10px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-load-more:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-load-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== SIDEBAR ===== */
.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.widget-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Popular Posts */
.sidebar-post {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-rank {
    width: 32px;
    height: 32px;
    background: var(--light);
    color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.post-content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.post-content h4 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.post-content h4 a:hover {
    color: var(--secondary);
}

.post-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--gray);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: var(--accent);
    justify-content: center;
}

.newsletter-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--accent);
}

.widget-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.btn-newsletter {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-newsletter:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 12px;
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

.category-item:hover {
    background: var(--secondary);
    color: white;
    transform: translateX(4px);
}

.category-name {
    font-weight: 600;
    font-size: 14px;
}

.category-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-item:hover .category-count {
    background: rgba(255,255,255,0.2);
}

/* Ad Widget */
.ad-widget {
    padding: 0;
    overflow: hidden;
}

.ad-label {
    background: var(--gray);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-content {
    padding: 16px;
    text-align: center;
}

.ad-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.ad-text {
    font-size: 14px;
    color: var(--dark-gray);
    font-style: italic;
}

/* ===== FOOTER AD ===== */
.footer-ad-section {
    padding: 40px 0;
    background: #f8f9fa;
    border-top: 1px solid var(--border);
}

.footer-ad-content {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.ad-placeholder {
    color: var(--gray);
    font-size: 14px;
}

.ad-placeholder span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fullpage-hero {
        min-height: 600px;
        height: auto;
        max-height: none;
    }
    
    .hero-content-wrapper {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-excerpt {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .listing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .listing-item-inner {
        flex-direction: column;
        gap: 16px;
    }
    
    .listing-image {
        width: 100%;
        height: 200px;
    }
    
    .listing-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .listing-read-more {
        align-self: flex-start;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-details {
        text-align: center;
    }
    
    .listing-meta {
        flex-direction: column;
        gap: 8px;
    }
}
