.blog-insights {
    background: #f4f7fb;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 65px rgba(10, 60, 255, 0.18);
}

/* Image */
.blog-image {
    height: 210px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

/* Content */
.blog-card {
    padding-bottom: 35px;
}

.blog-card .blog-tag,
.blog-card h3,
.blog-card p,
.blog-card .blog-link {
    padding-left: 35px;
    padding-right: 35px;
}

.blog-tag {
    display: inline-block;
    margin-top: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #0f766e;
    background: rgba(15, 118, 110, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

/* Title */
.blog-card h3 {
    font-size: 23px;
    font-weight: 700;
    color: #0a3cff;
    margin: 18px 0 12px;
}

/* Text */
.blog-card p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #4b5563;
    margin-bottom: 28px;
}

/* Link */
.blog-link {
    font-size: 15px;
    font-weight: 600;
    color: #0a3cff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.blog-card:hover .blog-link {
    color: #00bfa6;
    gap: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-card h3 {
        font-size: 21px;
    }

    .blog-card .blog-tag,
    .blog-card h3,
    .blog-card p,
    .blog-card .blog-link {
        padding-left: 25px;
        padding-right: 25px;
    }
}
