.blog-template h1 {
font-size: 30px;
}
.blog-template {
display: flex;
gap: 50px;
}
.blog-template h1.archive-title {
font: 25px 'urbanist-regular', sans-serif;
}
.blog-template .blog-left-container {
width: 70%;
}
.blog-template .blog-right-container {
width: 30%;
}
.template-home {
padding: 30px 0;
}
.template-home .entry-content p img {
width: 100%;
height: 250px;
border-radius: 3px;
object-fit: cover;
object-position: center;
}
.entry-page-image,
.template-home .entry-content .wp-block-image {
height: 250px;
border-radius: 3px;
overflow: hidden;
}
.entry-page-image img,
.template-home .entry-content .wp-block-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
} .post-entry-meta {
margin: 20px 0 20px;
font-size: 14px;
}
.entry-content {
margin-bottom: 60px;
border-bottom: 1px solid var(--link-color);
}
.entry-content .more-link {
display: block;
margin-top: 10px;
font-size: 14px;
padding: 7px;
background-color: var(--button-primary-bkg-color);
color: var(--button-primary-color);
width: 100px;
border-radius: 8px;
text-align: center;
border: 1px solid var( --btn-primary-border-color ); 
transition: all .2s ease-in;
}
.entry-content .more-link:hover {
background-color: #fff;
color: var(--link-color);
}
.author-info {
display: flex;
gap: 30px;
}
.author-info .author-avatar {
width: 80px;
height: 80px;
min-width: 80px
}
@media only screen and (max-width: 767px) {
.blog-template h1 {
font-size: 30px;
line-height: 1.4;
}
.blog-template {
display: block;
}
.blog-template .blog-left-container,
.blog-template .blog-right-container  {
width: 100%;
}
iframe {
width: 100%;
}
}