.blog-list-hero {
	position: relative;
	min-height: 743px;
	overflow: hidden;
	background-color: #b2b2b2;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.blog-list-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
}

.blog-list-hero__content {
	position: relative;
	z-index: 1;
	min-height: 743px;
	color: #fffefe;
}

.blog-list-hero__details {
	position: absolute;
	top: 52px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 32px;
	color: #fffefe;
	font-size: 12px;
	line-height: 1.2;
}

.blog-list-hero__details div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.blog-list-hero__details span {
	color: #fffefe;
	font-weight: 900;
	text-transform: uppercase;
}

.blog-list-hero__details strong {
	color: #fffefe;
	font-weight: 700;
}

.blog-list-hero__copy {
	position: absolute;
	left: 0;
	bottom: 74px;
	width: min(100%, 745px);
}

.blog-list-hero__category {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 21px;
}

.blog-list-hero__category::before {
	content: "";
	width: 3px;
	height: 20px;
	background: #55BDDA;
}

.blog-list-hero__category span {
	color: #55BDDA;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.blog-list-hero h1 {
	max-width: 745px;
	margin: 0 0 21px;
	color: #fffefe;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.08;
	text-transform: uppercase;
}

.blog-list-hero__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #F6821F;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	text-transform: uppercase;
}

.blog-list-hero__link::after {
	content: "›";
	font-size: 24px;
	line-height: 0.8;
}

.blog-list-hero__link:hover,
.blog-list-hero__link:focus {
	color: #F6821F;
	text-decoration: none;
	opacity: 0.86;
	outline: none;
}

.blog-listing {
	padding: 62px 0 82px;
	background: #fff;
}

.blog-listing__header {
	margin-bottom: 34px;
}

.blog-listing__header h2 {
	margin: 0;
	color: #b2b2b2;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.blog-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	padding: 18px 16px 27px;
	background: #f2f2f2;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.blog-card:hover,
.blog-card:focus {
	color: inherit;
	text-decoration: none;
	outline: none;
}

.blog-card__category {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 15px;
}

.blog-card__category::before {
	content: "";
	width: 3px;
	height: 20px;
	background: #55BDDA;
}

.blog-card__category span {
	color: #55BDDA;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.blog-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: #ddd;
}

.blog-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center right;
	transition: transform 0.25s ease;
}

.blog-card:hover .blog-card__image img,
.blog-card:focus .blog-card__image img {
	transform: scale(1.03);
}

.blog-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px 5px 0;
}

.blog-card h3 {
	display: -webkit-box;
	min-height: 57px;
	max-height: 57px;
	margin: 0 0 17px;
	overflow: hidden;
	color: #231f20;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.18;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-card p {
	display: -webkit-box;
	min-height: 57px;
	max-height: 57px;
	margin: 0 0 22px;
	overflow: hidden;
	color: #707070;
	font-size: 14px;
	line-height: 19px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.blog-card__read {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: #F5821F;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.1;
	text-decoration: none;
}

.blog-card__read::after {
	content: "›";
	font-size: 24px;
	line-height: 0.8;
}

.blog-card:hover .blog-card__read,
.blog-card:focus .blog-card__read,
.blog-breadcrumb a:hover,
.blog-breadcrumb a:focus {
	color: #F5821F;
	text-decoration: none;
	opacity: 0.8;
	outline: none;
}

.blog-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
	margin-top: 46px;
}

.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border: 1px solid #55BDDA;
	color: #55BDDA;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.blog-pagination span,
.blog-pagination a:hover,
.blog-pagination a:focus {
	background: #55BDDA;
	color: #fffefe;
	text-decoration: none;
	outline: none;
}

.blog-empty {
	color: #707070;
	font-size: 16px;
	line-height: 1.5;
}

.blog-detail {
	padding: 76px 0 0;
	background: #fff;
}

.blog-detail__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 86px;
	align-items: start;
	padding-bottom: 54px;
}

.blog-detail__intro-main {
	max-width: 850px;
}

.blog-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	color: #55BDDA;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.blog-breadcrumb a,
.blog-breadcrumb span:first-child {
	color: #a8aaa9;
	text-decoration: none;
}

.blog-breadcrumb span {
	color: #55BDDA;
}

.blog-detail__intro h1 {
	margin: 0 0 22px;
	color: #9a9a9a;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.blog-detail__lead {
	max-width: 780px;
	color: #000;
	font-size: 17px;
	line-height: 1.55;
}

