/* узкая колонка для повышения читабельности */

.narrow-column {
	margin-left: calc((100vw - 1024px) / 2);
	margin-right: calc((100vw - 1024px) / 2);

}

@media (max-width: 800px) and (min-width: 0) {
	.narrow-column {
		margin-left: 30px;
		margin-right: 30px;
	}
}

/* блок расширения для узкой колонки для выделения картинок, примеров*/

.narrow-column .wide {
	margin-left: -150px;
	margin-right: -150px;
	padding: 30px 0;
}

@media (min-width: 801px) and (max-width: 1110px) {

	.narrow-column .wide {
		margin-left: calc((-100vw + 750px) / 2);
		margin-right: calc((-100vw + 750px) / 2);
	}
}

@media (max-width: 800px) {

	.narrow-column .wide {
		margin-left: -10px;
		margin-right: -10px;
	}
}


.wrapper-info-article {
	margin-top: 32px;
}

.wrapper-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

/*
.wrapper-author p {
	margin: 0;
	color: var(--text-normal);
}*/

.wrapper-author a {
	text-decoration: none;
	margin: 0;
}


.wrapper-author a:hover {
	color: var(--yellow-active);
}

.avatar-author {
	height: 55px;
	width: 55px;
	border-radius: 50px;
}

.views {
	color: var(--text-seo);
}

.info-article {
	color: var(--text-secondary);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 765px) {
	.info-article {
		flex-direction: column;
		justify-content: start;
		align-items: start;
	}
}



.info-date p {
	margin: 0;
}

.text-article img {
	border-radius: 10px;
}

.text-article h2 {
	margin-top: 32px;
}

.title-article {
	color: var(--text-normal);
	margin: 32px 0;
}

.wallpaper-article {
	height: 380px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: -100px;
}


@media (max-width: 565px) {
	.wallpaper-article {
		height: 200px;
	}
}

.wrapper-article {
	background-color: var(--bg-place);
	padding-top: 48px;
	padding-bottom: 48px;
	border-radius: 30px;
}

.wrapper-share {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 0;
}

@media (max-width: 565px) {
	.wrapper-share {
		flex-direction: column;
		align-items: start;
	}
}

.text-article {
	padding: 32px;
	margin-top: 32px;
	margin-bottom: 32px;
	border-radius: 10px;
	background-color: var(--white);
}

@media (max-width: 556px) {
	.text-article {
		padding: 0;
		background-color: inherit;
	}
}


.authors-block {
	background-color: var(--bg-place);
	padding: 30px 50px;
	border-radius: 10px;
	margin: 50px 0px;
}

.article-video {
	border-radius: 10px;
	width: 100%;
	height: 400px;
}

@media (max-width: 765px) {
	.article-video {
		height: 300px;
	}
}

@media (max-width: 480px) {
	.article-video {
		height: auto;
	}
}


h1 {
	margin-top: 40px;
	margin-bottom: 20px;
}

h2 {
	margin-top: 35px;
	margin-bottom: 18px;
}

h3 {
	margin-top: 30px;
	margin-bottom: 15px;
}

h4 {
	margin-top: 25px;
	margin-bottom: 12px;
}

h5 {
	margin-top: 20px;
	margin-bottom: 10px;
}

h6 {
	margin-top: 15px;
	margin-bottom: 8px;
}

.interview {
	padding-left: 15px;
}



table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 32px;
}

table thead {
	background-color: var(--bs-secondary-bg);
}

table th,
table td {
	padding: 14px 20px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

table tbody tr:last-child td {
	border-bottom: none;
}

table th {
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

table tbody tr:hover {
	background-color: #f9f9f9;
	transition: background-color 0.2s ease-in-out;
}

table td {
	color: #444;
	line-height: 1.5;
}


#wpd-bubble-wrapper.wpd-right-corner>#wpd-bubble #wpd-bubble-add-message {
	color: var(--text-normal);
	padding: 30px 10px;
}

.blog-link {
	background: var(--yellow-disabled);
	text-decoration: none;
	padding: 0 10px;
	border-radius: 20px;
}

.blog-link:hover {
	background: var(--yellow-hover);
}

h5.card-title {
	margin-top: 0;
}

.article-content {
	display: flex;
	gap: 32px;
}

@media (max-width: 765px) {
	.article-content {
		flex-direction: column;
		gap: 0;
	}
}