/* Blog Specific Styles */

/* CSS Variables for Blog Hero */
:root {
    --background-primary: #fdfbf7;
    --background-secondary: #f8f4e6;
    --background-tertiary: #f5f0e8;
    --primary-brown: #8b4513;
    --border-light: rgba(212, 175, 55, 0.2);
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

.blog-main {
    padding-top: 80px;
    min-height: 100vh;
    overscroll-behavior: none;
}

/* Blog Hero - Matching Index Hero Design */
.blog-hero.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/mobile-hero-index-gh.svg') center center/cover no-repeat;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Desktop blog hero with SVG background */
@media (min-width: 769px) {
    .blog-hero.hero {
        background: url('../images/hero-bg-gh.svg') center center/cover no-repeat;
        transform: scale(1.08);
        animation: simpleZoomOutDesktop 1.2s ease-out forwards;
    }
}

@keyframes simpleZoomOutDesktop {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Use the same hero background and shapes from main.css */
.blog-hero.hero .hero-background,
.blog-hero .hero-background,
.hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.blog-hero.hero .hero-shapes,
.blog-hero .hero-shapes,
.hero .hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.blog-hero.hero .shape,
.blog-hero .shape,
.hero .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 148, 31, 0.05) 100%) !important;
    animation: float 20s ease-in-out infinite;
    backdrop-filter: blur(1px);
}

.blog-hero.hero .shape-1,
.blog-hero .shape-1,
.hero .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.blog-hero.hero .shape-2,
.blog-hero .shape-2,
.hero .shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -3%;
    animation-delay: -7s;
}

.blog-hero.hero .shape-3,
.blog-hero .shape-3,
.hero .shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

.blog-hero .hero-content,
.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.blog-hero .hero-badge,
.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-xl);
    font-size: 0.9rem;
    color: var(--primary-brown);
    font-weight: var(--font-weight-medium);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.blog-hero .hero-badge:hover,
.hero .hero-badge:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.blog-hero .badge-icon,
.hero .badge-icon {
    font-size: 1.1rem;
}

.blog-hero .hero-title,
.hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d1810;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.blog-hero .hero-subtitle,
.hero .hero-subtitle {
    font-size: 1.25rem;
    color: #5d4037;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-hero .hero-stats .stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

.blog-hero .hero-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.12);
}

.blog-hero .hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-hero .hero-stats .stat-label {
    font-size: 0.85rem;
    color: #8b4513;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-hero .hero-actions,
.hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.blog-hero .primary-btn,
.hero .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.blog-hero .primary-btn::before,
.hero .primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.blog-hero .primary-btn:hover::before,
.hero .primary-btn:hover::before {
    left: 100%;
}

.blog-hero .primary-btn:hover,
.hero .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.blog-hero .secondary-btn,
.hero .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #8b4513;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.08);
}

.blog-hero .secondary-btn:hover,
.hero .secondary-btn:hover {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.blog-hero .btn-icon,
.hero .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.blog-hero .primary-btn:hover .btn-icon,
.hero .primary-btn:hover .btn-icon {
    transform: translateX(3px);
}

.blog-content {
    padding: 60px 0;
}

.blog-search {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.blog-search input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid #d4af37;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.blog-search input:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.clear-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #d4af37;
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.clear-search:hover {
    background: #b8860b;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4af37;
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 350px));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
    justify-content: center;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 350px;
    width: 100%;
}

