* {
    padding: 0;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.newsDetailWhiteSpace {
    height: 9em;
}

/* color: #084d4d #1da59a; */
/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */

/* --------------------------------------------------------------------------------------------- */

.newsDetailMainContainer {
    background-color: rgb(245, 245, 245);
}

.newsDetailContainer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.newsDetailsGoBackBtn {
    position: fixed;
    left: 2em;
    top: 2em;
    padding: 0.3em 0.7em;
    font-size: 1.7em;
    font-weight: 600;
    background-color: rgba(29, 165, 154, 0.72);
    color: white;
    border: 2px solid #084d4d;
    border-radius: 15%;
    cursor: pointer;
    transition: 0.3s;
}

.newsDetailsGoBackBtn:hover {
    background-color: #084d4d;
}

.newsDetailsGoBackBtn:active {
    opacity: 60%;
}

.newsDetailsBox {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 3em;
}

.newsDetailsImage {
    width: 40em;
}

.newsDetailsImage img {
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.newsDetailsBox h4 {
    color: #1da59a;
    font-size: 1.1em;
}

.newsDetailsBox h1 {
    color: #084d4d;
    font-size: 1.5em;
}

.newsDetailsBox p {
    font-size: 1.2em;
    color: #084d4d;
    font-weight: 600;
    line-height: 2em;
    margin: 0.5em 0;
    background-color: white;
    padding: 0.7em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 0.5em;
}








@media only screen and (max-width: 767.98px) {
    .newsDetailsBox {
        padding: 0.5em;
    }

    .newsDetailsImage {
        width: 100%;
    } 

    .newsDetailsBox h4 {
        font-size: 0.9em;
    }
    
    .newsDetailsBox h1 {
        font-size: 1.2em;
        text-align: center;
        margin-top: 1em;
    }
    
    .newsDetailsBox p {
        font-size: 1em;
    }

    .newsDetailsGoBackBtn {
        left: 1em;
        padding: 0.3em 0.5em;
        font-size: 1.2em;
    }
}