.lbi_single_article_infos {
    display: flex;
    gap: 20px;
    color: rgba(9,19,55,0.36);
    font-weight: 700;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lbi_single_article_cat a {
    padding: 8px 20px;
    border-radius: 50px;
    background-color: #ffeb00;
    color: rgba(9,19,55,0.36);
    width: max-content;
}

.lbi_single_article_infos_box {
    display: flex;
    gap: 20px;
}

.lbi_single_article_share_list_copy {
    cursor: pointer;
    position: relative;
}

.lbi_single_article_share_list_copy .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.lbi_single_article_share_list_copy .tooltiptext {
    font-size: 12px;
    visibility: hidden;
    width: 88px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltiptext.show {
    visibility: visible;
    opacity: 1;
}

.lbi_single_article_share_list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lbi_single_article_share_list_svg_fb, .lbi_single_article_share_list_svg_copy {
    margin-bottom: 3px;
}

.lbi_single_article_content {
    margin-bottom: 50px;
}

.lbi_single_article_content figure {
    margin-left: 0px;
    margin-right: 0px;
}
.lbi_single_article_content h2 {
    margin-top: 30px;
}

.lbi_related_articles {
    margin-top: 75px;
}

.lbi_related_articles h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 35px;
    border-left: 4px solid #ffeb00;
    padding-left: 0.5rem;
    color: #0a1236;
}

.lbi_related_articles_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lbi_related_article {
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.lbi_related_article img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.lbi_related_article_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lbi_related_article_content h3 {
    font-size: 1rem;
    margin: 13px 0 10px;
    line-height: 1;
}

.lbi_related_article_content h3 a {
    text-decoration: none;
    color: #0a1236;
}

.lbi_related_article_lire a {
    padding-bottom: 6px;
    padding-top: 6px;
    padding-left: 15px;
    padding-right: 10px;
    font-size: 0.8em;
    width: max-content;
}

.lbi_related_article_meta {
    font-size: 0.8em;
    color: rgba(9,19,55,0.36);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .lbi_related_articles_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .lbi_related_articles_list {
        grid-template-columns: 1fr;
    }
}
