
/* Wrapper styling */
.post__content {
    display: flex;
    flex-direction: column; /* Mobile-first */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Image container */
.post__author {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
    padding: 0px;
}

/* Image styling */
.media-cover-img {
    width: 100%;
    height: auto;
    max-height: 325px;
    object-fit: cover;
}

/* Content styling */
.post__content-info {
    padding: 15px;
}

.post__title a {
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    color: #222;
}

.post__title a:hover {
    color: #c59100;
}

.post__text {
    margin-top: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.post-standard .post__content .post__author img {
	margin: 0 auto;
	display: block;
	margin-bottom: 0px; 
}

 .post-standard .post__content {
    padding-left: 0px;
    padding-bottom: 0;
    margin-bottom: 0; 
}

.post-standard.has-post-thumbnail {
    padding: 0px; 
	margin-bottom: 15px;
}

/* Desktop view */
@media (min-width: 768px) {
    .post__content {
        flex-direction: row; /* side by side */
        align-items: flex-start;
    }

    .post__author {
        flex: 0 0 200px;
        max-width: 200px;
        padding: 0;
    }

    .media-cover-img {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: 325px;
        object-fit: contain; /* fill nicely on desktop */
    }

    .post__content-info {
        flex: 1;
        padding: 20px 0px 20px 0px;
    }
}


	  
@media (max-width: 480px) {
	.post-standard .post__content {
		padding-left: 0px!important;
		padding-bottom: 0;
		margin-bottom: 0; 
	}
		
	.post-standard .post__content .post__author {
		margin-right: 0px;
		float: left;
		text-align: center; 
	}

	.post-standard .post__content .post__author {
		float: none;
		margin-bottom: 0px;
		text-align: left; 
	}

	.post-standard .post__content .post__author img {
		float: left;
		margin-right: 0px; 
	}
	
	.post-standard .post__content .post__author img {
        margin: 0 auto;
        display: block;
        margin-bottom: 0px; 
	}
	
	.post-standard.has-post-thumbnail {
        padding: 0px; 
	}
	
	.post-standard.has-post-thumbnail {
		padding: 0px;
	}	
}
