section.homepage-slider {
	position: relative;
	padding: var(--margin);
	height: 420px;
	width: 100%;
	overflow: hidden;
	position: relative;
}
section.homepage-slider .author_name{
	color:white;
}
html.wide section.homepage-slider {
	height: 520px;
}
section.homepage-slider .user-profile:hover {
	background: black;
}
section.homepage-slider .tags li.category {
	background: #2d2d2d;
}
section.homepage-slider .content-panel {
	color: white;
}
section.homepage-slider .homepage-swiper {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius);
	border: var(--border);
	overflow: hidden;
}
section.homepage-slider .swiper-slide {
	overflow: hidden;
}
section.homepage-slider .item-wrapper {
	display: block;
	height: 100%;
}
section.homepage-slider .article .image {
	height: 100%;
}
section.homepage-slider .article .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-ms-transition: transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	filter: grayscale(0.5);
}
section.homepage-slider .article:hover .image img {
	transform: scale(1.05);
	filter: grayscale(0);
}
section.homepage-slider .article .content {
	position: absolute;
	bottom: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.7);
	padding: var(--margin);
	margin: var(--margin);
	border-radius: var(--border-radius);
	left: 0;
	right: 0;
	color: white;
}
section.homepage-slider .article.boost .content {
	border: 2px solid var(--color);
}
html.dark section.homepage-slider .article .content {
	background: rgba(0, 0, 0, 0.85);
}
html.dark section.homepage-slider .article .content:hover {
	background: rgba(0, 0, 0, 0.95);
}
section.homepage-slider .article .top {
	display: grid;
	grid-template-columns: auto 1fr;
	font-size: 12px;
	line-height: 13px;
	font-weight: 500;
	margin-bottom: 4px;
	margin-top: 0;
}
section.homepage-slider .article .top .date {
	padding-top: 5px;
}
section.homepage-slider .article h2 {
	font-size: 34px;
	line-height: 33px;
	margin-bottom: 5px;
	margin-top: 5px;
	opacity: 1;
	-webkit-transition: text-shadow 0.5s;
	-moz-transition: text-shadow 0.5s;
	-ms-transition: text-shadow 0.5s;
	-o-transition: text-shadow 0.5s;
	transition: text-shadow 0.5s;
	color: var(--color);
}
html.wide section.homepage-slider .article h2 {
	font-size: 46px;
	line-height: 44px;
}
section.homepage-slider .article .content:hover h2 {
	opacity: 1;
}
html.dark section.homepage-slider .article h2 {
	color: var(--color);
	text-shadow: 0 0 5px black;
}
section.homepage-slider .article .description {
	opacity: 0.75
}
section.homepage-slider .article:hover .description {
	opacity: 1;
}
html.wide section.homepage-slider .article .description {
	font-size: 20px;
	line-height: 22px;
}
@media all and (max-width: 960px) {
	section.homepage-slider {
		height: 400px !important;
	}
	section.homepage-slider .tags li.category {
		color: white;
	}
	section.homepage-slider .swiper-slide .content-panel {
		color: white;
	}
	section.homepage-slider .article h2 {
		font-size: 34px !important;
		line-height: 32px !important;
	}
}
@media all and (max-width: 720px) {
	section.homepage-slider {
		margin-bottom: -1px;
		border: unset;
	}
	.homepage-slider-mobile-skip {
		display: block;
	}
	section.homepage-slider .article .image:after {
		content: "";
		display: block;
		background: var(--background);
		background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.8) 35%, rgba(255, 255, 255, 1) 100%);
		background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 1) 100%);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		right: 0;
		bottom: 0;
	}
	html.dark section.homepage-slider .article .image:after {
		background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 1) 100%);
	}
	section.homepage-slider .article .content {
		background: unset !important;
		color: var(--font-color);
	}
	section.homepage-slider .article .content {
		margin: unset;
		border-radius: unset;
	}
	section.homepage-slider .article .top {
		grid-template-columns: 1fr;
	}
	section.homepage-slider .article .top .date {
		color: white;
		padding-left: 31px;
		padding-top: 0;
		opacity: 0.5;
	}
	section.homepage-slider .article h2 {
		font-size: 26px !important;
		line-height: 25px !important;
	}
	section.homepage-slider .article h2 {
		font-size: 38px !important;
		line-height: 38px !important;
		font-weight: 500;
		margin-bottom: var(--margin);
	}
	section.homepage-slider .article .description {
		display: none;
	}
}
@media all and (max-width: 540px) {
	section.homepage-slider {
		height: 340px !important;
		width: unset;
		border-bottom: var(--border);
	}
	section.homepage-slider .article .image {
		border-radius: var(--border-radius);
		overflow: hidden;
	}
	section.homepage-slider .article h2 {
		font-size: 36px !important;
		line-height: 34px !important;
		font-weight: 500;
	}
}