/* ============================================
   LEANFLY - Universal Blog Stylesheet
   Matches homepage design system
   Used by ALL 50+ blog articles
   ============================================ */

/* ============================================
   BLOG POST WRAPPER
   ============================================ */
.blog-post-wrapper {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(180deg, #0B0C10 0%, #121212 100%);
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ============================================
   BLOG POST HEADER
   ============================================ */
.blog-post-header {
    margin-bottom: 60px;
    text-align: center;
}

.blog-post-category {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px rgba(218, 65, 65, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-category:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 60px rgba(218, 65, 65, 0.6);
}

.blog-post-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FCFCFC 0%, #D0D0D0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-post-meta i {
    color: #da4141;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-post-meta span:hover i {
    transform: scale(1.2);
}

/* ============================================
   FEATURED IMAGE
   ============================================ */
.blog-post-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(218, 65, 65, 0.15);
    position: relative;
}

.blog-post-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 65, 65, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.blog-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-featured-image:hover img {
    transform: scale(1.08);
}

/* ============================================
   BLOG CONTENT
   ============================================ */
.blog-post-content {
    font-size: 1.0625rem;
    line-height: 2;
    color: #D0D0D0;
}

.blog-post-content h2 {
    font-size: 2rem;
    margin: 60px 0 30px;
    color: #FCFCFC;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.blog-post-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(218, 65, 65, 0.4);
}

.blog-post-content h3 {
    font-size: 1.625rem;
    margin: 45px 0 25px;
    color: #FCFCFC;
    font-weight: 600;
}

.blog-post-content h4 {
    font-size: 1.375rem;
    margin: 35px 0 20px;
    color: #FCFCFC;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 30px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 30px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 18px;
    color: #D0D0D0;
    position: relative;
}

.blog-post-content ul li::marker {
    color: #da4141;
}

.blog-post-content ol li::marker {
    color: #da4141;
    font-weight: 700;
}

.blog-post-content strong {
    color: #da4141;
    font-weight: 600;
}

.blog-post-content a {
    color: #da4141;
    text-decoration: none;
    border-bottom: 2px solid rgba(218, 65, 65, 0.3);
    transition: all 0.3s ease;
}

.blog-post-content a:hover {
    color: #e35d5d;
    border-bottom-color: #da4141;
}

.blog-post-content blockquote {
    margin: 45px 0;
    padding: 35px 45px;
    background: linear-gradient(135deg, rgba(218, 65, 65, 0.05) 0%, rgba(184, 52, 52, 0.08) 100%);
    border-left: 5px solid #da4141;
    border-radius: 16px;
    font-style: italic;
    color: #D0D0D0;
    box-shadow: 0 10px 40px rgba(218, 65, 65, 0.1);
}

.blog-post-content blockquote p {
    margin: 0;
    font-size: 1.125rem;
}

.blog-post-content hr {
    border: none;
    border-top: 2px solid rgba(218, 65, 65, 0.15);
    margin: 60px 0;
}

/* Tables */
.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(11, 12, 16, 0.4);
    border-radius: 16px;
    overflow: hidden;
}

.blog-post-content th,
.blog-post-content td {
    padding: 15px 20px;
    text-align: left;
    border: 1px solid rgba(218, 65, 65, 0.1);
}

.blog-post-content th {
    background: rgba(218, 65, 65, 0.2);
    color: #da4141;
    font-weight: 700;
}

.blog-post-content tr:hover {
    background: rgba(218, 65, 65, 0.05);
}

