
/* BLOG SECTION */

.blog-section {
    margin-top: 80px;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.blog-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.blog-more-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background .2s ease, color .2s ease;
}

.blog-more-btn:hover {
    background: #000;
    color: #fff;
}
