#chd-show-more-button {
    background: var(--color-accent);
    color: var(--color-text-inverse);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    min-height: 5rem;
    transition: all 0.25s ease;
    margin: 1rem auto 0;
    width: fit-content;
    cursor: pointer;
}

#chd-show-more-button:hover {
    opacity: 0.8;
    background: var(--color-accent);
}

#chd-show-more-button.loading {
    opacity: 0.7;
    cursor: progress;
}

#chd-show-more-button.loading::after {
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    margin-left: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: show-more-spin 0.8s linear infinite;
}

@keyframes show-more-spin {
    to {
        transform: rotate(360deg);
    }
}
