.header-post-page {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.header-post-page:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(33, 33, 33, 0.65);
    z-index: 0
}

.header-post-page .content-header-post-page h5 {
    font-size: 1.125rem;
}

.header-post-page .content-header-post-page {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    color: white;
    z-index: 1;
    text-align: center;
    padding-block: 10.81rem 22.5rem;
}

.content-section {
    margin-block: 2rem;
}

.content-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.content-section .container img {
    max-width: 100%;
}

.content-section .container p {
    text-align: justify;
}

.blog-section {
    margin-block: 10rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6.56rem;
}

.footer-post .tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-post .tags .tag {
    border-radius: var(--Large, 1.5rem);
    border: 1px solid var(--SilverChalice, #B2B2B2);
    padding: 1rem 3rem;
    color: var(--Gray, #262626);
    text-align: center;
    font-size: 1.375rem;
    font-weight: 700;
}

.footer-post .share {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.btn-share-post {
    padding: 1rem;
    border-radius: 1.2rem;
    border: 0.6px solid var(--Primary, #1A7EEE);
}

.btn-share-post:hover {
    border-radius: 1.32rem;
    border: 2px solid var(--Primary, #1A7EEE);
    box-shadow: 0px 8.8px 13.2px -2.2px rgba(0, 0, 0, 0.10), 0px 4.4px 8.8px -4.4px rgba(0, 0, 0, 0.10);
}

@media only screen and (max-width: 768px) {
    .content-section .container {
        gap: 3rem
    }
    .content-section{
        margin-block: 2rem;
    }
    .blog-section {
        margin-block: 5rem;
        gap: 1.5rem;
    }
    .footer-post .tags .tag {
        font-size: 1rem;
    }
}