/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');

body,
body * {
    font-family: 'Nunito', sans-serif !important;
}

.news-header {
    background-color: #FAF6F1;
    padding: 50px 0;
    text-align: center;
}

.blog-title {
    font-size: 63px;
    font-weight: 600;
    color: #000000;
    font-family: 'Nunito', sans-serif;
    margin: 0;
}


.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.post-item {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.post-item .thumb img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.read-more-btn {
    margin-top: auto;
    display: inline-block;
    padding: 8px 16px;
    background-color: #002E5A;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.read-more-btn:hover {
    background-color: #005e8a;
}

@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

