/* Blog Landing Page Styles */
.blog-landing__hero {
    background:
    linear-gradient(115deg, #1e50ff 30%, transparent 5%) no-repeat,
    linear-gradient(-115deg , #1e50ff 30%, transparent 30%) no-repeat;
    background-size: 50% 100%;
    background-position: left, right;
    padding: 100px 0;
    margin-bottom: 60px;
}


.blog-landing-div
{
    background-color: white;    
    border: 5px solid #1e50ff;
    color: black;
    border-radius: 50px;
    padding: 20px;
}
.blog-landing__hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-landing__hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.blog-landing__content {
    padding: 40px 0;
}

.blog-landing__card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-landing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-landing__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-landing__card-body {
    padding: 25px;
}

.blog-landing__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.blog-landing__card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-landing__card-link {
    display: inline-block;
    padding: 8px 20px;
    background: #1e50ff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: opacity 0.3s ease;
}

.blog-landing__card-link:hover {
    opacity: 0.9;
    color: white;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .blog-landing__hero-title {
        font-size: 2.5rem;
    }

    .blog-landing__content {
        padding: 30px 0;
    }
}

@media (max-width: 767.98px) {
    .blog-landing__hero {
        padding: 60px 0;
    }

    .blog-landing__hero-title {
        font-size: 2rem;
    }

    .blog-landing__hero-subtitle {
        font-size: 1.1rem;
    }

    .blog-landing__card {
        margin-bottom: 20px;
    }
}