.author-page {
	color      : #111;
	font-family: Manrope, sans-serif;
}

#header .mobile_menu_icon .line {
	background: #111313;
}

#header .logo .char {
	fill: #111313;
}

.author-hero {
	padding: 164px 0 24px;
}

.author-hero__layout {
	display    : flex;
	align-items: center;
	gap        : 40px;
}

.author-hero__content {
	min-width: 0;
}

.author-hero__photo {
	flex         : 0 0 168px;
	width        : 168px;
	height       : 168px;
	padding      : 4px;
	border-radius: 50%;
	background   : radial-gradient(circle at center, #FF8200 0%, #EE1700 100%);
}

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

.author-hero__name {
	margin        : 0;
	font-family   : resolve, sans-serif;
	font-size     : 56px;
	font-weight   : 700;
	line-height   : 1.05;
	letter-spacing: 0;
	text-transform: uppercase;
}

.author-hero__first {
	color: #111;
}

.author-hero__last {
	background-image       : radial-gradient(circle at center, #FF8200 0%, #EE1700 100%);
	-webkit-background-clip: text;
	background-clip        : text;
	color                  : transparent;
	-webkit-text-fill-color: transparent;
}

.author-hero__position {
	margin     : 0;
	color      : #6D6D6D;
	font-size  : 18px;
	font-weight: 500;
	line-height: 1.4;
}

.author-hero__description {
	max-width  : 100%;
	margin-top : 10px;
	font-size  : 20px;
	font-weight: 400;
	line-height: 1.5;
}

.author-hero__description p {
	margin: 0;
}

.author-hero__socials {
	display   : flex;
	gap       : 8px;
	margin    : 20px 0 0;
	padding   : 0;
	list-style: none;
}

.author-hero__socials a {
	display    : block;
	line-height: 0;
}

.author-hero__socials img {
	display: block;
	width  : 48px;
	height : 48px;
}

.author-posts,
.author-subjects {
	padding: 48px 0 16px;
}

.author-posts__grid {
	row-gap: 2rem;
}

.author-section__title {
	margin        : 0 0 28px;
	color         : #6D6D6D;
	font-family   : resolve, sans-serif;
	font-size     : 48px;
	font-weight   : 700;
	letter-spacing: 0;
	line-height   : 1.05;
	text-transform: uppercase;
}

.author-card__media {
	position    : relative;
	display     : block;
	overflow    : hidden;
	aspect-ratio: 9 / 7;
	background  : #ececec;
}

.author-card__media img {
	position  : absolute;
	inset     : 0;
	width     : 100%;
	height    : 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.author-card:hover .author-card__media img,
.author-card:focus-within .author-card__media img {
	transform: scale(1.08);
}

.author-card__date {
	display    : block;
	margin-top : 16px;
	color      : #6D6D6D;
	font-size  : 16px;
	font-weight: 400;
	line-height: 1.4;
}

.author-card__title {
	display        : block;
	margin         : 8px 0 0;
	color          : #111;
	font-family    : Manrope, sans-serif;
	font-size      : 24px;
	font-weight    : 500;
	line-height    : 1.3;
	text-decoration: none;
}

.author-card:hover .author-card__title,
.author-card:focus-within .author-card__title {
	background-image       : radial-gradient(circle at center, #FF8200 0%, #EE1700 100%);
	-webkit-background-clip: text;
	background-clip        : text;
	color                  : transparent;
	-webkit-text-fill-color: transparent;
}

.author-posts__more {
	display        : flex;
	justify-content: center;
	margin-top     : 48px;
}

.author-more {
	padding      : 12px 32px;
	border       : 2px solid transparent;
	border-radius: 999px;
	background   :
		linear-gradient(#fff, #fff) padding-box,
		radial-gradient(circle at center, #FF8200 0%, #EE1700 100%) border-box;
	color         : #FF8200;
	font-family   : Manrope, sans-serif;
	font-size     : 20px;
	font-weight   : 600;
	line-height   : 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor        : pointer;
}

.author-more:disabled {
	cursor : progress;
	opacity: 0.6;
}

.author-subject {
	display            : flex;
	align-items        : center;
	justify-content    : center;
	min-height         : 210px;
	margin-bottom      : 30px;
	padding            : 28px 24px;
	background-color   : #000;
	background-image   : url('../images/category-bg.jpg');
	background-position: center;
	background-size    : cover;
	text-align         : center;
	text-decoration    : none;
}

.author-subject__name {
	max-width     : 16ch;
	color         : #fff;
	font-family   : resolve, sans-serif;
	font-size     : 48px;
	font-weight   : 700;
	line-height   : 0.95;
	text-transform: uppercase;
}

.author-subject:hover .author-subject__name,
.author-subject:focus-visible .author-subject__name {
	background-image       : radial-gradient(circle at center, #FF8200 0%, #EE1700 100%);
	-webkit-background-clip: text;
	background-clip        : text;
	color                  : transparent;
	-webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
	.author-hero {
		padding-top: 86px;
	}

	.author-hero__layout {
		display              : grid;
		grid-template-columns: auto minmax(0, 1fr);
		column-gap           : 16px;
		row-gap              : 20px;
		align-items          : center;
	}

	.author-hero__content {
		display: contents;
	}

	.author-hero__photo {
		grid-column: 1;
		grid-row   : 1;
		width      : 104px;
		height     : 104px;
	}

	.author-hero__identity {
		grid-column: 2;
		grid-row   : 1;
	}

	.author-hero__description,
	.author-hero__socials {
		grid-column: 1 / -1;
		margin-top : 0;
	}

	.author-hero__name {
		font-size: 32px;
	}

	.author-hero__position {
		font-size: 16px;
	}

	.author-subject__name {
		font-size: 32px;
	}

	.author-card__title {
		font-size: 20px;
	}

	.author-hero__description {
		font-size: 16px;
	}

	.author-section__title {
		font-size: 40px;
	}

	.author-card__date {
		font-size: 14px;
	}

	.author-more {
		font-size: 20px;
	}
}