/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

html {
  scroll-behavior: smooth;
}
a:focus,a:hover,a{
	outline:none !important;
}
.custom-posts-list .post-card{
	display:flex;
	width:100%;
	gap:20px;
	background-color: #fff;
	padding: 24px 0;
	border-bottom: 1px solid #c5e0f4;
}
.post-card .post-detail{
	flex:1;
}
.post-meta{
	display:flex;
	gap:10px;
}
.post-meta ul{
	list-style-type:none;
	margin:0;
	color: #009845;
}
.separator{
	color:#d9d9d9;
}
.post-detail p{
	margin-bottom:0;
}
.post-detail h4{
	margin-bottom:10px;
}
.post-detail h4 a{
	text-decoration:underline;
	text-underline-offset: .25rem;
}
.post-card .card-image img{
	border-radius:5px;
	border:1px solid #ddd;
}
.custom-btn .creative-button-inner{
	justify-content:space-between;
}
.custom-btn .eael-creative-button-icon-right{
	background-color: #F0F7FC;
    padding: 10px;
    border-radius: 100px;
}
.card-image {
	display:none;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    border-bottom: 1px solid #F0F7FC;
    padding-bottom: 10px;
    padding-top: 10px;
}
.total-download{
	font-size: 28px;
	line-height: 36px;
	font-weight: 400;
	color:#000;
}
.article-archive {
	display: flex;
    justify-content: space-between;
    gap: 20px;
	list-style-type:none;
	margin:0;
	flex-wrap:wrap;
}
.article-archive li{
	width: 30%;	
}
.article-archive li a{
	display: block;
    padding: 30px 20px;
    background: #f1f1f1;
    text-align: center;
	border-radius: 10px;
	font-weight: 500;
    letter-spacing: 1px;
}
.article-archive li a:hover {
    background: #0099AC;
    color: #fff;
}
.archive-listing .bar {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #56b259;
    gap: 20px;
}
.archive-listing .bar h5{
	width: 300px;
    background: #0070B6;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
	    font-weight: 400;
	margin-bottom:0;
}
.archive-listing {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 3px 13px #ddd;
    margin-bottom: 30px;
}
.post-counter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.yellow-strip{
	width: calc(100% - 300px);
    background-color:#0099ac;
    border-radius: 5px;
}
.hover-img-color:hover img{
	filter: brightness(0) invert(1);
}
#page-header{
	background-color: #0099ac;
    padding: 50px 0;
    text-align: center;
	margin-bottom:50px;
}
#page-header h1{ 
	color:#fff;
}
.custom-posts-list{
	display: grid;
    grid-template-columns: auto;
    column-gap: 25px;
    row-gap: 25px;
}
.feature-card h3{
	margin-bottom:0;
	color: #CF4753 !important;
}
.association{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:30px;
	padding:15px 0;
}
.toc {
  position: sticky !important;
  top: 80px; /* distance from top */
  border-radius: 8px;
}
.vertical-menu .current-menu-item a{
	color:#000;
}
@media(min-width:991px){
	.custom-posts-list{
		grid-template-columns: auto;
	}
}
@media(max-width:767px){
	.article-archive li{
		width: 50%;	
	}
	.association{
		flex-direction:column;	
	}
}
@media(max-width:560px){
	.article-archive li{
		width: 100%;	
	}
}
@media(min-width:575px){
	.custom-posts-list .post-card{
		flex-direction:row-reverse;
		
	}
	.card-image {
		display:block;
	}
}
@media(min-width:575px) and (max-width:767px){
	#journals{
		grid-template-columns: repeat(2, 1fr);
	}
}