/* COMMENTS */

.comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 24px;
}

.comment-item {
    margin-bottom: 24px;
}

.comment-author {
    font-weight: 600;
    font-style: italic;
    font-size: 24px;
}

.comment-content {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    line-height: 20px;
}

.comment-item-hidden,
.comment-hidden {
    display: none !important;
}

.comments-pagination {
    display: flex;
    margin-top: 1.5rem;
}

.comments-pagination .pagination {
    margin: 0;
}

.comments-pagination .page-item {
    margin: 0 0.125rem;
}

.comments-pagination .page-item.disabled {
    display: none;
}

.comments-pagination .page-item .page-link {
    border: none;
    background-color: transparent;
    color: #4d4d51;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.comments-pagination .page-item .page-link:hover {
    background-color: #f8f9fa;
    color: #3a3a3e;
    text-decoration: none;
}

.comments-pagination .page-item .page-link:focus {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    outline: none;
}

.comments-pagination .page-item.active .page-link {
    color: #000000;
    background-color: #f8f9fa;
    font-weight: 600;
    text-decoration: underline;
}

.comments-pagination .page-item.active .page-link:hover {
    color: #000000;
    background-color: #e9ecef;
}

/* Previous/Next button styles */
.comments-pagination .page-item#prev-page .page-link,
.comments-pagination .page-item#next-page .page-link {
    font-weight: 600;
}

.comments-pagination .page-item#prev-page .page-link:hover,
.comments-pagination .page-item#next-page .page-link:hover {
    background-color: #f8f9fa;
}