/*
Theme Name: Divi Child - Blog CSS
Version: 4.16.0
Description: Website Name: aquariusgraphics.com
Author: Wayne Woodbury ** Modified CSS File - Feburary 10th 2022 **
*/


/*  Blog Pages Background */

#main-content.blogMain .container,
#main-content.blogArticle .container {
    /* background-color:#fff;
	border:solid 2px #BBBBBB;
	margin-top: 35px;
	margin-bottom: 35px;
	box-shadow:3px 3px 3px 0 rgba(0, 0, 0, 0.15);*/
}


/*  Blog - Article Background */

article.et_pb_post {
    background-color: #ffffff;
    padding: 32px;
    border: solid 1px #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

article.et_pb_post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


/* Blog Sidebar Left Border - Hide  */

#main-content .container::before {
    /* background-color:transparent; */
}

.et_pb_widget_area_left {
    /*	border-right:none; */
}


/* Blog Widget Title */

.widgettitle {
    margin-bottom: 0;
}


/* Blog Entry Title */

h1.entry-title {
    font-size: 30px !important;
}


/* Blog Entry Title */

h2.entry-title {
    font-size: 22px !important;
}


/* Blog Post Page Margins */

.et_right_sidebar #sidebar {
    padding-right: 10px;
    padding-left: 10px;
}


/* Blog Post Page Margins */

.et_right_sidebar #left-area {
    padding-right: 5%;
    padding-left: 5%;
}


/* Blog Featured Image */

.et_pb_image_container a img {
    float: none !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}


/* Blog Category Featured Image */

.et_pb_post a img {
    height: auto;
    float: left;
    width: 200px;
    left: 0;
    padding-right: 14px;
    margin-bottom: 0;
}


/* Blog Category Featured Image */

.et_pb_post .entry-featured-image-url {
    margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
    /* Blog Post Page Margins */
    #left-area,
    #sidebar {
        padding-right: 5%;
        padding-left: 5%;
    }
    /* Blog Category Featured Image Remove */
    .et_pb_post a img {
        display: none;
    }
}