#isp-next-posts-container {
    max-width: 100%;
    overflow: hidden;
}

.isp-loaded-post {
    clear: both;
}

.isp-separator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 50px auto;
    max-width: 90%;
    padding: 0 20px;
    box-sizing: border-box;
}

.isp-sep-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.isp-sep-dot {
    font-size: 10px;
    color: #ccc;
    line-height: 1;
}

#isp-loading-indicator {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    gap: 12px;
}

.isp-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #eee;
    border-top-color: #555;
    border-radius: 50%;
    animation: isp-spin 0.7s linear infinite;
}

@keyframes isp-spin {
    to {
        transform: rotate(360deg);
    }
}

.isp-featured-img {
    margin-bottom: 20px;
}

.isp-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
