/* Верхний блок с автором и датой для постов */
.post-header {
    display: flex;
    justify-content: space-between;
    /* имя слева, дата справа */
    align-items: center;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0);
    /* полностью прозрачный */
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.post-header a {
    text-decoration: none;
    color: #007bff;
}

.post-header a:hover {
    text-decoration: underline;
}