.blogs-hero {
        min-height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(ellipse at center, rgba(211, 176, 93, 0.1) 0%, var(--bg-primary) 70%);
        padding: 150px 20px 80px;
        position: relative;
        overflow: hidden;
    }

    .blogs-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.4;
        pointer-events: none;
    }

    .blogs-hero-content {
        text-align: center;
        max-width: 700px;
        position: relative;
        z-index: 2;
    }

    .blogs-hero h1 {
        font-size: clamp(36px, 6vw, 56px);
        font-weight: 800;
        margin-bottom: 20px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
    }

    .blogs-hero h1 span {
        color: #d3b05d;
        background-clip: text;
    }

    .blogs-hero p {
        font-size: 18px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .blogs-section {
        padding: 80px 0;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 32px;
    }

    .blog-card {
        background: var(--bg-surface);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        border-color: rgba(211, 176, 93, 0.3);
    }

    .blog-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-date {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--primary-red);
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .blog-content {
        padding: 28px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }

    .blog-tag {
        background: rgba(211, 176, 93, 0.1);
        color: var(--primary-red);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

    .blog-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        line-height: 1.3;
    }

    .blog-excerpt {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 20px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-read-more {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .blog-card:hover .blog-read-more {
        gap: 12px;
        color: #FFD700;
    }

    .no-blogs {
        text-align: center;
        padding: 80px 20px;
        color: var(--text-muted);
    }

    .no-blogs i {
        font-size: 64px;
        color: var(--primary-red);
        margin-bottom: 20px;
        opacity: 0.5;
    }

    @media (max-width: 768px) {
        .blogs-hero {
            min-height: 40vh;
            padding: 120px 20px 60px;
        }

        .blogs-section {
            padding: 60px 0;
        }

        .blog-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }