/* Blog Page Styles */

.repopilot-index133{
    background: linear-gradient(180deg, #EFF6FF 0%, rgba(239, 246, 255, 0) 100%) !important;

}
.blog-hero {
    background: linear-gradient(180deg, #EFF6FF 0%, rgba(239, 246, 255, 0) 100%);
    padding: 80px 20px 60px;
    text-align: center;
    margin-top: 100px !important;
}

.blog-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #6b7280;
    
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px 80px;
}

img.left-midd {
    /* width: 100%; */
    position: absolute;
    left: -40%;
    top: 11%;
    z-index: -1;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    /* background: #ffffff; */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border: 1px solid #f0f0f0; */
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); */
}

.blog-card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.blog-card-content {
    padding: 20px;
    text-align: left;
    padding-left: 0;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
       font-family: 'Manrope', sans-serif;

    font-size: 13px;
    color:#155DFC;
    margin-bottom: 10px;
    font-weight: 600;
    border: 1px solid #155DFC1A;
    width: max-content;
    padding: 4px 8px;
    border-radius: 100px;
}

.blog-card-date svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.blog-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.blog-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #155DFC;

    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    
}

.blog-load-more-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.blog-load-more-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.blog-load-more-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-hero-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-hero {
        padding: 60px 16px 40px;
    }

    .blog-hero-title {
        font-size: 28px;
    }

    .blog-hero-subtitle {
        font-size: 14px;
    }

    .blog-card-image {
        height: 180px;
    }
}
