.ivoox-articles {
	display: grid!important;
    grid-template-columns: 1fr 20em;
    grid-gap: 2em;
	padding: 1em;
}
@media only screen and (max-width: 960px) {
	.ivoox-articles {
		grid-template-columns: 1fr;
		grid-gap: 2em;
		padding: 1em;
	}
}
@media only screen and (max-width: 768px) {
	.ivoox-articles {
		padding: 0;
	}
}
.ivoox-articles .ivoox-posts article {
	display: grid;
	grid-template-columns: 20em 1fr;
	background-color: white;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
	max-width: 48em;
	margin-bottom: 1em;
	align-items: center;
	border-radius: 0.5em;
    overflow: hidden;
	transition: .4s all ease;
}
.ivoox-articles .ivoox-posts article:hover {
	transform: scale(1.005);
	border: 1px solid rgba(0, 0, 0 0.15);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.post-thumbnail {
	width: auto!important;
}
img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    width: 20em!important;
	height: 16em!important;
    object-fit: cover;
}
@media only screen and (max-width: 560px) {
	img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
		height: 8em!important;
	}
}
.post-thumbnail .wp-post-image {
    display: block;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0!important;
}
.entry-header, .post-thumbnail, .entry-content, .entry-footer, .author-bio {
    margin-top: 0!important;
    margin-right: auto;
    margin-bottom: var(--global--spacing-vertical);
    margin-left: auto;
}
figcaption.wp-caption-text {
    display: none;
}
@media only screen and (max-width: 1280px) {
	.ivoox-articles .ivoox-posts article {
		display: block;
	}
	img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
		width: 100%!important;
	}
}
@media only screen and (max-width: 960px) {
	.ivoox-articles .ivoox-posts article {
		display: grid;
		grid-template-columns: 17em 1fr;
	}
}
@media only screen and (max-width: 768px) {
	.ivoox-articles .ivoox-posts article {
		display: block;
	}
}
.entry-content {
	font-size: 1rem;
    line-height: 1;
	margin-bottom: 0!important;
	padding: 2em 1em;
}
@media only screen and (max-width: 560px) {
	.entry-content {
		padding: 1.5em 1em;
	}
}
.entry-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0!important;
}
span.entry-date {
	margin-bottom: 1em!important;
	display: block;
	font-size: 0.85rem;
	max-width: 100%!important;
}
.tags {
    display: flex;
	flex-wrap: wrap;
	max-width: 80%;
}
a.entry-tags, a.entry-tags:focus {
    background: orange!important;
    padding: 0.25em 1em;
    display: block;
    border-radius: 0.5em;
    margin-right: 0.5em;
	margin-bottom: 0.5em!important;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
}
h2.entry-title {
    font-size: 1.55rem!important;
    font-weight: 600;
    overflow-wrap: break-word;
	margin-top: 0!important;
	margin-bottom: 0.5em!important;
	max-width: 100%!important;
	display: -webkit-box;
  	-webkit-line-clamp: 4;
  	-webkit-box-orient: vertical; 
  	overflow: hidden;
  	text-overflow: ellipsis;
}
h3.entry-title {
    font-size: 1rem!important;
    font-weight: 600;
    overflow-wrap: break-word;
	margin-top: 0!important;
	margin-bottom: 0.5em!important;
	margin-left: 0.5em!important;
	max-width: 100%!important;
	display: -webkit-box;
  	-webkit-line-clamp: 4;
  	-webkit-box-orient: vertical; 
  	overflow: hidden;
  	text-overflow: ellipsis;
}
.entry-title a {
	margin-bottom: 0!importan;
}
p.entry-excerpt {
	font-size: 1rem!important;
	font-weight: 400;
	margin-top: 0!important;
	margin-bottom: 1em!important;
	max-width: 100%!important;
	display: -webkit-box;
  	-webkit-line-clamp: 2;
  	-webkit-box-orient: vertical; 
  	overflow: hidden;
  	text-overflow: ellipsis;
}
span.entry-details {
	font-size: 0.85rem;
}
@media only screen and (max-width: 560px) {
	h2.entry-title {
    	font-size: 1.25rem!important;
    	margin-bottom: 0.25em!important;
	}
	p.entry-excerpt {
		font-size: 0.9rem!important;
		line-height: 1.5;
	}
}
.entry-footer {
	font-size: .8rem!important;
	margin-bottom: 0!important;
}
.ivoox-trends {
	position: sticky;
    top: 5em;
    height: fit-content;
}
.ivoox-trends .content-trend {
    display: grid;
    align-items: center;
    margin-bottom: 1em;
    border-radius: 0.25em;
    background-color: white;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 5%) 0px 6px 24px 0px, rgb(0 0 0 / 8%) 0px 0px 0px 1px;
    transition: .4s all ease;
    grid-template-columns: 5em 1fr;
}
.ivoox-trends .content-trend:hover {
	transform: scale(1.005);
	border: 1px solid rgba(0, 0, 0 0.15);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.ivoox-trends .content-trend img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    height: 4em!important;
    width: 100%!important;
}
.ivoox-trends .content-trend h2.entry-title {
    font-size: 1rem!important;
	padding: 0 1em;
    font-weight: 500;
	margin-top: 0!important;
	margin-bottom: 0.5em!important;
	width: 100%;
	display: -webkit-box;
  	-webkit-line-clamp: 2;
  	-webkit-box-orient: vertical; 
  	overflow: hidden;
  	text-overflow: ellipsis;
}
.section-title {
	color: black;
	display: block;
	padding: 0.25em 0;
	margin-bottom: 1em!important;
	width: 100%;
}
.section-title h1{
	font-size: 2.5rem;
	font-weight: 600;
	display: block;
	color: #333;
}
.section-title h2{
	font-size: 2.5rem;
	font-weight: 600;
	display: block;
	color: #333;
}
.section-title .small-caps {
	font-size: 1rem;
	font-weight: 700;
	color: #666;
	text-transform: uppercase!important;
	letter-spacing: 2px;
}
@media only screen and (max-width: 560px) {
	.section-title h1{
		font-size: 2rem;
	}
	.section-title .small-caps {
		font-size: .9rem;
	}
}
.pagination .nav-links > *, .comments-pagination .nav-links > * {
	font-size: 1rem!important;
	color: gray!important;
}
.pagination, .comments-pagination {
    border-top: 1px solid #d9d9d9!important;
    padding-top: var(--global--spacing-vertical);
    margin: var(--global--spacing-vertical) auto;
}
.navigation .nav-links > * {
    min-width: 0!important;
    min-height: 0!important;
}
.author-info {
	padding: 1em;
	margin-top: 0.5em;
	margin-bottom: 1em;
}
.author-name {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}
.author-name img {
	border-radius: 40em;
	margin-right: 1em;
	border: 1px solid #d9d9d9;
}
.author-name h1 {
	font-size: 1.5rem;
	font-weight: 600;
}
.author-description {
	font-size: 1rem;
	color: gray;
	max-width: 48em;
	margin-bottom: 1em;
}
.author-info h3 {
	font-size: 1rem;
	font-weight: 600;
	color: gray;
}