#articles {}
#articles > .content-wrapper {}

/*--------------------------------------------------------------------------------*/

#articles > .content-wrapper > .articles { margin-bottom: 50px; }
#articles > .content-wrapper > .articles > .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
@media (min-width: 900px) {
	#articles > .content-wrapper > .articles > .grid { column-gap: 30px; }
	@media (min-width: 1200px) {
		#articles > .content-wrapper > .articles > .grid > .article { flex: 0 0 calc((100% - 90px) / 4); }
		#articles > .content-wrapper > .articles > .grid > .article:not(:nth-child(-n + 4)) { margin-top: 50px; }
	}
	@media (max-width: 1199.99px) {
		#articles > .content-wrapper > .articles > .grid > .article { flex: 0 0 calc((100% - 30px) / 2); }
		#articles > .content-wrapper > .articles > .grid > .article:not(:nth-child(-n + 2)) { margin-top: 50px; }
	}
	#articles > .content-wrapper > .articles > .grid > .article { transition: transform .4s ease-out; }
	#articles > .content-wrapper > .articles > .grid > .article:hover { transform: translateY(-20px) rotate(5deg); }
}
@media (max-width: 899.99px) {
	#articles > .content-wrapper > .articles > .grid { column-gap: 25px; }
	@media (max-width: 899.99px) {
		#articles > .content-wrapper > .articles > .grid > .article { flex: 0 0 100%; }
		#articles > .content-wrapper > .articles > .grid > .article:not(:first-child) { margin-top: 25px; }
	}
}

/*--------------------------------------------------------------------------------*/

#articles > .content-wrapper > div > .cta-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#articles > .content-wrapper > div > .cta-wrapper > .load-btn {
	display: flex; height: 150px; width: 150px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	padding: 20px;
	
	background-color: #F2F2F2;
	border-radius: 50%;
	
	text-align: center;
	line-height: 18px;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	
	cursor: pointer;
	
	transition:
		background-color .2s ease-out,
		color			 .2s ease-out;
}
#articles > .content-wrapper > div > .cta-wrapper > .load-btn:hover {
	background-color: #000;
	color: #FFF;
}
#articles > .content-wrapper > div > .cta-wrapper > .load-btn:before {
	content: '';
	display: block; height: 50px; width: 50px; transform: rotate(90deg);
	
	background-image: url("../../images/emojis/left.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
#articles > .content-wrapper > div > .cta-wrapper > .load-btn.loading {
	pointer-events: none;
	animation: pulse 1s infinite;
}
@keyframes pulse {
	0%	 { box-shadow: 0 0 3px -3px rgba(200,200,200,1); }
	100% { box-shadow: 0 0 3px 20px rgba(200,200,200,0); }
}