.single-author-upper {
    background-color: #7bd7d6;
    border-radius: 8px;
    padding: 2rem 4rem;
}
.author-page-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid #fff;
    padding: 5px;
}
.author-page-info-upper {
    display: flex;
    align-items: center;
	gap: 8px;
}
.author-page-info-upper h1 {
	color: #fff;
    font-size: 30px;
    line-height: 30px;
	font-weight: 700;
}
.author-verified::after {
	color: #fff;
	top: -16px;
	right: -12px;
}
.author-page-info-upper p {
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
	margin-bottom: 0;
	color: #fff;
}
.author-page-info-about p {
    font-size: 16px;
    line-height: 25.6px;
    color: #222;
	font-weight: 500;
}
.single-author-follow-on h2 {
    font-size: 28px;
    color: #fff;
}
.single-author-follow-on ul {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}
.single-author-follow-on ul li a {
	background-color: #1C3532;
	color: #fff;
	border-radius: 5px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease-in-out;
	border: 2px solid #1C3532;
	font-size: 18px;
}
.single-author-follow-on ul li a:hover {
	background-color: transparent;
	color: #1C3532;
}
.author-heading-design {
    border-bottom: 3px solid #1C3532;
}
.author-heading-design span {
	background-color: #1C3532;
    color: #fff;
    line-height: 1;
    padding: 8px 1rem 5px;
    display: inline-block;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-transform: uppercase;
}
.author-page-posts-main {
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    margin: 24px 0;
}
.author-page-posts-img img {
	border-radius: 5px;
}
.author-page-posts-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
	padding: 8px 1rem 8px 0;
}
.author-page-posts-title h2 {
	font-size: 22px;
	line-height: 25px;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.author-page-posts-title a {
    color: #222;
    text-decoration: none;
	text-decoration-color: var(--link-color);
}
.author-page-posts-title a:hover {
    text-decoration: underline;
	text-decoration-color: var(--link-color);
}
.author-page-posts-desc p {
	font-size: 16px;
    line-height: 24px;
    color: #222;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
.author-social-tweets-sidebar {
    background-color: #F3F3F3;
    padding: 1rem;
    margin-top: 24px;
    border: 1px solid #E8EAE9;
    border-radius: 5px;
}
.author-page-posts-list div.pagination {
    margin: 42px 0 0 0 !important;
}
.author-page-posts-list ul.pagination {
    margin-bottom: 0;
}
.author-page-posts-list div.pagination p {
    margin: 0 !important;
}

/* Responsiveness */
@media screen and (max-width: 1200px) {
    .author-page-info-upper h1 {
        font-size: 24px;
	}
	.author-page-info-about p {
		font-size: 15px;
	}
	.author-page-posts-title h2 {
		font-size: 18px;
		line-height: 24px;
	}
	.author-page-posts-desc p {
		font-size: 15px;
		line-height: 20px;
	}
	.single-author-upper {
		padding: 2rem;
	}
}

@media screen and (max-width: 991px) {
	.single-author-follow-on {
		text-align: center;
	}
	.single-author-follow-on ul {
		justify-content: center;
		margin-bottom: 0;
	}
    .author-page-posts-list div.pagination {
        margin: 24px 0 24px 0 !important;
    }
}

@media screen and (max-width: 767px) {
	.author-page-info-main {
		text-align: center;
	}
	.author-page-info-upper {
		justify-content: center;
	}
}

@media screen and (max-width: 575.9px) {
    .author-page-info-upper {
      	flex-direction: column;
		margin-bottom: 1rem;
		gap: 0;
	}
	.author-page-info-upper h1 {
		margin-bottom: 0;
	}
    .author-page-info-about p {
      	text-align: center;
      	line-height: 1.5;
  	}
    .author-page-posts-img img {
      	margin-bottom: 1rem;
    }
	.author-page-posts-info {
		padding: 0 1rem 1rem 1rem;
	}
	.single-author-upper {
		padding: 1.5rem 1rem;
	}
	.single-author-follow-on ul li a {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	.author-page-posts-list div.pagination p {
		margin-bottom: 8px !important;
	}
}
/* Responsiveness Ends */