#wb_Articles{
	position: relative;
}
#wb_Articles_header{
	position: relative;
	margin: 0 auto;
	max-width: 1024px;
	color: var(--main-color);
	font-size: 32px;
	text-align: center;
	border-bottom: 1px solid #e3131969;
	padding-bottom: 7px;
}
#Articles{
  display: grid;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-content: flex-start;
  margin: 0 auto;
  max-width: 1024px;
  background-color: #D3D3D3;
  padding: 30px 30px 140px 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.article > a{
  text-decoration: none;
  color: #000;
}
.article{
  /*background-color: #e9e9e9;*/
  padding: 0px 0px;
  min-width: 240px;
  background-color: #FBFBFB;
  transition: transform 100ms linear 0ms;
  box-shadow: 0 0 15px #b3b3b3;
  position: relative;
}
.article > a > .header, .article > a > .description, .article > a > .date {
  margin-top: 10px;
  padding: 0 15px;
  font-size: 10pt;
  text-align: center;
  display: block;
}
.article > a > .header{
  font-size: 14pt;
  font-weight: 100;
}
.article > a > .image{
  font-size: 14pt;
  display: block;
  height: 200px;
}
.article:hover{
  background-color: #fff;
  transform: scale(1.15);
  cursor: pointer;
  transition: transform 100ms linear 0ms;
  z-index: 500;
}
.article > a > .date{
  font-size: 8pt;
  display: block;
  padding: 0 15px;
  color: #909090;
}
.article > a > hr{
  border-bottom: 1px dotted;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 5px 15px;
}
.description{
	line-height: 1.4;
	color: #646464;
}
.article-button{
	margin: 15px auto;
	display: block;
	text-align: center;
	color: #e31319;
	font-size: 10pt;
	padding: 10px 30px;
	background-color: #fff;
	border: 1px solid #e31319;
	text-transform: uppercase;
	width: fit-content;
}
.article-tail{
	margin: 0 auto;
	max-width: 1024px;
	padding-bottom: 75px;
	text-align: right;
}
.article-tail-button{
	margin: 0 auto;
	width: fit-content;
	display: block;
	font-size: 14pt;
	color: #fff;
	padding: 12px 60px 12px 20px;
	text-transform: uppercase;
	background: #e31319;
	position: relative;
	box-shadow: 5px 5px 10px #0505055e;
	border-radius: 7px 50px 50px 7px;
}
.article-tail-button > i:before{
	content: "\f0da";
	font-family: FontAwesome;
	font-style: normal;
	font-size: 24pt;
	padding: 1px;
	background-color: #fbfbfb;
	border-radius: 70px;
	display: block;
	width: 40px;
	text-align: center;
	right: 3px;
	position: absolute;
	color: #e31319;
	top: calc(50% - 20px);
	text-shadow: 3px 0px 0px #e3131959;
}
.article-icon{
	color: #e31319;
	font-size: 14pt;
	font-family: FontAwesome;
	width: 22px;
	position: absolute;
	left: -7px;
	top: -10px;
	padding: 6px;
	border-radius: 32px 32px 5px 32px;
	background: linear-gradient(#f00, #710000);;
	text-align: center;
	font-style: normal;
	outline: 1px solid #fff;
	outline: 1px solid #fff;
	box-shadow: 0px 0px 12px #969696;
}
.article-icon .fil0{
	fill: #fbfbfb;
}
@media screen and (max-width:768px){
	#Articles{
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width:440px){
	#Articles{
		grid-template-columns: 1fr;
	}
}
