a {
    color: unset;
}

.blog-section {
    padding: 5vh 0;
}

.blog-section li {
    list-style: unset;
    padding: unset;
}

.hero-image-wrap {
    width: 100%;
    height: 60vh;
    margin-bottom: 32px;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-header {
    display: flex;
    justify-content: center;
    gap: 5%;
    align-items: center;
    margin-bottom: 32px;
}

.article-header .img-wrap {
    height: 16px;
}

.article-header .img-wrap img {
    height: 100%;
}

.article-header>div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.navigation-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.other-blogs {
    padding: 16px 32px;
    width: fit-content;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .15);
    margin: 0 auto 48px;
}

.other-blogs h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: "Lato", sans-serif;
}

.other-blogs .navigation-wrap {
    display: flex;
    gap: 32px;
    align-items: center;
}

.other-blogs .navigation-wrap a {
    font-weight: 500;
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .hero-image-wrap {
        width: 100%;
        height: unset;
    }

    .article-header {
        /* flex-direction: column; */
        gap: 12px;
        flex-wrap: wrap;
    }

    .article-header .img-wrap {
        width: 100%;
    }

    .article-header .img-wrap img {
        margin: 0 auto;
    }
}