/* Blog – matches blog-preview.html design */

.blog-page {
    padding-top: 100px;
}

.blog-intro {
    max-width: 640px;
    margin: 0 auto;
}

.blog-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.2s;
    background: #fff;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: rgba(208, 0, 16, 0.1);
    color: #D00010;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

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

.blog-card-title-link {
    color: inherit;
    text-decoration: none;
}

.blog-card-title-link:hover {
    color: #D00010;
}

.article-hero-img {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    background: #f0f0f0;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-content p {
    color: #555;
    line-height: 1.7;
}

.blog-article-page .section-box {
    padding-bottom: 80px;
}

.cta-box {
    background: #191919;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-top: 48px;
    margin-bottom: 60px;
}

.cta-box-text {
    opacity: 0.85;
}

.blog-sidebar-light {
    background: #f9f9f9;
}

.blog-sidebar-light a {
    color: #191919;
    text-decoration: none;
}

.blog-sidebar-light a:hover {
    color: #D00010;
}

.blog-sidebar-dark {
    background: #191919;
    color: #fff;
}

.blog-sidebar-dark-text {
    opacity: 0.8;
}

@media (max-width: 991px) {
    .blog-page {
        padding-top: 80px;
    }
}
