/* News Hero */

.news-hero {
    background: url("/static/images/service-hero-2.8e93f5ca7bb4.png");
    background-size: cover;
    background-position: center;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-bottom: 50px;
    position: relative;
}

.news-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 58, 87, 0.1); /* Adjust the opacity as needed */
    z-index: 1;
}

.news-hero-text {
    position: relative;
    z-index: 2;
    display: flexbox;
    flex-direction: column;
    text-align: left;
    padding-left: 5px;
    padding-right: 50%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 3px;
}

.news-hero-text h1 {
    display: flex;
    flex-direction: column;
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 0.5rem;
    color: #223A66;
}

.news-hero-text h3 {
    color: #1AB006;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

.blog-main-img {
    width: 80%;
    height: 500px; 
    object-fit: cover;
    border-radius: 4px;
}

.blog-date {
    color: #30DB19;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-views {
    color: #2F60BD;
    font-weight: bold;
    margin-bottom: 10px;
}
.blog-likes {
    color: #db1930;
    font-weight: bold;
    margin-bottom: 10px;
}
.blog-author {
    color: #2F60BD;
    font-weight: bold;
    margin-bottom: 10px;
}