/* Highlight Box */
.highlight-box {
    background: rgba(218, 65, 65, 0.1);
    border: 1px solid rgba(218, 65, 65, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
}

.highlight-box h4 {
    color: #da4141;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ============================================
   BLOG FOOTER
   ============================================ */
.blog-post-footer {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 2px solid rgba(218, 65, 65, 0.15);
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}

.blog-tag {
    padding: 10px 24px;
    background: rgba(218, 65, 65, 0.1);
    color: #da4141;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(218, 65, 65, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.blog-tag:hover {
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(218, 65, 65, 0.4);
    border-color: transparent;
}

/* ============================================
   BLOG NAVIGATION
   ============================================ */
.blog-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background: rgba(11, 12, 16, 0.7);
    border: 1px solid rgba(218, 65, 65, 0.15);
    border-radius: 20px;
    text-decoration: none;
    color: #D0D0D0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    border-color: rgba(218, 65, 65, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(218, 65, 65, 0.25);
    background: rgba(11, 12, 16, 0.9);
}

.nav-link-label {
    font-size: 12px;
    color: #da4141;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.nav-link-label i {
    transition: transform 0.4s ease;
}

.nav-link:hover .nav-link-label i {
    transform: translateX(5px);
}

.nav-link-title {
    font-size: 1.125rem;
    color: #FCFCFC;
    font-weight: 600;
    line-height: 1.5;
}

.nav-link.next {
    text-align: right;
}

.nav-link.next .nav-link-label {
    justify-content: flex-end;
}

.nav-link.next:hover .nav-link-label i {
    transform: translateX(-5px);
}

/* ============================================
   BLOG LISTING PAGE (INDEX.HTML) - ENHANCED
   Matches homepage hero slider design
   ============================================ */
.blog-archive-page {
    padding-top: 0;
}

/* Enhanced Blog Hero Section */
.blog-archive-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 12, 16, 0.95) 0%, rgba(18, 18, 18, 0.9) 100%);
    overflow: hidden;
}

.blog-archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/business05.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.blog-archive-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 65, 65, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.blog-archive-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

/* Blog Hero Badge - Centered wrapper added later */
.blog-hero-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #da4141, #b83434);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #FCFCFC;
}

.blog-hero-badge .badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #da4141;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.blog-archive-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #FCFCFC;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.blog-archive-title .highlight {
    background: linear-gradient(135deg, #da4141 0%, #e35d5d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.blog-archive-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #D0D0D0;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Enhanced Search Container */
.blog-search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.blog-search-bar {
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.blog-search-input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    background: rgba(11, 12, 16, 0.6);
    border: 2px solid rgba(218, 65, 65, 0.2);
    border-radius: 50px;
    color: #FCFCFC;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    outline: none;
    border-color: #da4141;
    box-shadow: 0 0 30px rgba(218, 65, 65, 0.3);
    background: rgba(11, 12, 16, 0.8);
}

.blog-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.blog-search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(218, 65, 65, 0.4);
}

/* Enhanced Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 60px 0 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.blog-filter-btn {
    padding: 12px 24px;
    background: rgba(218, 65, 65, 0.1);
    border: 2px solid rgba(218, 65, 65, 0.2);
    border-radius: 50px;
    color: #da4141;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: #da4141;
    border-color: #da4141;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(218, 65, 65, 0.3);
}

/* Enhanced Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.blog-post-card {
    background: rgba(11, 12, 16, 0.6);
    border: 1px solid rgba(218, 65, 65, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.blog-post-card:nth-child(1) { animation-delay: 0.1s; }
.blog-post-card:nth-child(2) { animation-delay: 0.15s; }
.blog-post-card:nth-child(3) { animation-delay: 0.2s; }
.blog-post-card:nth-child(4) { animation-delay: 0.25s; }
.blog-post-card:nth-child(5) { animation-delay: 0.3s; }
.blog-post-card:nth-child(6) { animation-delay: 0.35s; }
.blog-post-card:nth-child(7) { animation-delay: 0.4s; }
.blog-post-card:nth-child(8) { animation-delay: 0.45s; }
.blog-post-card:nth-child(9) { animation-delay: 0.5s; }
.blog-post-card:nth-child(10) { animation-delay: 0.55s; }
.blog-post-card:nth-child(11) { animation-delay: 0.6s; }
.blog-post-card:nth-child(12) { animation-delay: 0.65s; }

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.blog-post-card:hover::before {
    transform: scaleX(1);
}

.blog-post-card:hover {
    background: rgba(11, 12, 16, 0.8);
    border-color: rgba(218, 65, 65, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(218, 65, 65, 0.2), 0 0 30px rgba(218, 65, 65, 0.1);
}

.blog-post-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-post-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.blog-post-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #da4141;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.blog-post-card-title {
    font-size: 1.25rem;
    color: #FCFCFC;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-post-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card-title a:hover {
    color: #da4141;
}

.blog-post-card-excerpt {
    color: #D0D0D0;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 65, 65, 0.1);
}

.blog-post-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FCFCFC;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-post-card-author-avatar {
    width: 35px;
    height: 35px;
    background: rgba(218, 65, 65, 0.1);
    border: 2px solid #da4141;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #da4141;
    font-size: 16px;
}

.blog-post-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #da4141;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post-card-read-more:hover {
    color: #e35d5d;
}

.blog-post-card-read-more i {
    transition: transform 0.3s ease;
}

.blog-post-card-read-more:hover i {
    transform: translateX(5px);
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #D0D0D0;
}

.no-results i {
    font-size: 4rem;
    color: rgba(218, 65, 65, 0.3);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #FCFCFC;
    margin-bottom: 10px;
}

/* ============================================
   PAGINATION STYLES
   ============================================ */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 60px 0 80px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: rgba(218, 65, 65, 0.1);
    border: 2px solid rgba(218, 65, 65, 0.2);
    border-radius: 50px;
    color: #da4141;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pagination-btn:hover:not(.disabled) {
    background: #da4141;
    border-color: #da4141;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(218, 65, 65, 0.3);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    border-color: #da4141;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(218, 65, 65, 0.4);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-ellipsis {
    color: #999;
    font-size: 1.2rem;
    padding: 0 5px;
}