.blog-detail__lead p {
	margin: 0;
}

.blog-detail__meta-sidebar {
	display: flex;
	flex-direction: column;
}

.blog-detail__meta-item {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-height: 92px;
	padding: 0 0 28px 30px;
	border-bottom: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
}

.blog-detail__meta-item + .blog-detail__meta-item {
	padding-top: 28px;
}

.blog-detail__meta-item:last-child {
	border-bottom: 0;
}

.blog-detail__meta-item--date {
	justify-content: flex-end;
}

.blog-detail__meta-item span,
.blog-share__box span,
.blog-related__header h2 {
	color: #a8aaa9;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.blog-detail__meta-item strong {
	color: #F5821F;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
}

.blog-detail__meta-item--blue {
	color: #55BDDA !important;
}

.blog-detail__meta-item small {
	color: #a8aaa9;
	font-size: 16px;
	line-height: 1.45;
}

.blog-detail__cover {
	width: calc(100% - 40px);
	max-width: 1660px;
	margin: 0 auto 64px;
	overflow: hidden;
	border-radius: 4px;
	background: #f2f2f2;
}

.blog-detail__cover img {
	width: 100%;
	height: auto;
	display: block;
}

.blog-detail__body-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 70px;
	align-items: start;
	margin-bottom: 78px;
}

.blog-detail__content {
	max-width: 850px;
	color: #8a8a8e;
	font-size: 16px;
	line-height: 1.7;
}

.blog-detail__content p,
.blog-detail__content ul,
.blog-detail__content ol {
	margin: 0 0 20px;
}

.blog-detail__content strong,
.blog-detail__content b {
	color: #000;
	font-weight: 900;
}

.blog-detail__content a {
	color: #F5821F;
	font-weight: 900;
}

.blog-share {
	position: sticky;
	top: 120px;
	align-self: start;
}

.blog-share--mobile {
	display: none;
}

.blog-share__box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 0 24px 24px;
	border-left: 1px solid #b2b2b2;
}

.blog-share__box strong {
	color: #F5821F;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
}

.blog-share__buttons {
	display: flex;
	align-items: center;
	gap: 12px;
}

.blog-share__button {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
}

.blog-share__button:hover,
.blog-share__button:focus {
	color: #fff;
	text-decoration: none;
	opacity: 0.85;
	outline: none;
}

.blog-share__button--facebook {
	background: #1877f2;
}

.blog-share__button--twitter {
	background: #000;
}

.blog-share__button--whatsapp {
	background: #25d366;
}

.blog-share__button--linkedin {
	background: #0a66c2;
}

.blog-newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
	gap: 80px;
	align-items: center;
	margin: 0 0 68px;
	padding: 58px 70px;
	border-radius: 4px;
	background: #F5821F;
}

.blog-newsletter h2 {
	margin: 0;
	color: #fff;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.12;
	text-transform: uppercase;
}

.blog-newsletter__content {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.blog-newsletter__content p {
	max-width: 430px;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
}

.blog-newsletter__form {
	position: relative;
	display: flex;
	gap: 8px;
	align-items: center;
}

.blog-newsletter__form input {
	flex: 1 1 auto;
	min-width: 0;
	height: 42px;
	padding: 0 16px;
	border: 1px solid #f2f2f2;
	border-radius: 0;
	background: #fff;
	color: #231f20;
	font-size: 14px;
}

.blog-newsletter__form button,
.blog-related__header a {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 0;
	background: #55BDDA;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.blog-newsletter__form button {
	flex: 0 0 auto;
	padding: 10px 22px;
}

.blog-newsletter__thanks {
	position: absolute;
	right: 0;
	bottom: -24px;
	display: none;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
}

.blog-related {
	margin-bottom: 74px;
}

.blog-related__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.blog-related__header h2 {
	margin: 0;
	font-size: 15px;
}

.blog-related__header a {
	padding: 10px 22px;
	text-decoration: none;
}

.blog-related__header a:hover,
.blog-related__header a:focus {
	color: #fff;
	text-decoration: none;
	opacity: 0.85;
	outline: none;
}

.blog-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.blog-related__card {
	display: block;
	min-height: 320px;
	padding: 16px;
	border: 1px solid #f2f2f2;
	border-radius: 4px;
	background: #fff;
	color: inherit;
	text-decoration: none;
}

.blog-related__card:hover,
.blog-related__card:focus {
	color: inherit;
	text-decoration: none;
	outline: none;
}

.blog-related__image {
	display: block;
	overflow: hidden;
	height: 160px;
	margin-bottom: 13px;
	border-radius: 4px;
	background: #f2f2f2;
}

.blog-related__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center right;
}

