/* ===== Section ===== */

.blog-section {
    margin-top: 70px;
}

/* ===== Grid ===== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ===== Card ===== */

.blog-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: .25s;
    margin: 18px;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #ec4899;
}

/* ===== Image ===== */

.blog-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* ===== Content ===== */

.blog-content {
    padding: 14px;
}

.blog-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.blog-content p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.6;
}

.blog-content span {
    font-size: 12px;
    color: #ec4899;
    font-weight: 600;
}