.ArticleInMenu {
    background: #ffffff;
    margin-top: 20px;
    padding: 0;
}

.ArticleInMenu .ArticleList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 !important;
    margin: 0;
    list-style: none;
}

.ArticleInMenu li.row {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px !important;
    gap: 10px;
}

div.ArticleInMenu li.row + li {
    border-top: none;
    padding-top: 0;
}

.ArticleInMenu .col-lg-2 {
    width: 45% !important;
    max-width: 100%;
    min-height: auto;
    padding: 0;
    height: auto !important;
}

.ArticleInMenu .col-lg-2 img {
    width: 100% !important;
    height: 137px !important;
    object-fit: contain;
    border-radius: 6px;
    float: none;
    margin: 0;
}

.ArticleInMenu .col-lg-10 {
    width: 55% !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ArticleInMenu .Title {
    margin: 0 0 8px 0;
    order: 0;
    font-size: 15px;
    line-height: 1.5;
}

.ArticleInMenu .Title a {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.ArticleInMenu .Title a:hover {
    color: #3d91db;
}

.ArticleInMenu .Summary {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: none;
}

div.ArticleInMenu .pagination {
    display: flex;
    justify-content: center !important;
    margin-top: 30px;
    list-style: none;
}

div.ArticleInMenu li.page-item {
    margin: 3px;
    width: auto;
}

div.ArticleInMenu li.page-item a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    color: #212529;
    transition: all 0.2s;
}

div.ArticleInMenu .page-item.active .page-link {
    background: #3d91db;
    border-color: #3d91db;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .ArticleInMenu .ArticleList {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ArticleInMenu .col-lg-2 img {
        height: 180px;
    }
}

.UISocialShare .copy-link-button {
    border: 0;
    border-radius: 3px;
    background-color: #e9eef5;
    color: #334155;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    cursor: pointer;
}

.copy-link-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: rgba(33, 37, 41, .92);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    z-index: 99999;
    opacity: 0;
    transition: all .2s ease;
}

.copy-link-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}