/*Social network*/
.social-block {
	display: flex;
	flex-flow: row wrap;
	@media screen and (width <= 780px) {
		margin-bottom: 250px;
	}

	.social-block__left {
		position: relative;
		flex: 1 1 50%;
		min-width: 300px;
		justify-content: center;
		height: 689px;

		.social-block__content {
			position: relative;
			z-index: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			height: 100%;
			justify-content: center;
			width: 100%;
			background-repeat: no-repeat;
			background-size: cover;
			border-radius: 10px;
			background-position: center;

			.social-block__title {
				color: #0C0B0B;
				margin: clamp(20px, 3vw, 45px) clamp(20px, 3vw, 49.5px);
				width: 118px;
				font-weight: 600;
				font-size: clamp(24px, 3vw, 42px);
				line-height: clamp(24px, 3vw, 42px);
				letter-spacing: -3.6px;
			}

			> .big_btn.big_btn_red {
				align-self: flex-end;
				margin-right: 24px;
				margin-bottom: 24px;
				@media screen and (width <= 780px) {
					margin-right: auto;
					margin-bottom: -20px;
					margin-left: 20px;
				}
			}
		}
	}

	.social-block__right {
		flex: 1 1 50%;
		background: #fff;
		padding: 0 48px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: relative;
		@media screen and (width <= 780px) {
			padding: 0;
			margin-top: 50px;
		}

		.social-block__zen-header {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;

			.social-block__zen-title {
				font-size: 36px;
				font-weight: 700;
				color: #222;
			}

			.big_btn.big_btn_red {
				@media screen and (width <= 780px) {
					position: absolute;
					top: auto;
					bottom: -150px;
					left: 40px;
				}
			}
		}

		.social-block__zen-list {
			list-style: none;
			padding: 0;
			margin: 0;

			> li {
				display: flex;
				align-items: center;
				justify-content: space-between;
				border-bottom: 1px solid #e0e0e0;
				padding: 28px 0;

				.social-block__zen-article {
					flex: 1 1 auto;
					font-weight: 600;
					color: #092433;
					font-size: clamp(18px,3vw,24px);
					line-height: 26.4px;
					letter-spacing: -0.24px;
				}

				.social-block__zen-read {
					color: #d32f2f;
					font-size: clamp(16px,3vw,18px);
					font-weight: 500;
					text-decoration: none;
					display: flex;
					align-items: center;
					transition: color 0.2s;
					gap: 10px;

					&:hover {
						color: #b71c1c;
					}
				}
			}
		}
	}
}
/*END_Social network*/