
.article-title a{
    color: #2694d9;
    font-size: 1rem;;
    font-weight: bold;
    line-height: 1;
}

.article-title a:hover{
    text-decoration: underline;
}

.meta-desc{
    margin-bottom: 0.5em;
}

.meta-desc span{
    font-size: 0.8rem;
    color:gray;
    margin-right: 6px; /* Adjust the pixels to your liking */
}

/* Optional: Remove margin from the last span so it doesn't push the container */
.meta-desc span:last-child {
    margin-right: 0;
}

.article-body p{
    text-align: justify;
}

.article-body ol{
    padding-left: 1.5em;
}


.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination__page {
    text-decoration: none;
    padding: 5px 8px;
    color: #007bff;
}

.pagination__btn{
    color: #007bff;
}

.pagination__page--current {
    font-weight: bold;
    color: white;
    background: black;
}

.pagination__btn--disabled {
    color: #ccc;
    cursor: not-allowed;
}