.blog-header {
    background: #111827;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.blog-header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.bg-blue {
    background-color: #2563eb !important;
}

.blog-header p {
    font-size: 1rem;
    color: #9ca3af;
}

.blog-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Blog cards */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: transform 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

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

.blog-card a.blog-title-link {
    text-decoration: none;
    color: #000000d1;
}

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

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.blog-content p {
    margin-bottom: 15px;
    color: #555;
}

.read-more {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

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

/* Sidebar */
.aside-sec {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    height: fit-content;
    margin-bottom: 25px;
}

.aside-sec h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
}

.blog-list {
    list-style: none;
}

.blog-list li {
    margin-bottom: 12px;
}

.blog-list a {
    text-decoration: none;
    color: #374151;
    font-size: 0.95rem;
}

.blog-list a:hover {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}

h2 {
    color: #222;
    /* margin-top: 40px; */
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.section {
    margin-bottom: 40px;
}

.cta {
    background: #005fcc;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    font-size: 1.1em;
}

.cta a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}