﻿.blog-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.blog-card {
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 16px rgba(0, 31, 63, 0.12);
    border: 1px solid #eef2f7;
}

.blog-image-wrap {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-video-embed {
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-card:hover .blog-image {
    transform: scale(1.04);
}

.blog-body {
    padding: 18px;
}

.blog-meta {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 8px;
}

.blog-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-body h3 a {
    color: var(--primary-navy);
}

.blog-body h3 a:hover {
    color: var(--primary-red);
}

.blog-single {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(0, 31, 63, 0.12);
    padding: 26px;
}

.blog-single-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blog-single-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #0f172a;
}

.blog-single-media .blog-single-image {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

.blog-excerpt {
    font-size: 18px;
    color: #4b5563;
}

.blog-content {
    margin-top: 16px;
    line-height: 1.8;
}
