.banner-section {
    height: 350px;
    background: url(../assets/banner.svg) no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-container .title1 {
    color: white;
    -webkit-text-stroke: 1px #eaffee;
    font-weight: 600;
}

/* Blog */
.blog-section {
    padding: 60px 0;
}

/* Card */
.blog-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #cdcfd0;
    border-radius: 15px;
}

.blog-card:hover {
    transform: translateY(-6px);
}

/* Image Box */
.blog-img-box {
    position: relative;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 15px 15px 0 0;
}

@media (max-width: 576px) {
    .blog-img-box img {
        height: auto;
    }
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

/* Overlay */
.blog-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-date,
.blog-author {
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Content */
.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.read-more-btn {
    display: inline-block;
    font-size: 14px;
    padding: 8px 14px;
    background: #3ab052;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #104602;
}