/* VIEW POST HERO SECTION */
.view-post-hero {
    display: flex;
    width: 100%;
    height: 500px;
    padding: 150px 100px 80px;
    margin-top: -6rem;
    background: url('../images/hero-bg-3.png'), radial-gradient(85.94% 85.94% at 90.64% 7.81%, #FF9937 0%, #FE6A2E 89.5%);
    background-size: cover;
    background-position: center;
    border-bottom: 15px solid var(--Neutral-N900);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    position: relative;
    margin-bottom: 600px;
}

.view-post-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 80px;
    padding-top: 2rem;
    width: 100%;
}

.view-post-container .title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.view-post-container .title .info {
    display: flex;
    gap: 16px;
}

.view-post-container .title .info span {
    display: flex;
    max-width: 115px;
    height: 29px;
    padding: 4px 10px;
    align-items: center;
    justify-content: center;
    color: var(--Neutral-N900);
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    line-height: 10%;
}

.view-post-container .title .info span.tag {
    border-radius: 6px;
    border: 1px solid var(--Neutral-N900);
}

.view-post-container .title h2 {
    color: var(--Neutral-N900);
    font-family: Clash Display;
    font-size: 52px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -1%;
}

.view-post-container .title p {
    color: var(--Neutral-N900);
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.view-post-container .subtitle {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.view-post-container .subtitle .card-img.mobile {
    display: none;
    /* width: 408px; */
    width: 100%;
    height: 387px;
    border-radius: 10px;

}

.view-post-container .subtitle .card-img {
    width: 1280px;
    /* height: 600px; */
    border-radius: 20px;
    /* border: 1px solid var(--Neutral-N900);
    border-bottom: 10px solid var(--Neutral-N900); */
}

.view-post-container .subtitle-content {
    display: flex;
    justify-content: space-between;
}

.view-post-container .subtitle-content .left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.view-post-container .subtitle-content .left span {
    color: var(--Grey-400);
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.view-post-container .subtitle-content .left span.nt {
    font-weight: 500;
}

.view-post-container .subtitle-content .right {
    display: flex;
    gap: 8px;
}

.view-post-container .subtitle-content .right img {
    width: 32px;
    height: 32px;
    border-radius: 64px;
    padding: 4px;
    background-color: var(--Neutral-N0);
}

/* END OF VIEW POST HERO SECTION */

/* POST CONTENT SECTION */
.post-section {
    display: flex;
    justify-content: center;
    padding: 100px 100px 0px 100px;
}

.post-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 938px;
}

.post-container .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-container .content h2 {
    color: var(--Grey-400);
    font-family: Montserrat;
    font-size: 44px;
    font-weight: 400;
    line-height: 150%;
}

.post-container .content p.ph,
.post-container .content p {
    color: var(--Grey-400);
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.post-container .content p.ph {
    font-weight: 700;
}

.post-container .content i {
    color: var(--Grey-400);
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.post-container .content .btn-bg-pri {
    max-width: 218px;
    height: 48px;
    text-decoration: underline;
    border-radius: 8px;
    align-self: center;
}

.post-container .content .img-d {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.post-container .content img {
    display: flex;
    align-self: center;
    width: 572px;
    /* height: 400px; */
    border-radius: 16px;
    margin: 48px 0px;
}

.post-container .content .share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 1rem;
}

.post-container .content .share h2 {
    color: var(--Grey-400);
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

.post-container .content .share .btns {
    display: flex;
    gap: 8px;
}

.post-container .content .share .btns img {
    width: 32px;
    height: 32px;
    border-radius: 64px;
    padding: 4px;
    background-color: var(--Neutral-N0);
    margin: unset;
}

/* END OF POST CONTENT SECTION */


/* MOBILE RESPONSIVE  */

@media only screen and (max-width: 1122px) {
    .view-post-hero {
        padding: 100px 10px;
        margin-bottom: 350px;
    }

    .view-post-container {
        padding-top: 3rem;
    }

    .view-post-container .subtitle .card-img {
        width: 100%;
    }

    .view-post-container .title h2 {
        font-size: 28px;
        font-weight: 600;
        line-height: 42px;
        letter-spacing: -3%;
    }

    .post-section {
        padding: 20px 10px;
    }

    .post-container {
        max-width: 100%;
    }

    .post-container .content {
        gap: 10px;
    }

    .post-container .content img {
        width: 100%;
    }
}

@media only screen and (max-width: 750px) {
    .view-post-container .subtitle {
        position: relative;
        top: -55px;
        width: 100%;
    }

    .view-post-container .subtitle .card-img {
        display: none;
    }

    .view-post-container .subtitle .card-img.mobile {
        display: flex;
    }
}

@media only screen and (min-width: 1160px) {
    .view-post-container .subtitle .card-img {
        width: 100%;
    }
}

/* END OF MOBILE RESPONSIVE  */