.blog-post.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-post.clickable-post {
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-post.clickable-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.blog-post.clickable-post:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.blog-post.clickable-post:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-post-image {
    width: 100%;
    height: 220px;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-image.placeholder {
    background: linear-gradient(135deg, #d4af37, #8b4513);
    color: white;
    font-size: 3rem;
}

.blog-post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 280px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.blog-post-category {
    background: #d4af37;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-post h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #8b4513;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.9rem;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #b8860b;
}

.read-more-text {
    color: #d4af37;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-post.clickable-post:hover .read-more-text {
    opacity: 1;
    color: #b8860b;
}

.blog-post.clickable-post:hover .read-more-icon {
    transform: scale(1.1);
}

.blog-post-lang {
    display: flex;
    gap: 0.5rem;
}

.lang-badge {
    background: #f5f0e8;
    color: #8b4513;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.loading-spinner {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
}

.spinner {
    width: 100%;
    height: 3px;
    background: rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        #d4af37 50%, 
        rgba(212, 175, 55, 0.3) 100%);
    animation: smoothSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes smoothSlide {
    0% {
        left: -30%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.no-posts {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

/* Blog Post Detail Modal */
.post-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.post-modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.post-modal-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #d4af37, #8b4513);
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}

.post-modal-body {
    padding: 2rem;
}

.post-modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.post-modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.post-modal-content-text {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.post-modal-content-text h2,
.post-modal-content-text h3 {
    margin: 2rem 0 1rem;
    color: #8b4513;
}

.post-modal-content-text p {
    margin-bottom: 1.5rem;
}

.post-modal-description {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.post-modal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.post-modal-languages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-modal-languages span {
    color: #666;
    font-weight: 500;
}

.lang-switch-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-switch-btn:hover,
.lang-switch-btn.active {
    background: #d4af37;
    color: white;
}

/* Mobile tap highlight fixes */
@media (max-width: 768px) {
    /* Remove tap highlights for all interactive elements */
    button,
    .filter-btn,
    .clear-search,
    .read-more,
    .blog-post,
    .post-modal-close,
    .lang-switch-btn,
    a {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-appearance: none !important;
        outline: none !important;
    }
    
    /* Remove focus outlines on mobile */
    *:focus {
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Mobile touch feedback for clickable posts */
    .blog-post.clickable-post:active {
        transform: scale(0.98) translateY(-2px);
        transition: transform 0.1s ease;
    }
    
    /* Improve touch target size */
    .blog-post.clickable-post {
        min-height: 300px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .loading-spinner {
        top: 70px;
    }

    .blog-hero,
    .hero {
        min-height: 50vh;
        min-height: 50dvh; /* Dynamic viewport height for mobile */
        padding: 100px 1rem 40px;
        background: url('../images/mobile-hero-index-gh.svg') center center/cover no-repeat;
    }

    .blog-hero .hero-background,
    .hero .hero-background {
        background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    }

    .blog-hero .hero-content,
    .hero .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .blog-hero .hero-badge,
    .hero .hero-badge {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .blog-hero .hero-title,
    .hero .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .blog-hero .hero-subtitle,
    .hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 90%;
    }

    /* Hide hero stats on mobile */
    .blog-hero .hero-stats,
    .hero .hero-stats {
        display: none !important;
    }

    .blog-hero .hero-actions,
    .hero .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: center;
    }

    .blog-hero .primary-btn,
    .blog-hero .secondary-btn,
    .hero .primary-btn,
    .hero .secondary-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        border-radius: 25px;
    }

    .blog-hero .primary-btn,
    .hero .primary-btn {
        order: 1;
    }

    .blog-hero .secondary-btn,
    .hero .secondary-btn {
        order: 2;
    }


    
    .blog-content {
        padding: 40px 1rem;
    }
    
    .blog-filters {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .blog-post {
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }
    
    .blog-post-content {
        padding: 1.25rem;
    }
    
    .blog-post h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .blog-post-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        margin-top: auto;
    }
    
    .blog-post-lang {
        align-self: flex-end;
    }
    
    .post-modal {
        padding: 1rem;
    }
    
    .post-modal-content {
        width: 100%;
        margin: 5% auto;
        max-height: 85vh;
        border-radius: 10px;
    }
    
    .post-modal-header {
        height: 200px;
        border-radius: 10px 10px 0 0;
    }
    
    .post-modal-body {
        padding: 1.5rem;
    }
    
    .post-modal-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .post-modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .post-modal-content-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .blog-search input {
        padding: 0.875rem 2.75rem 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .clear-search {
        right: 0.875rem;
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }
    
    .post-modal-description {
        font-size: 1.1rem;
        padding: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .post-modal-languages {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .lang-switch-btn {
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-hero .hero-title,
    .hero .hero-title {
        font-size: 1.8rem !important;
    }
    
    .blog-hero .hero-subtitle,
    .hero .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .blog-hero .hero-badge,
    .hero .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.6rem 1rem !important;
    }
    
    .blog-hero .primary-btn,
    .blog-hero .secondary-btn,
    .hero .primary-btn,
    .hero .secondary-btn {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post h3 {
        font-size: 1.25rem;
        min-height: 3.25rem;
    }
    
    .blog-post-content {
        min-height: 260px;
    }
    
    .post-modal-header {
        height: 150px;
    }
    
    .post-modal-title {
        font-size: 1.25rem;
    }
    
    .post-modal-body {
        padding: 1rem;
    }
}
}

/* Animation delays for staggered effect */
.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }
.blog-post:nth-child(6) { animation-delay: 0.6s; }