
.blog-page {
    max-width:900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: #111;
}

.blog-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}



.blog-card {
    width: 360px;
    min-height: 260px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: black;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
}


.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: center;
    align-items: center;
}

.blog-card-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #111;
    text-align: center;
}

.blog-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
}

.action-btn {
    margin-top: 20px;
    align-self: center;
}

.action-btn:hover {
    background-color: #083b6d;
}

.read-more {
    color: #0a4d8f;
    font-weight: bold;
    font-size: 1rem;
}


@media (max-width: 768px) {
    .blog-grid {
        flex-direction: column;
        align-items: center;
    }

    .blog-card {
        width: 90%;
    }

    .blog-header h1 {
        font-size: 2rem;
    }
}

.blog-logo-section {
    display: flex;
    justify-content: center;
    margin: 25px 0 40px 0;
}

.blog-main-logo {
    width: 140px;
    height: auto;
    display: block;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.12));
    transition: transform 0.3s ease;
}

.blog-main-logo:hover {
    transform: scale(1.05);
}