.blog-related__card span:not(.blog-related__read) {
	display: block;
	margin-bottom: 8px;
	color: #F5821F;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.blog-related__card h3 {
	display: -webkit-box;
	min-height: 48px;
	max-height: 48px;
	margin: 0 0 14px;
	overflow: hidden;
	color: #000;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-related__read {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #F5821F;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.blog-related__card:hover .blog-related__read,
.blog-related__card:focus .blog-related__read,
.blog-related__read:hover,
.blog-related__read:focus {
	color: #F5821F;
	text-decoration: none;
	opacity: 0.85;
	outline: none;
}

@media (max-width: 991px) {
	.blog-list-hero {
		min-height: 560px;
	}

	.blog-list-hero__content {
		min-height: 560px;
	}

	.blog-list-hero__details {
		top: 38px;
	}

	.blog-list-hero__copy {
		bottom: 56px;
	}

	.blog-list-hero h1 {
		font-size: 36px;
	}

	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-detail__intro,
	.blog-detail__body-layout {
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 42px;
	}

	.blog-detail__intro h1 {
		font-size: 34px;
	}

	.blog-newsletter {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 767px) {
	.blog-list-hero {
		min-height: 480px;
		text-align: center;
	}

	.blog-list-hero__content {
		min-height: 480px;
	}

	.blog-list-hero__details {
		top: 28px;
		right: 15px;
		left: 15px;
		justify-content: center;
		gap: 16px;
	}

	.blog-list-hero__copy {
		right: 15px;
		bottom: 42px;
		left: 15px;
		width: auto;
	}

	.blog-list-hero__category {
		justify-content: center;
		margin-bottom: 16px;
	}

	.blog-list-hero h1 {
		font-size: 28px;
	}

	.blog-listing {
		padding: 44px 0 58px;
	}

	.blog-listing__header {
		margin-bottom: 24px;
		text-align: center;
	}

	.blog-listing__header h2 {
		font-size: 28px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.blog-card {
		padding: 16px 14px 24px;
	}

	.blog-card h3 {
		min-height: 50px;
		max-height: 50px;
		font-size: 21px;
	}

	.blog-detail {
		padding: 38px 0 0;
	}

	.blog-detail__intro,
	.blog-detail__body-layout {
		display: block;
	}

	.blog-detail__intro {
		padding-bottom: 34px;
	}

	.blog-breadcrumb {
		justify-content: center;
		margin-bottom: 18px;
	}

	.blog-detail__intro-main,
	.blog-detail__content {
		max-width: none;
		text-align: center;
	}

	.blog-detail__intro h1 {
		font-size: 28px;
	}

	.blog-detail__lead {
		font-size: 16px;
	}

	.blog-detail__meta-sidebar {
		margin-top: 30px;
		text-align: left;
	}

	.blog-detail__meta-item {
		min-height: 0;
		padding-left: 18px;
	}

	.blog-detail__cover {
		width: 100%;
		margin-bottom: 32px;
		border-radius: 0;
	}

	.blog-detail__content {
		font-size: 15px;
		line-height: 1.65;
	}

	.blog-share {
		position: static;
		margin: 0 0 34px;
		text-align: left;
	}

	.blog-share--desktop {
		display: none;
	}

	.blog-share--mobile {
		display: flex;
		flex-direction: column-reverse;
	}

	.blog-newsletter {
		margin: 48px 0;
		padding: 34px 24px;
		text-align: center;
	}

	.blog-newsletter h2 {
		font-size: 26px;
	}

	.blog-newsletter__content {
		align-items: center;
	}

	.blog-newsletter__form {
		width: 100%;
		flex-direction: column;
	}

	.blog-newsletter__form input,
	.blog-newsletter__form button {
		width: 100%;
	}

	.blog-related__header {
		flex-direction: column;
		text-align: center;
	}

	.blog-related__grid {
		grid-template-columns: 1fr;
	}
}