/* ============================================
   HERO BADGE CENTERED
   ============================================ */
.blog-hero-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(218, 65, 65, 0.12);
    border: 1px solid rgba(218, 65, 65, 0.25);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    cursor: default;
}

.blog-hero-badge:hover {
    background: rgba(218, 65, 65, 0.18);
    border-color: rgba(218, 65, 65, 0.35);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .blog-post-container {
        padding: 50px 20px;
    }

    .blog-post-featured-image {
        height: 400px;
    }

    .blog-post-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .blog-post-wrapper {
        padding-top: 80px;
    }

    .blog-post-container {
        padding: 40px 15px;
    }

    .blog-post-featured-image {
        height: 280px;
    }

    .blog-post-title {
        font-size: 1.875rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 15px;
    }

    .blog-post-content h2 {
        font-size: 1.625rem;
    }

    .blog-post-content h3 {
        font-size: 1.375rem;
    }

    .blog-post-content blockquote {
        padding: 25px 30px;
    }

    .blog-post-navigation {
        grid-template-columns: 1fr;
    }

    .nav-link.next {
        text-align: left;
    }

    .nav-link.next .nav-link-label {
        justify-content: flex-start;
    }

    .blog-post-tags {
        justify-content: center;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-filters {
        gap: 10px;
    }

    .blog-filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .blog-search-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .blog-post-featured-image {
        height: 220px;
    }

    .blog-post-title {
        font-size: 1.625rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .nav-link {
        padding: 25px;
    }

    .nav-link-title {
        font-size: 1rem;
    }

    .blog-post-category {
        padding: 8px 20px;
        font-size: 11px;
    }

    .blog-search-container {
        padding: 0 10px;
    }

    .blog-pagination {
        gap: 8px;
        margin: 40px 0 60px;
    }

    .pagination-btn {
        min-width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .blog-post-wrapper {
        background: #ffffff;
        color: #000000;
        padding-top: 0;
    }

    .blog-post-category,
    .blog-post-meta,
    .blog-post-tags,
    .blog-post-navigation,
    .site-header,
    .site-footer,
    .scroll-to-top,
    .social-sidebar {
        display: none !important;
    }

    .blog-post-featured-image {
        height: auto;
        max-height: 400px;
        border: none;
        box-shadow: none;
    }

    .blog-post-content h2::after {
        display: none;
    }

    .blog-post-content {
        color: #000000;
        line-height: 1.6;
    }

    .blog-post-content a {
        color: #da4141;
        text-decoration: underline;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.blog-post-content a:focus,
.nav-link:focus,
.blog-tag:focus,
.blog-filter-btn:focus {
    outline: 3px solid #da4141;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .blog-post-featured-image img,
    .blog-tag,
    .nav-link,
    .blog-post-category,
    .blog-post-card,
    .blog-post-card-image img,
    .blog-hero-badge,
    .blog-archive-title,
    .blog-archive-subtitle,
    .blog-search-bar,
    .blog-filters,
    .blog-hero-stats {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Post Animations */
.blog-post-header,
.blog-post-featured-image,
.blog-post-content > *:nth-child(-n+5) {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.blog-post-content > *:nth-child(6) { animation-delay: 0.1s; }
.blog-post-content > *:nth-child(7) { animation-delay: 0.2s; }
.blog-post-content > *:nth-child(8) { animation-delay: 0.3s; }
.blog-post-content > *:nth-child(9) { animation-delay: 0.4s; }
.blog-post-content > *:nth-child(10) { animation-delay: 0.5s; }
