.more-posts-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.more-post-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    border-bottom: 0.5px solid rgba(0,0,0,0.1) !important;
    color: inherit;
    padding: .6rem 0;
}

.more-post-row:last-child {
    border-bottom: none !important;
}

.more-post-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    transition: transform 0.25s ease;
    background-color: #ddd;
}

.more-post-row:hover .more-post-thumb {
    transform: scale(1.04);
}

.more-post-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.more-post-title {
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.3;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.more-post-date {
    font-size: .65rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
