/* Newest comments overview */

.comment-newest-items {
    width: 70%;
    margin: 75px auto;
}

.comment-newest-items h2 {
    text-align: center;
    margin-bottom: 20px;
}

.comment-newest-items .item .comment {
    background-color: #f4f4f4;
    padding: 15px;
    margin: 10px 0;
    border-radius: 15px;
    color: black;
    display: flex;
    justify-content: space-between;
}

/* mobile */
@media (max-width: 768px) {
    .comment-newest-items {
        width: 90%;
    }

    .comment-newest-items .item .comment {
        flex-direction: column;
        gap: 10px;
    }

    .comment-newest-items h2 {
        font-size: 1.5rem;
    }
}