.article-load-section {
    width: 100%;
    margin-top: 22px;
}

.article-load-grid {
    position: relative;
    width: 100%;
    min-height: 240px;
}

.article-load-grid::after {
    content: "";
    display: block;
    clear: both;
}

.article-load-item {
    float: left;
    width: 33.333333%;
    padding: 14px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .28s ease, transform .28s ease;
}

.article-load-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.article-load-item.is-filtered {
    display: none;
}

.article-load-item .isotopeInner {
    height: auto;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.article-load-item .isotopeInner:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, .22);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .14);
}

.article-load-item .isotopeInner > a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.article-load-item figure.more-link {
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: #f1f5f9;
}

.article-load-item figure.more-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-load-item .isotopeContent {
    min-height: 0;
    padding: 18px 18px 20px;
    background: #fff;
}

.article-load-item .isotopeContent h3 {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    color: #0f172a;
}

.article-load-item .isotopeContent p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.article-load-actions {
    display: flex;
    justify-content: center;
    padding: 24px 0 14px;
}

.article-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 13px 26px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 18px 46px rgba(37, 99, 235, .28);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.article-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(37, 99, 235, .34);
}

.article-load-more:disabled {
    cursor: wait;
    opacity: .78;
}

.article-load-more.is-hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.article-load-more-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: articleLoadSpin .7s linear infinite;
}

.article-load-more.is-loading .article-load-more-spinner {
    display: inline-block;
}

.article-load-more.has-error {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

@keyframes articleLoadSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .article-load-item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .article-load-item {
        width: 100%;
        padding: 10px 4px;
    }

    .article-load-more {
        width: 100%;
        min-width: 0;
    }
}
