.author.author--extended {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-template-columns: unset;
	padding: 10px 15px;
	position: relative;
	background: #edf2f7;
	margin-bottom: 15px;
	border-radius: 10px;
}

.author--extended .author__left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	min-width: 0;
}

.author--extended .author__text-res {
	order: 4;
	flex-basis: 100%;
}

.author--extended .author__right {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 3px;
	flex-shrink: 0;
}

.author--extended .author__share-label {
	padding-left: 4px;
	margin-bottom: 4px !important;
	font-weight: bold;
}

.author--extended .author__text {
	margin: 0 5px 0 0 !important;
}

.author-tooltip {
	position: relative;
	display: inline-block;
}

.author-tooltip__link {
	position: relative;
	color: #c53030;
	text-decoration: underline;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.3s ease;
}

.author-tooltip__link:hover {
	color: #2563eb;
}

.author-tooltip__content {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 30;
	width: 320px;
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	pointer-events: auto;
}

.author-tooltip__content::after {
	content: "";
	width: 100%;
	height: 20px;
	display: block;
	background: transparent;
	position: absolute;
	top: -20px;
}

.author-tooltip:hover .author-tooltip__content,
.author-tooltip__content:hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.author-tooltip__image {
	flex: 0 0 70px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
}

.author-tooltip__image img,
.author--extended .author-tooltip__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.author-tooltip__info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.author-tooltip__name {
	display: block;
	font-size: 14px;
	line-height: 120%;
	font-weight: bold;
	color: #222;
	text-decoration: none !important;
	transition: 0.3s;
}

.author-tooltip__name:hover {
	color: #c53030;
}

.author-tooltip__text {
	display: block;
	font-size: 12px;
	line-height: 120%;
	font-weight: 300 !important;
	color: #8c8c8c;
}

.author-tooltip--responsible .author-tooltip__name {
	display: inline-block;
}

.author--extended .addtoany_list {
	display: flex;
}

.table-of-content {
	margin-bottom: 15px;
}

.table-of-content__title {
	font-size: 18px;
	cursor: pointer;
	font-weight: bold;
	margin-bottom: 5px !important;
	display: flex;
	align-items: center;
}

.table-of-content__title svg {
	margin-right: 5px;
}

.table-of-content__list {
	display: none;
}

.table-of-content__list-active {
	display: block;
}

@media (max-width: 990px) {
	.author.author--extended {
		display: grid;
		grid-template-columns: 1fr;
		align-items: center;
		grid-gap: 5px;
		margin-bottom: 5px;
	}

	.author--extended .author__left {
		justify-content: flex-start;
	}

	.author--extended .author__text {
		font-size: 11px;
	}

	.author-tooltip__image {
		flex: 0 0 35px;
		width: 35px;
		height: 35px;
	}

	.author-tooltip__content {
		width: 190px;
		left: -70px;
		gap: 8px;
		padding: 5px;
	}

	.author-tooltip__text {
		font-size: 10px;
	}

	.author-tooltip__name {
		font-size: 13px;
	}

	.author-tooltip__info {
		gap: 3px;
	}
}

@media (max-width: 576px) {
	.author--extended .author__right {
		display: none;
	}

	.author--extended .author__share-label {
		margin: 0 0 8px;
		padding: 0;
		font-size: 16px;
		line-height: 1.3;
		font-weight: 400;
		color: #1f1f2e;
	}
}
