.blog-item__info div a{
    color: #9549f5;
}

.related-articles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.related-article-card {
    flex: 1 1 calc(33.333% - 16px);
    background: #1c1c1e;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    color: #fff !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none !important;
    transition: transform 0.3s, box-shadow 0.3s;
}
.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
.related-article-img-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
}
.related-article-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-article-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.related-article-title {
    font-family: "Rubik-Semibold", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .related-article-card {
        flex: 1 1 100%;
    }
}

/* Return back icon */
.return-back {
    margin-right: 12px;
}

/* Pagination styles */
.blog-navigation {
    width: 100%;
}
.button.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}
.current-page {
    background: transparent;
    width: 55px;
    color: #fff;
    text-align: center;
}
.arrow-wrapper.disabled {
    opacity: 0.4;
    pointer-events: none;
}
.arrow-prev.disabled, .arrow-next.disabled {
    cursor: default;
}