
body {
    background: #C2CAD0;
}

.blogs_header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    background: url("/assets/images/img2.png");
    background-size: cover;
}
.blogs_content {
    text-align: center;
}
.blogs_heading {
    color: #fff;
    text-transform: capitalize;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 80px;
}
.blogs_heading .blogs_small {
    display: block;
    font-size: 40px;
}
.blogs_heading .blogs_no_fill {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}
.blogs_btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
}


.blogs_list {
    width: 100%;
    padding: 50px 5vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 80px;
}
.blogs_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.blogs_overview {
    margin: 10px 0 20px;
    line-height: 30px;
}
.btn.dark {
    background: #1b1b1b;
    color: #fff;
}


/* ############################################################### */
/* #################### blogs_entity.html part ################### */
/* ############################################################### */
.blogs_entity_section {

    margin: auto;
    margin-top: 60px;
    align-items: center;
}
.blogs_entity_image_container {
    display: flex;
    justify-content: center;
    /* margin-top: 100px; */
    /* margin-left: 200px; */
    /* margin: 0 auto; */
}
.blogs_entity_image {
    width: 100%;
    /* max-width: 600px; */
}
.blogs_entity_content {
    width: 80%;
    padding: 50px 5vw;
    margin-left: 10%;
    /* text-align: center; */
}
.blogs_entity_text {
    white-space: pre-line;
}






/* ############################################################### */
/* #################### blogs_editor.html part ################### */
/* ############################################################### */
.blogs_editor_banner {
    /* position: relative; */
    margin-top: 60px;
    width: 100%;
    height: 500px;
    background: rgb(248, 245, 233);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    direction: rtl;
}

.blogs_editor_banner_uploadBtn{
    position: absolute;
    /* bottom: 10px; */
    top: 500px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(99, 86, 86, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}
.blogs_editor_upload_icon {
    max-width: 32px;
}

textarea::-webkit-scrollbar {
    width: 10px;
}
textarea::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.blogs_editor_title {
    background-color: #C2CAD0;
    display: block;
    margin: auto;
    margin-top: 20px;
    width: 80%;
    min-height: 100px;
    height: auto;
    outline: none;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    /* background-color: rgb(222, 248, 248); */
    color: #2d2d2d;
    resize: none;
    /* border: rgb(133, 129, 127); */
    /* border-style: groove; */
    border: none;
    padding: 10px;
    border-radius: 10px;
}

.blogs_editor_title::placeholder,
.blogs_editor_article::placeholder{
    color: #9a9191;
}

.blogs_editor_article{
    background-color: #C2CAD0;
    /* background-color: rgb(255, 255, 255); */
    display: block;
    margin: auto;
    margin-bottom: 100px;
    margin-top: 20px;
    width: 85%;
    height: 600px;
    font-size: 20px;

    border-style: inset;
    border-width: 2px;
    line-height: 30px;
    font-weight: 500;
    padding-bottom: 100px;
    white-space: pre-wrap;
}


.blogs_editor_options {
    position: relative;
    /* position: fixed; */
    /* margin-top: 50px; */
    bottom: 45px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blogs_editor_publish {
    background-color: rgb(138, 178, 195);
    border-radius: 10%;
    height: 40px;
    width: 60px;
    color: rgb(25, 42, 52);
    font-size: 16px;
    font-weight: 700;
    border: none;
    /* border: rgb(204, 218, 224) 2px groove; */
    cursor: pointer;

}
.blogs_editor_publish:active {
    border: rgb(204, 218, 224) 2px inset;
}