.comment {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
}

.comment__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment__author {
    font-weight: bold;
}

.comment__date {
    color: #999;
}

.comment__text {
    line-height: 1.5;
}



.article-title a {
    text-decoration: none;
    /* Remove underlines */
    color: inherit;
    /* Inherit text color from parent element */
}

/* Style visited links */
.article-title a:visited {
    color: inherit;
}

/* Style hovered links */
.article-title a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .comment__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .comment__text {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .article-title {
        font-size: 1.5rem;
    }
}