/* Blog List Header with Taxonomy Navigation */
.blog-list-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.blog-list-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.blog-list-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.blog-taxonomy-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.taxonomy-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-small);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 500;
}

.taxonomy-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.taxonomy-icon {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .blog-taxonomy-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .taxonomy-nav-link {
        width: 200px;
        justify-content: center;
    }
}

/* Blog Hero Section */
.blog-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(16, 185, 129, 0.1));
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    animation: morphingGradient 8s ease-in-out infinite;
}


.blog-hero .hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 60px;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile screens - stack vertically */
@media (max-width: 768px) {
    .blog-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .blog-hero .hero-text {
        max-width: 100%;
    }
    
    .blog-hero .hero-image {
        max-width: 100%;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .blog-meta {
        justify-content: center;
    }
}

/* Hero text and image base styles */
.blog-hero .hero-text {
    flex: 1;
    order: 1;
    max-width: 600px;
}

.blog-hero .hero-image {
    flex: 1;
    order: 2;
    max-width: 500px;
}

.blog-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.blog-hero .hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.breadcrumb a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #10b981;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #0ea5e9, #10b981);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: gradientShift 4s ease-in-out infinite;
}


.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #94a3b8;
    flex-wrap: wrap;
}

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

.blog-hero .hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Article Content */
.article-content {
    padding: 100px 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Base Styles */
.content-section {
    margin-bottom: 80px;
    padding: 60px 0;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    right: -50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.content-section:first-child::before {
    display: none;
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Blocks */
.content-block {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-block:hover {
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-block h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.content-block p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    list-style: none;
    padding: 0;
}

.content-block li {
    color: #cbd5e1;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.content-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tips List */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #10b981);
}

.tip-item:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.tip-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tip-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 12px;
}

.tip-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

.info-box::before {
    content: 'ℹ️';
    font-size: 1.5rem;
    margin-right: 10px;
}

.info-box h4 {
    color: #0ea5e9;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline;
}

/* Quote Section */
.quote-section {
    background: rgba(14, 165, 233, 0.1);
    border-left: 4px solid #0ea5e9;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.quote-section::before {
    content: '"';
    font-size: 4rem;
    color: #0ea5e9;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 15px;
    padding-left: 30px;
}

.quote-author {
    color: #94a3b8;
    font-weight: 600;
    text-align: right;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog List Styles */
.blog-list-header {
    text-align: center;
    padding: 120px 0 60px;
}

.blog-list-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #0ea5e9, #10b981);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.blog-list-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px 0 100px;
}

.blog-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

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

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}

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

.blog-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #10b981;
    gap: 10px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .blog-hero .hero-content {
        gap: 40px;
    }

    .blog-hero .hero-text {
        max-width: none;
    }

    .blog-hero .hero-image {
        max-width: 400px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-hero {
        padding-top: 100px;
        min-height: 60vh;
    }

    .blog-hero .hero-text {
        max-width: none;
    }

    .blog-hero .hero-image {
        max-width: none;
    }

    .blog-hero h1 {
        font-size: 2.2rem;
    }

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

    .content-section {
        margin-bottom: 60px;
        padding: 40px 0;
    }

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

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-section {
        padding: 40px 20px;
        margin: 60px 0;
    }

    .cta-section h3 {
        font-size: 1.8rem;
    }

    .blog-list-header {
        padding: 100px 0 40px;
    }

    .blog-list-header h1 {
        font-size: 2.2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0 60px;
    }
}