/* SEO Slider CSS */

.seo-slider-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 8px;
    font-family: 'Quicksand', Arial, sans-serif;
}

.seo-slider-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.seo-slider-title {
    font-size: 2rem;
    color: #4877BD;
    font-weight: bold;
    font-family: 'Quicksand', Arial, sans-serif;
}

.seo-slider-buttons button {
    background: #e7f0fa;
    border: none;
    padding: 8px 14px;
    border-radius: 50%;
    margin: 0 2px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s;
    color: #4877BD;
}

.seo-slider-buttons button:hover {
    background: #bad2f5;
}

.seo-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.seo-slider-container::-webkit-scrollbar { 
    display: none; 
}

.seo-slider-card {
    flex: 0 0 350px;
    max-width: 92vw;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 14px rgba(72,119,189,0.10);
    border: 1px solid #e4eaf5;
    padding: 30px 22px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-slider-card .icon {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.seo-slider-card h3 {
    color: #4877BD;
    font-weight: 700;
    font-size: 1.17rem;
    margin-bottom: 4px;
    font-family: 'Quicksand', Arial, sans-serif;
}

.seo-slider-card p {
    font-size: 0.99rem;
    color: #000000;
    margin-bottom: 0;
    font-family: 'Quicksand', Arial, sans-serif;
    font-weight: 500;
}

.seo-slider-card a {
    color: #4877BD;
    text-decoration: underline;
    word-break: break-all;
}

@media (max-width: 600px) {
    .seo-slider-card {
        flex: 0 0 88vw;
        padding: 20px 10px;
    }
    
    .seo-slider-title {
        font-size: 1.2rem;
    }
}