.author-header{
	border-radius: .625rem;
	background: #fff;
	overflow: hidden;
	margin-bottom: 40px;
}
.author-bg{
	background-image: url(./../img/3d-abstraktnyi-fon-s-kiber-casticami.jpg);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	width: 100%;
	height: 180px;
}
.author-avatar{
	display: flex;
	justify-content: center;
	align-items: center;
}
.author-avatar img{
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 50%;
	border: 12px solid #ffffff;
	box-sizing: border-box;
}
.author-avatar svg{
	width: 100px;
	height: 100px;
	fill: rgb(235 241 252);
	border-radius: 50%;
	background-color: #ffffff;
	padding: 20px;
}
.author-info{
	padding: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	color: #000;
}
.author-info .left{
	width: 200px;
	transform: translateY(-50%);
	margin-bottom: -40px;
}
.author-info .right{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	
}
.author-name{
	font-size: 24px;
	font-weight: 700;
}
.author-position{
	font-size: 14px;
	font-weight: 400;
	padding: 2px 8px;
	border-radius: 4px;
	background-color: #ebf1ff;
	color: #00000078;
	display: inline-block;
}
.author-description{
	font-size: 14px;
	font-weight: 400;
}
.author-post-count{
	font-size: 14px;
	font-weight: 400;
	color: #00000078;
	text-align: center;
}

/* Адаптивность для .author-header */
@media (max-width: 1024px) {
	.author-header {
		margin-bottom: 30px;
	}
	
	.author-bg {
		height: 160px;
	}
	
	.author-avatar img {
		width: 180px;
		height: 180px;
		border: 10px solid #ffffff;
	}
	
	.author-info {
		padding: 18px;
		gap: 15px;
	}
	
	.author-info .left {
		width: 180px;
		margin-bottom: -35px;
	}
	
	.author-name {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.author-header {
		margin-bottom: 25px;
	}
	
	.author-bg {
		height: 140px;
	}
	
	.author-avatar img {
		width: 150px;
		height: 150px;
		border: 8px solid #ffffff;
	}
	
	.author-avatar svg {
		width: 80px;
		height: 80px;
		padding: 15px;
	}
	
	.author-info {
		padding: 15px;
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.author-info .left {
		width: 100%;
		transform: none;
		margin-bottom: 0;
	}
	
	.author-info .right {
		align-items: center;
	}
	
	.author-name {
		font-size: 20px;
	}
	
	.author-position {
		font-size: 13px;
	}
	
	.author-description {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.author-header {
		margin-bottom: 20px;
		border-radius: .5rem;
	}
	
	.author-bg {
		height: 120px;
	}
	
	.author-avatar img {
		width: 120px;
		height: 120px;
		border: 6px solid #ffffff;
	}
	
	.author-avatar svg {
		width: 60px;
		height: 60px;
		padding: 12px;
	}
	
	.author-info {
		padding: 12px;
		gap: 12px;
	}
	
	.author-name {
		font-size: 18px;
	}
	
	.author-position {
		font-size: 12px;
		padding: 1px 6px;
	}
	
	.author-description {
		font-size: 12px;
	}
	
	.author-post-count {
		font-size: 12px;
	}
}

/* Специфичные стили для authors */
/* Стили уже вынесены в глобальный cards.css */
/* Мобильные устройства */
@media (max-width: 768px) {
	.section-title {
		font-size: 24px;
		margin: 30px 0 15px 0;
	}
	.category-title {
		font-size: 22px;
		margin-bottom: 15px;
	}
	.tag-description {
		padding: 20px;
	}
	.tag-description h2 {
		font-size: 20px;
		margin-bottom: 10px;
	}
}

/* Маленькие мобильные устройства */
@media (max-width: 480px) {
	.load-more-btn {
		width: 180px;
		padding: 10px 20px;
		font-size: 13px;
	}
	.section-title {
		font-size: 20px;
	}
	.category-title {
		font-size: 18px;
	}
}

/* Стили для иконки аудио */
.blog_left .item_wrap .audio-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	background: rgb(254 209 53);
	border-radius: 50%;
	padding: 5px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.blog_left .item_wrap .audio-icon:hover {
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(254, 209, 53, 0.4);
}

.blog_left .item_wrap .audio-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

/* Подсказка для иконки аудио */
.blog_left .item_wrap .audio-icon::before {
	content: "Доступно в подкасте";
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 8px;
	background: #fed135;
	color: #0f1b32;
	padding: 2px 8px;
	border-radius: 4px;
	box-shadow: 0 0 15px 0 rgba(7, 16, 39, 0.4);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 10;
}

.blog_left .item_wrap .audio-icon::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 2px;
	border: 4px solid transparent;
	border-top-color: #fed135;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 10;
}

.blog_left .item_wrap .audio-icon:hover::before,
.blog_left .item_wrap .audio-icon:hover::after {
	opacity: 1;
	visibility: visible;
}

.category-section {
	margin: 40px 0;
}
.category-title {
	font-size: 28px;
	font-weight: 700;
	color: #40f3f7;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #40f3f7;
}
.section-title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin: 40px 0 20px 0;
	text-align: center;
}
.load-more-btn {
	display: block;
	width: 200px;
	margin: 30px auto 0;
	padding: 12px 24px;
	background: #3d4e73;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}
.load-more-btn:hover {
	background: #40f3f7;
	color: #0f1b32;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(64, 243, 247, 0.3);
}
.load-more-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Стили для архивной страницы авторов */
.authors-archive-container {
	padding: 20px 0;
}

.authors-archive-header {
	margin-bottom: 40px;
}

.archive-title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.archive-description {
	color: #babbbf;
	font-size: 16px;
	line-height: 1.5;
}

.authors-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

/* Стили для карточек авторов */
.author-card {
	width: 100%;
	height: 100%;
	background-color: #101b32;
	box-shadow: 0 0 15px 0 rgba(7, 16, 39, 0.4);
	border-radius: 6px;
	overflow: hidden;
	transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1), background-color 0.2s cubic-bezier(.4,0,.2,1);
	position: relative;
}

.author-card:hover {
	background-color: #192844;
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px 0 rgba(64,243,247,0.18), 0 0 15px 0 rgba(7, 16, 39, 0.4);
}

.author-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	width: calc(33% - 15px);
}

