/* === VCF Blogger — Light Bootstrap Theme === */

body {
    background: #f8f9fa;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #212529;
}

/* Site header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

/* Nav */
.nav-link {
    color: #6c757d !important;
    font-weight: 500;
    font-size: .95rem;
    transition: color .2s;
}
.nav-link:hover,
.nav-link.active {
    color: #0d6efd !important;
}

/* Post cards */
.post-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1) !important;
}
.post-card .card-img-top {
    height: 200px;
    object-fit: cover;
}
.post-card .card-title {
    font-size: 1.05rem;
    line-height: 1.4;
}
.post-card .card-title a:hover {
    color: #0d6efd !important;
}

/* Read more link */
.read-more {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    font-size: .9rem;
}
.read-more:hover {
    color: #0a58ca;
}

/* Single article */
.hero-img {
    height: 360px;
    object-fit: cover;
}
.article-content p {
    color: #495057;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-content p strong {
    color: #212529;
}

/* Responsive */
@media (max-width: 576px) {
    .post-card .card-img-top {
        height: 160px;
    }
    .hero-img {
        height: 200px;
    }
}
