﻿.blog-hero {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #e8f4f3 0%, #d4e8e6 100%);
    overflow: hidden;
}

.breadcrumb {
    background: none;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

    .hero-content h2 {
        color: #698078;
    }


    .category-badge {
        display: inline-block;
        background: #10b981;
        color: white;
        padding: 8px 24px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 24px;
    }

    .blog-title {
        font-size: 2.75rem;
        font-weight: 700;
        color: #1e3a5f;
        line-height: 1.3;
        margin-bottom: 0;
        margin-top:0;
    }

    .blog-card {
        max-width: 1200px;
        margin: -76px auto 60px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        padding: 20px 50px;
        position: relative;
        z-index: 2;
    }

    .blog-meta {
        display: flex;
        align-items: center;
        gap: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #eee;
        margin-bottom: 32px;
        color: #64748b;
        font-size: 0.95rem;
    }

        .blog-meta svg {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            vertical-align: middle;
        }

    .blog-content h2 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1e293b;
        margin: 32px 0 16px;
    }

    .blog-content p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .blog-content strong {
        color: #1e293b;
        font-weight: 600;
    }

    @@media (max-width: 768px) {
        .blog-title {
            font-size: 1.75rem;
        }

        .blog-card {
            margin: -40px 16px 40px;
            padding: 24px;
        }

        .blog-meta {
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }
    }
/* MODAL */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}