.gutenberg-blog .article {
	background-color: #EFFAF9;
	height: 100%;
	position: relative;
	/*Button*/
	padding-bottom: calc(3rem + 61px + 40px);
}
.gutenberg-blog .article .badge {
	border-radius: 16px;
    margin: 0 0.3rem 0.3rem 0;
}

.gutenberg-blog .article .badge.badge-primary {
	background-color: #22bcad;
	color: white;
	--pocket--light__text--color: white;
}
.gutenberg-blog .article .blog-link {
	display: block;	
    width: 100%;
	aspect-ratio: 16/9;
}
.gutenberg-blog .article .blog-link img {
    width: 100%;
	height: 100%;
}
.gutenberg-blog .article > .gutenberg-button {
	position: absolute !important;
	bottom: 40px;
	right: 0;
}
.gutenberg-blog .article a:after {
	content: none !important;	
}
.gutenberg-blog .article > *:not(.blog-link) {
	padding: 1rem 40px;
	margin: 0;
}
.gutenberg-blog .article .duration i {
	margin-right: 10px;
}
.gutenberg-blog .article .blog-head {
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.gutenberg-blog .article .blog-author img {
	border-radius: 50%;
	width: 60px;
	height: 60px;
    object-fit: cover;
}
.gutenberg-blog .article .blog-link img {
	max-height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: center;
}
.gutenberg-blog .loader > span {
	background-image: url(/wp-content/uploads/2023/03/lerncenter_icon_var_e.svg);
    background-size: contain;
    width: 32px;
    height: 32px;
    display: block;
	animation: blog_loading 2s linear infinite;
}
.gutenberg-blog .loader {
	opacity: 0;
	height: 61px;
	display: flex;
    align-items: center;
}
@keyframes blog_loading { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
@media(max-width: 991px) {
	.gutenberg-blog .article p {
		display: none;
	}
}
@media(max-width: 767px) {
	.gutenberg-blog .article .blog-author img {
		width: 30px;
		height: 30px;
	}
	.gutenberg-blog .article > *:not(.blog-link) {
		padding: .5rem 20px;
	}
}