/*
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 */


/*Accordion*/

.accordion-container {
  margin: 90px auto;
  padding: 0px 45px;
  	hr {
  		margin-left: 0;
  		border: 1px solid grey;
	}
  .post-content {
    color: #ECE6CC;
    display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
    margin-top: 50px;
    margin-bottom: 150px;
  }
  .post-title {
  	color: #ECE6CC;
    text-align: center;
    font-size: 4em;
    text-transform: uppercase;
  }
  .post-image {
	width: 70%;
  }
}

.accordion-container.active .post-content {
  height: 100%;
}

.accordion-container .post-content {
  position: relative;
  height: 0;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}

.lg-thumb-outer {
	background-color: #111111;
}
.lg-toolbar {
	display: none;
}


/* gallery don't display expand symbol */
div.inner-block > span > i.fas.fa-expand {
	display: none;
}

/* Post Grid */

/*.post-container {
    width: 60vw;
    max-width: 1000px;
    height: 20vw;
    max-height: 580px;
    margin-bottom: 50px;
    position: relative;
}

.blog-post {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
}


.blog-overlay {
    z-index: 9;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: transparent;
    border: 4px solid #EB2F64;
    transition: background-color 0.5s 50ms;
        display: flex;
    justify-content: center;
    align-items: center;
        h2 {
            color: #EB2F64;
            -webkit-text-stroke: 4px #EB2F64;
            text-align: center;
        }
}

.blog-overlay:hover {
    background-color:#ED588C;
    /*border: 4px solid #FF490D;*/
    h2 {
        /*color: #EB2F64;
        -webkit-text-stroke: 4px #FF490D;*/
    }
}
*/