.blog-page-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.blog-subtitle {
    text-align: center;
    color: #777;
    margin-top: 5px;
}

/* Blog Card */
.blog-card {
    border: 1px solid #eaeaea;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s ease;
    background: #fff;
    height: 100%;
}

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

/* Image wrapper */
.blog-card-img {
    height: 220px;
    overflow: hidden;
}

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

/* Body */
.blog-card-body {
    padding: 20px;
}

.blog-card-body h3 {
    font-size: 20px;
    font-weight: 700;
}

.blog-date {
    color: #999;
    font-size: 14px;
    margin: 6px 0;
}

.excerpt {
    color: #555;
    margin: 12px 0 18px;
    font-size: 16px;
    line-height: 1.6;
}

/* Read more link */
.read-more {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}
