/* Color Tokens */
.primary {
	color: #FF0009; /* $primary */
}

.secondary {
	color: #D7D7D7; /* $secondary */
}

.tertiary {
	color: #FFF212; /* $tertiary */
}

.light {
	color: #FEFEFE; /* $light */
}

.dark {
	color: #201E1E; /* $dark */
}
/* End Color Tokens */

/* Blog Area */
.blog-area {
	background-color: #FF0009; /* $primary */
	color: #FEFEFE; /* $light */
}

.blog-area .main {
}

.blog-area header {
}

.blog-area header h2 {
}

.blog-area header h2 a {
	color: #FEFEFE; /* $light */
}

.blog-area .blog-list {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.no-flexbox .blog-area .blog-list {
	display: table;
	width: 100%;
}

.blog-area .blog-list li {
	-webkit-flex: 1 1 50%;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	text-align: center;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.no-flexbox .blog-area .blog-list li {
	display: table-cell;
	width: 50%;
}

.blog-area .blog-list li:last-child {
	border-left: solid 1px rgba(242,242,242,0.502); /* alpha($light,50%) */
}

.blog-area .blog-list li a {
	color: #FEFEFE; /* $light */
	display: block;
	width: 100%;
	padding: 1.5em 3%;
	position: relative;
	overflow: hidden;
	transition: color .4s ease 0s;
	z-index: 1;
}

.blog-area .blog-list li a:hover {
}

.blog-area .blog-list li a h3 {
	color: #FEFEFE; /* $light */
	font-size: 1.333em;
	padding-bottom: 1em;
	margin-bottom: 1em;
	position: relative;
	transition: color .4s ease 0s;
	font-weight: 500;
}

.blog-area .blog-list li a:hover h3 {
}

.blog-area .blog-list li a h3:after {
	content: ' ';
	display: block;
	position: absolute;
	width: 100px;
	height: 1px;
	left: calc(50% - 50px);
	bottom: 0;
	background-color: rgba(242,242,242,0.502); /* alpha($light,50%) */
	transition: background-color .4s ease 0s;
}

.blog-area .blog-list li a time {
	font-size: 1.111em;
	display: block;
}

.blog-area .blog-list li a .btn {
	margin-top: 1em;
}
/* End Blog Area */

/* 800px Responsive */
@media screen and (max-width:800px) {
	.blog-area .blog-list li a {
		padding: 1.5em 5%;
	}
}
/* End 800px Responsive */

/* 650px Responsive */
@media screen and (max-width:650px) {
	.blog-area {
		display: none;
	}
}
/* End 650px Responsive */
