.blog-hero {
    padding: 120px 4rem 4rem;
    background: var(--dark);
    color: var(--light);
    margin-top: 0;
}

.blog-title {
    font-size: 3.5rem;
    margin: 0;
    margin-bottom: 4rem;
    text-align: center;
}

/* Featured Post */
.featured-post {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 4rem;
    gap: 4rem;
    align-items: flex-start;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.featured-post:hover {
    transform: translateY(-4px);
}

.featured-post-image {
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.featured-post-image img,
.featured-post-image .loading-spinner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-post-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newest-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newest-tag::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary);
}

.newest-tag span {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
}

.featured-post h2 {
    font-size: 3.5rem;
    margin: 0;
    color: var(--light);
    line-height: 1.1;
}

.post-meta {
    color: var(--light);
    opacity: 0.8;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--light);
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Posts Grid */
.posts-grid {
    padding: 0 4rem 4rem;
    background: var(--dark);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.post-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.post-card-content h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--light);
    line-height: 1.4;
    padding: 0;
    text-align: left;
}

.post-card-content .post-meta {
    text-align: left;
    padding: 0;
}

/* Mobile responsive styles */
@media screen and (max-width: 1024px) {
    .featured-post {
        max-width: 900px;
        gap: 3rem;
    }

    .featured-post h2 {
        font-size: 2.75rem;
    }

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

@media screen and (max-width: 768px) {
    .blog-hero {
        padding: 100px 2rem 3rem;
    }

    .blog-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .featured-post {
        flex-direction: column;
        padding: 0 2rem;
        gap: 2rem;
    }

    .featured-post-image {
        width: 100%;
    }

    .featured-post-content {
        width: 100%;
        gap: 0.75rem;
    }

    .featured-post h2 {
        font-size: 2.5rem;
    }

    .newest-tag {
        margin-bottom: 1rem;
    }

    .newest-tag span {
        font-size: 1.1rem;
    }

    .posts-grid {
        padding: 2rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .blog-hero {
        padding: 80px 1rem 2rem;
    }

    .blog-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .featured-post {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .featured-post-content {
        gap: 0.5rem;
    }

    .featured-post h2 {
        font-size: 2rem;
    }

    .newest-tag span {
        font-size: 1rem;
    }

    .post-meta {
        font-size: 0.9rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .read-more {
        font-size: 0.9rem;
    }

    .posts-grid {
        padding: 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Blog Post/Article Page Styles */
.article-hero {
    padding: 120px 4rem 2rem;
    width: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    aspect-ratio: 16/9;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Load More Section */
.load-more-section {
    width: 100%;
    padding: 2rem 4rem 6rem;
    text-align: center;
    background: var(--dark);
    display: flex;
    justify-content: center;
}

.load-more-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 8px;
    min-width: 200px;
}

.load-more-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn.hidden {
    display: none;
}

.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.load-more-btn.loading::after {
    content: '...';
    position: absolute;
    right: 1rem;
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40%, 60% { content: '..'; }
    80%, 100% { content: '...'; }
}

@media screen and (max-width: 768px) {
    .load-more-section {
        padding: 2rem 2rem 4rem;
    }
    
    .load-more-btn {
        min-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .load-more-section {
        padding: 1.5rem 1rem 3rem;
    }
    
    .load-more-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}