.author-card-content {
	padding: 20px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.author-card-avatar {
	text-align: center;
	margin-bottom: 10px;
}

.author-card-avatar img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 8px solid rgba(255, 255, 255, 0.1);
}
.author-card-avatar svg{
	width: 100px;
	height: 100px;
	fill: rgba(255, 255, 255, 0.1);
}

.author-card-info {
	text-align: center;
}

.author-card-name {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.3;
}

.author-card-position {
	display: inline-block;
	font-size: 14px;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
	margin-bottom: 10px;
}

.author-card-bio {
	font-size: 14px;
	line-height: 1.5;
	color: #babbbf;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.author-card-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.author-card-posts-count {
	font-size: 12px;
	font-weight: 400;
	color: #babbbf;
}

.no-authors {
	text-align: center;
	padding: 60px 20px;
	color: #babbbf;
	font-size: 16px;
}

/* Адаптивность для карточек авторов */
@media (max-width: 1024px) {
	.author-card-link {
		width: calc(50% - 10px);
	}
	.authors-grid {
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.author-card-link {
		width: 100%;
	}
	.authors-grid {
		gap: 15px;
	}
	
	.archive-title {
		font-size: 28px;
	}
	
	.author-card-content {
		padding: 20px;
	}
	
	.author-card-avatar img {
		width: 100px;
		height: 100px;
	}
	
	.author-card-name {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.authors-grid {
		gap: 15px;
	}
	
	.archive-title {
		font-size: 24px;
	}
	
	.archive-description {
		font-size: 14px;
	}
	
	.author-card-content {
		padding: 18px;
	}
	
	.author-card-avatar img {
		width: 80px;
		height: 80px;
	}
	
	.author-card-name {
		font-size: 16px;
	}
	
	.author-card-bio {
		font-size: 13px;
	}
}

/* Стили для блока автора в конце записей */
.author-single-block {
	background: #ebf0fc;
	border-radius: .625rem;
	padding: 25px;
	margin: 40px 0 -20px 0;
}

.author-single-content {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.author-single-avatar {
	flex-shrink: 0;
}

.author-single-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 8px solid #dee5f6;
}

.author-single-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.author-single-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.author-single-name {
	margin: 0px!important;
	font-size: 18px;
	font-weight: 700;
	color: #1f3057;
}

.author-single-name a {
	color: #1f3057!important;
	text-decoration: none;
	transition: color 0.3s ease;
}

.author-single-name a:hover {
	color: #1f3057!important;
}

.author-single-position {
	display: inline-block;
	font-size: 12px;
	font-weight: 400;
	padding: 2px 8px;
	border-radius: 4px;
	background-color:  #dee5f6;
	color: #00000078;
	align-self: flex-start;
}

.author-single-bio {
	font-size: 14px;
	line-height: 1.5;
	color: #00000078;
}

.author-single-stats {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-top: 5px;
}

.author-single-posts-count {
	font-size: 12px;
	font-weight: 400;
	color: #00000078;
}

.author-single-link {
	background: #dee5f6;
	font-size: 12px;
	font-weight: 600;
	color: #00000078!important;
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.author-single-link:hover {
	background: #fcb900;
	color: #0f1b32;
	transform: translateY(-2px);
}

/* Адаптивность для блока автора */
@media (max-width: 1024px) {
	.author-single-block {
		padding: 22px;
		margin: 35px 0;
	}
	
	.author-single-content {
		gap: 18px;
	}
	
	.author-single-avatar img {
		width: 75px;
		height: 75px;
		border: 6px solid #dee5f6;
	}
	
	.author-single-name {
		font-size: 17px;
	}
	
	.author-single-bio {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.author-single-block {
		padding: 20px;
		margin: 30px 0;
		border-radius: .5rem;
	}
	
	.author-single-content {
		gap: 15px;
	}
	
	.author-single-avatar img {
		width: 70px;
		height: 70px;
		border: 5px solid #dee5f6;
	}
	
	.author-single-name {
		font-size: 16px;
	}
	
	.author-single-bio {
		font-size: 13px;
	}
	
	.author-single-stats {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.author-single-link {
		font-size: 11px;
		padding: 3px 10px;
	}
}

@media (max-width: 480px) {
	.author-single-block {
		padding: 18px;
		margin: 25px 0;
		border-radius: .4rem;
	}
	
	.author-single-content {
		align-items: center;
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	.author-single-info{
		align-items: center;
	}
	
	.author-single-avatar img {
		width: 60px;
		height: 60px;
		border: 4px solid #dee5f6;
	}
	
	.author-single-name {
		font-size: 15px;
	}
	
	.author-single-position {
		font-size: 11px;
		padding: 1px 6px;
	}
	
	.author-single-bio {
		font-size: 12px;
	}
	
	.author-single-stats {
		flex-direction: row;
		justify-content: center;
		gap: 15px;
	}
	
	.author-single-posts-count {
		font-size: 11px;
	}
	
	.author-single-link {
		font-size: 10px;
		padding: 2px 8px;
	}
}

/* Адаптивность контейнера */
@media (max-width: 768px) {
	.container.searchPage {
			padding: 0 15px;
	}
	.blog_bg {
			padding: 15px;
	}
}

@media (max-width: 480px) {
	.container.searchPage {
			padding: 0 10px;
	}
	.blog_bg {
			padding: 10px;
	}
	.b_l_banner_mid {
			margin: 20px 0;
	}
	.b_l_banner_mid img {
			max-width: 100%;
			height: auto;
	}
}
