.intro {
	padding: 45px 0 25px;
	line-height: 1.6;
}
.intro p {
	margin-bottom: 35px;
}
.intro strong {
	font-size: 25px;
}
.grey-bg {
	padding: 68px 0 30px;
	background-color: #eceded;
}
.articles-title {
	margin-bottom: 30px;
	font-size: 30px;
}
.articles-wrapper .articles-title {
	text-align: center;
}
.articles-wrapper .articles {
	justify-content: center;
    flex-wrap: wrap;
    gap: 4.5%;
	padding-top: 22px;
}
.articles-wrapper .item {
	width: 378px;
	margin-bottom: 80px;
	color: inherit;
	background-color: #fff;
	box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.1);
	transition: box-shadow .3s ease-out;
}
.articles-wrapper .item:hover {
	box-shadow: 1px 1px 5px 4px rgba(0,0,0,0.3);
}
.articles-wrapper .item span {
	display: block;
}
.articles-wrapper .item .title-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 248px;
	padding: 10px 42px 0;
	font-size: 24px;	
	text-align: center;
	line-height: 1.2;
	color: #fff;
}

.articles-wrapper .item .details-wrapper {
	height: 200px;
	padding: 57px 30px 20px 65px;
}
.articles-wrapper .item .details-wrapper .item-author {
	position: relative;
	padding: 19px 0 2px;
	font-size: 22.5px;
	font-weight: bold;
}
.articles-wrapper .item .details-wrapper .item-author:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 157px;
	height: 1px;
	background: #000;
}
.articles-wrapper .item .details-wrapper .item-date {
	font-size: 18px;
	font-weight: bold;
}
.links-wrapper {
	margin: 67px 0 110px;
}
.links-wrapper .links {
	flex-wrap: wrap;
	margin-top: 50px;
}
.links-wrapper .links li {
	width: 44.5%;
	margin-bottom: 15px;
}
.links-wrapper .links li a {
	display: block;
	padding: 3px 17px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.35;
	border: 1px solid #000;
	border-radius: 24px;
	color: inherit;
	background-color: rgba(208, 181, 106, 0);
	transition: background-color .2s ease-in;
}
.links-wrapper .links li a:hover {
	background-color: rgba(208, 181, 106, 1);
}

.search-wrapper form input[type="text"] {
	width: 230px;
	font-size: 20px;
	border-radius: 22px;
	padding-left: 40px;
	background: #fff url(images/search.svg) no-repeat 5px center/32px;
}
.search-wrapper form input[type="submit"] {
	margin-left: 12px;
	padding: 8px 20px;
	font-size: 20px;
	color: #fff;
	background: #ab8a36;
	border-radius: 22px;
}
.search-wrapper .tags-wrapper {
	margin: 30px 0;
}
.search-wrapper .tags-wrapper .flex {
	justify-content: center;
	flex-wrap: wrap;
}
.search-wrapper .tags-wrapper .article-tag {
	margin: 0 6px 12px;
	color: #ab8a36;
	border: 1px solid #ab8a36;
	border-radius: 20px;
}
.search-wrapper .tags-wrapper .article-tag.active {
	color: #fff;
	background: #ab8a36;
}
.search-wrapper .tags-wrapper .article-tag a {
	display: block;
	padding: 2px 12px;
	color: inherit;
}
.articles-wrapper .item.empty {
	background: none;
	box-shadow: none;
}
.loading {
	display: none;
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	background: rgba(255,255,255,0.6);
}
.loading img {
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
}
.loading.show {
	display: block;
}
.cat-title {
	font-size: 28px;
}
.no-results {
	font-size: 32px;
}

.articles-wrapper .item.color1 .title-wrapper {
	background: #f89939;
}
.articles-wrapper .item.color2 .title-wrapper {
	background: #00aeef;
}
.articles-wrapper .item.color3 .title-wrapper {
	background: #bd88ae;
}
.articles-wrapper .item.color4 .title-wrapper {
	background: #d0b56a;
}
.articles-wrapper .item.color5 .title-wrapper {
	background: #5a7c59;
}
.articles-wrapper .item.color6 .title-wrapper {
	background: #6ba8b4;
}
.articles-wrapper .item.color7 .title-wrapper {
	background: #f06597;
}

@media (max-width: 1310px) {
    .articles-wrapper .item {
		max-width: 32%;
	}
	.links-wrapper .links li {
		width: 47%;
	}
}

@media (max-width: 1290px) {
    .links-wrapper .links li {
		width: 48%;
	}
}

@media (max-width: 1210px) {
    .articles-wrapper .item .title-wrapper {
		height: 230px;
		padding: 10px 30px 0;
		font-size: 22px;
	}
	.articles-wrapper .item .details-wrapper {
		height: 190px;
		padding: 50px 30px 20px 50px;
	}
	.links-wrapper .links li a {
		line-height: 1.2;
	}
}

@media (max-width: 1023px) {
    .articles-wrapper .item {
		margin-bottom: 56px;
	}
	.articles-wrapper .item .title-wrapper {
		height: 200px;
		padding: 8px 24px 0;
		font-size: 20px;
	}
	.articles-wrapper .item .details-wrapper {
		height: 160px;
		padding: 36px 30px 20px;
	}
	.articles-wrapper .item .details-wrapper .item-author:after {
		width: 120px;
	}
	.articles-wrapper .item .details-wrapper .item-author {
		padding: 16px 0 2px;
		font-size: 20px;
	}
	.articles-wrapper .item .details-wrapper .item-date {
		font-size: 17px;
	}
	.links-wrapper {
		margin: 40px 0 80px;
	}
	.links-wrapper .links {
		display: block;
		margin-top: 30px;
	}
	.links-wrapper .links li {
		width: 100%;
	}
}

@media (max-width: 767px) {
    .intro strong {
		font-size: 22px;
	}
	.intro {
		padding: 0;
	}
	.intro p {
		margin-bottom: 20px;
	}
	.articles-wrapper .articles {
		gap: 2%;
		padding-top: 0;
	}
	.articles-wrapper .item {
		max-width: 49%;
		margin-bottom: 26px;
	}
	.articles-wrapper .item .title-wrapper {
		height: 170px;
		padding: 4px 10px;
		font-size: 18px;
		line-height: 1.15;
	}
	.search-wrapper form input[type="text"] {
		width: 180px;
	}
	.search-wrapper form input[type="submit"] {
		margin-left: 2px;
	}
	.articles-wrapper .item .details-wrapper {
		height: 120px;
		padding: 20px 15px;
	}
	.articles-wrapper .item .details-wrapper .item-author {
		font-size: 16px;
	}
	.articles-wrapper .item .details-wrapper .item-author:after {
		width: 100px;
	}
	.articles-wrapper .item .details-wrapper .item-date {
		font-size: 15px;
	}
	.grey-bg {
		padding: 30px 0 30px;
	}
	.links-wrapper {
		margin-bottom: 40px;
	}
	.links-wrapper .links li a {
		font-size: 16px;
	}
	.articles-title {
		margin-bottom: 20px;
		font-size: 25px;
	}
}
