/*
	* CSS for Archives, Homepage, Search Results, and 404 Page
	*
	* @package      sixsistersstuff
	* @author       Lindsay Humes
	* @since        1.0.0
	* @license      GPL-2.0+
*/
/*--------------------------------------------------------------
## Header: General
--------------------------------------------------------------*/
.page-title {
    clear: both;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    font-family: 'dmserif',  Times New Roman, Times, Georgia, serif;
    text-transform: none;
    letter-spacing: 0;
}

.archive-content {
    max-width: 1045px;
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
}
/*--------------------------------------------------------------
## Header: Archive
--------------------------------------------------------------*/
.archive-header {
    margin: 0 auto 30px;
    background-color: #FFFFFF;
    opacity: 1;
    background-size: 4px 4px;
    background-image: repeating-linear-gradient(45deg, #F5F5F5 0, #F5F5F5 0.4px, #FFFFFF 0, #FFFFFF 50%);
    position: relative;
}
.archive-header::after {
    content: "";
    display: block;
    background: #FFFFFF;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.archive-header .wrap {
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    position: relative;
    z-index: 1;
}
.archive-description {
    margin: 15px 0 0;
}

#recent.page-header {
    margin: 0 auto 20px;
}

#recent.page-header h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 0 auto;
    background: #3C3B3A;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}
#recent.page-header::after {
    display: none;
}
/*--------------------------------------------------------------
## Header: Search
--------------------------------------------------------------*/
.search-header .flexbox {
    align-items: baseline;
}

.search-header h1.page-title {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

.search-header h1.page-title .bold {
    font-weight: 400;
    font-style: italic;
}

/*--------------------------------------------------------------
## Header: Error
--------------------------------------------------------------*/
.error-header .search-form {
    max-width: 1045px;
    margin: 20px auto 0;
}
.error404 .archive-content {
    margin: 30px auto;
}

/*--------------------------------------------------------------
## Page Template: Default
--------------------------------------------------------------*/
.page-header {
    margin: 0 auto 30px;
    background-color: #FFFFFF;
    opacity: 1;
    background-image: radial-gradient(#F5F5F5 1px, #FFFFFF 1px);
    background-size: 6px 6px;
    position: relative;
}
.page-header::after {
    content: "";
    display: block;
    background: #FFFFFF;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.page-header .wrap {
     padding: 20px;
     background: #FFFFFF;
     border: 1px solid #F5F5F5;
     position: relative;
     z-index: 1;
 }

/*--------------------------------------------------------------
## Page Template: Image
--------------------------------------------------------------*/
.img-header {
    margin: 0 auto 30px;
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(255, 255, 255, .2) 35px, rgba(255, 255, 255, .2) 70px), repeating-linear-gradient(180deg, transparent, transparent 35px, rgba(255, 255, 255, .4) 35px, rgba(255, 255, 255, .4) 70px);
    background-attachment: fixed;
}
.img-header::after {
    content: "";
    display: block;
    background: #FFFFFF;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.img-header .wrap {
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    position: relative;
    z-index: 1;
}
.image-content .entry-summary {
    font-size: 15px;
    margin: 15px 0;
}

.page-img {
    height: auto
}

.image-content {
    padding: 20px 0 20px 20px;
}

.image-content .page-title {
    margin: 0;
    text-align: left;
}

/*--------------------------------------------------------------
RESPONSIVE
--------------------------------------------------------------*/
@media screen and (max-width: 840px) {
    .page-title {
        font-size: 32px;
    }
}
@media screen and (max-width: 660px) {
    .img-header .wrap {
        display: block;
    }
    .img-header img {
        display: block;
        text-align: center;
    }
    .image-content {
        padding: 20px 0 0;
    }
    .search-header .flexbox {
        display:  block;
    }
}