.post-content {
    background-color: #1E242D;
    border-radius:10px;
    padding:10px;
    clear:both;
    margin-top:30px;
    margin-bottom:2px;
}

.post-content img {
    max-width: 100%;
}

/* Tighten space between post body and the author line */
.post-content > :last-child {
    margin-bottom: 0 !important;
}

.post-meta {
    font-size: 0.7em;
    color:white;
}

.post-float-cover-image {
    border:1px solid #858585;
    border-radius:5px;
    overflow: hidden;
    float: left;
    margin-right:10px;
    max-width: 180px;
    max-height:150px;
    height:100%;
}

.post-cover {
    height:25vh;
    background-size: cover;
    position:relative;
    background-position: center;
    border-radius: 5px;
}

.post-cover-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    padding-top: 0;
    background-position: center;
    background-color: #1f1f1f94;
}

/* AI Summary card */
.ai-summary {
    margin-top: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(34, 40, 51, 0.9), rgba(30, 36, 45, 0.9));
    border-radius: 10px;
    overflow: hidden;
}
.ai-summary__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #c7d0d9;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-summary__header i { color: #8ab4f8; }
.ai-summary__body {
    padding: 10px;
    color: #e4e8ec;
    line-height: 1.55;
    font-size: 0.98rem;
}
.ai-summary__body p { margin: 0 0 8px; }
.ai-summary__body p:last-child { margin-bottom: 0; }

/* More from this author — compact modern */
.more-from-author { 
    margin-top: 0; 
    margin-bottom: 10px;
}
.more-from-author .mfa-label { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: .06em; 
    color: #9aa0a6; 
    margin-bottom: 2px; 
}
.more-from-author .mfa-list { 
    list-style: none; 
    margin: 0; 
    padding: 4px 0 0; 
    border-top: 1px solid rgba(255,255,255,0.06); 
}
.more-from-author .mfa-list li { 
    margin: 0; 
}
.more-from-author .mfa-list li a { 
    display: flex; 
    align-items: baseline; 
    justify-content: space-between; 
    gap: 12px; 
    padding: 3px 0; 
    color: #d9dee3; 
    text-decoration: none; 
    font-size: 0.92rem; 
    line-height: 1.3;
}
.more-from-author .mfa-list li a::before { content: none !important; display: none !important; }
.more-from-author .mfa-list li a:hover { 
    color: #ffffff; 
    text-decoration: underline; 
}
.more-from-author .mfa-list li a > span:first-child { 
    /* title */
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
    font-weight: 500; 
}
.more-from-author .mfa-list .date { 
    color: #8a8f98; 
    font-size: .78rem; 
    white-space: nowrap; 
}
@media (max-width: 640px) { 
    .more-from-author .mfa-list li a { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 2px; 
    } 
    .more-from-author .mfa-list .date { 
        font-size: .76rem; 
    } 
}