.single-post .author-container{
display: flex;
align-items: center;
gap: 24px;
border-radius: 16px;
background-color: white;
margin-top: 64px;
padding: 12px;
}
.single-post .author-container .author-image{
margin: 24px;
min-width: 120px;
max-width: 120px;
height: 120px;
background-color: rgba(0, 0, 0, 0.28);
border-radius: 50%;
overflow: hidden;
}
.single-post .author-container .author-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.single-post .author-container .author-content{
display: flex;
flex-direction: column;
margin-left: -24px;
}
.single-post .author-container .author-label{
font-size: .8em;
font-weight: 300;
}
.single-post .author-container .author-name{
color: #2f2b2a;
padding-left: 6px;
font-weight: 800;
font-size: 1.3em;
border-left: 6px solid var(--ast-global-color-0);
border-bottom-left-radius: 16px;
}
.single-post .author-container .author-bio{
padding-left: 24px;
}
.author-image {
width: 120px;
height: 120px;
border-radius: 50%;
overflow: hidden;
margin-right: 20px;
}
.author-avatar {
width: 100%;
height: 100%;
object-fit: cover;
} .latest-posts-container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 48px 0;
background-color: var(--ast-global-color-5);
padding: 20px;
}
.latest-posts-header{
color: #2f2b2a !important;
font-size: 30px;
margin: 16px 0 24px 0 !important;
text-align: center;
font-weight: 600 !important;
}
.latest-posts-list{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-auto-rows: max-content;
list-style-type: none;
grid-gap: 20px;
margin: 0;
}
.latest-post-item{
display: flex;
justify-content: space-between;
flex-direction: column;
background-color: #fff;
border-radius: 16px;
padding: 24px;
}
.latest-post-thumbnail img{
height: 200px !important;
object-fit: cover;
}
.latest-post-thumbnail a{
display: flex;
}
.latest-post-title{
margin: 24px 0 6px 0 !important;
font-size: 20px !important;
line-height: 1.15 !important;
font-weight: 500 !important;
color: var(--ast-global-color-0) !important;
}
.latest-post-date{
font-size: 14px;
font-weight: 200;
}
.latest-post-excerpt{
overflow: hidden;
display: -webkit-box;
line-clamp: 4;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
.latest-post-read-more{
display: block;
margin-left: auto;
text-align: right;
font-weight: 500;
background-color: #fef2f0;
color: #e65644;
text-align: center;
padding: 8px 16px;
border-radius: 8px;
}
.blog-button-container{
margin-top: 24px;
text-align: right;
font-weight: 500;
background-color: #fef2f0;
color: #e65644;
text-align: center;
padding: 8px 16px;
border-radius: 8px;
}
.latest-post-read-more:hover{
color: var(--ast-global-color-1);
}
@media screen and (max-width: 1279px) {
.latest-posts-list {
grid-template-columns: 1fr 1fr;
}
.latest-post-item{
max-width: 370px;
}
.latest-posts-list > .latest-post-item:nth-child(3) {
grid-column: 1 / span 2;
justify-self: center; }
}
@media screen and (max-width: 600px) { .single-post .author-container{
flex-direction: column;
justify-content: center;
align-items: center;
}
.single-post .author-container .author-image{
margin: 6px;
}
.single-post .author-container .author-content{
margin: 0;
}
.single-post .author-content{
align-items: center;
}
.single-post .author-container .author-bio{
padding: 6px;
text-align: center;
} .latest-posts-list {
grid-template-columns: 1fr; 
justify-items: center;
}
.latest-posts-header{
font-size: 24px;
}
.latest-post-thumbnail img{
width: 100%;
}
.latest-post-item{
max-width: 350px;
width: 100%;
}
.latest-posts-list > .latest-post-item:nth-child(3) {
grid-column: 1 / span 1; justify-self: center; }
}