/* Контейнер */
.hero {
	background: #fbfbfb;
}


@media (min-width: 768px) {
	.hero {
		margin-left: calc((768px - 100vw) / 2);
		margin-right: calc((768px - 100vw) / 2);
	}
}

@media (min-width: 992px) {
	.hero {
		margin-left: calc((992px - 100vw) / 2);
		margin-right: calc((992px - 100vw) / 2);
	}
}

@media (min-width: 1200px) {
	.hero {
		margin-left: calc((1200px - 100vw) / 2);
		margin-right: calc((1200px - 100vw) / 2);
	}
}

@media (min-width: 1400px) {
	.hero {
		margin-left: calc((1320px - 100vw) / 2);
		margin-right: calc((1320px - 100vw) / 2);
	}
}

@media (min-width: 1680px) {
	.hero {
		margin-left: calc((1680px - 100vw) / 2);
		margin-right: calc((1680px - 100vw) / 2);
	}
}

.hero__container {
	margin: 0 auto;

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
	height: calc(100vh - 80px);
	@media (max-width: 576px) {
		height: calc(106vh);
	}
}

/* Левая колонка */
.hero__content {
	padding-right: 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding-bottom: 140px;
}

.hero__title {
	font-size: clamp(32px, 3.4vw, 50px);
	line-height: 1.05;
	font-weight: 400;
	color: #222222;
	margin: 0 0 20px;
}

.hero__divider {
	height: 2px;
	width: 100%;
	max-width: 560px;
	background: #E5E5E5;
	margin: 12px 0 20px;
}

.hero__description {
	color: #6c757d;
	font-size: clamp(14px, 1.4vw, 22px);
	line-height: 1.55;
	margin-bottom: 20px;
}

.hero__button {
	display: inline-block;
	padding: 10px 18px;
	border: 1px solid #B9B9B9;
	text-decoration: none;
	color: #222222;
	transition: .2s ease;
	font-size: 14px;
	line-height: 1;
}

.hero__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

/* Карточки статей */
.hero__articles {
	display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
    position: absolute;
    bottom: 40px;
}

.hero__article {
	@media (max-width: 1024px) {
		display: none;
	}
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 12px;
	padding: 12px;
	border-radius: 12px;
	background: #F4F3EF;
	text-decoration: none;
	color: inherit;
}

.hero__article-image {
	width: 72px;
	height: 54px;
	overflow: hidden;
}

.hero__article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero__article-type {
	display: inline-block;
	font-size: 12px;
	color: #539E53;
	margin-bottom: 6px;
}

.hero__article-title {
	font-size: 14px;
	line-height: 1.3;
	color: #222222;
	margin: 0;
}

/* Правая колонка (картинка) */
.hero__media {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Адаптив */
@media (max-width: 1024px) {
	.hero__container {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hero__content {
		padding-right: 0;

		padding-bottom: 20px;
		padding-top: 20px;
	}

	.hero__media {
		min-height: 320px;
	}

	.hero__articles {
		display: none;
	}
}

.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__image {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity .5s ease;
}
.hero__video, .hero__overlay { position: absolute; inset: 0; }
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 2;
}
.hero__overlay {
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 3;
}
.hero__media.is-playing .hero__video { opacity: 1; }
.hero__media.is-playing .hero__overlay { opacity: 1; }
.hero__media.is-playing .hero__image { opacity: 0; }
