
/* News */
.section-header h2 {
    max-width: 90%;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.blog {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-image {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}
.blog h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
    padding: 0.5rem 0;
}
.blog p {
    font-size: 1.1rem;
    line-height: 1.5rem;
}
.blog a.btn {
    display: flex;
    align-items: center;
    padding: 15px 25px 15px;
    gap: 15px;
    justify-content: space-around;
    min-width: fit-content;
    width: fit-content;
    margin-top: 2rem;
}
.blog a img {
    height: 19px;
    transform: rotate(180deg);
    filter: brightness(0);
}
.news-return {
    filter: brightness(0) invert(1);
    height: 10px;
    margin-right: 8px;
    transform: rotate(45deg);
}
.news-return:hover {
    text-decoration: underline;
}
.news-return img {
    height: 10px;
    transform: rotate(45deg);
    filter: brightness(0) invert(1);
    margin-right: 6px;
}