/**
 * Archives page
 */
.archive-head {
	position: relative;
	padding: 40px 0;
	border-bottom: 1px solid #ebebeb;
	background: #fafafa;
	font-family: $title-font;
	text-align: center;
	text-transform: uppercase;
	overflow: hidden;
	
	.sub-title {
		display: block;
		z-index: 2;
		color: $main-color;
		font-size: 12px;
		letter-spacing: 0.1em;
		line-height: 1;
		font-weight: 500;
	}
	
	.title {
		position: relative;
		z-index: 2;
		margin-top: 16px;
		font-size: 29px;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.03em;
	}
	
	.background {
		position: absolute;
		margin-top: 8px;
		z-index: 1;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		color: #b4b4b4;
		opacity: 0.042;
		font-size: 126px;
		line-height: 1.45;
		font-weight: 300;
		font-style: normal;
		
		-webkit-font-smoothing: antialiased;
		pointer-events: none;
	}
	
	.description {
		max-width: 700px;
		margin-top: 30px;
		margin-bottom: -10px;
		color: #555;
		font-family: $text-font;
		font-size: 15px;
		text-transform: none;
		text-align: center;
		-webkit-font-smoothing: antialiased;

		&:empty {
			display: none;
		}
	}
}

// When there is an ad
.archive .the-wrap.head {
	margin-bottom: 0;
}

.widget-a-wrap + .archive-head {
	background: #fff;
	
	.background {
		display: none;
	}
}

.main-head.simple + .archive-head {
	border-top: 1px solid #efefef;
}