/* SEO Content Section Styles */

.seo-content-section {
    padding: 4rem 0;
    position: relative;
}

.seo-article {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.seo-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.seo-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    position: relative;
}

.seo-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
    margin-top: 1rem;
}

.seo-content {
    font-family: var(--font-body);
    color: var(--text-secondary);
}

.seo-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

.seo-content strong {
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 3rem 0;
    }
    
    .seo-article {
        padding: 2rem 1.5rem !important;
    }
    
    .seo-title {
        font-size: 1.5rem !important;
    }
    
    .seo-content {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .seo-content p {
        text-align: left;
    }
}

/* Animation */
.seo-article {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reading experience improvements */
.seo-content {
    word-spacing: 0.05em;
    letter-spacing: 0.01em;
}

.seo-content p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

/* Highlight effect for strong elements */
.seo-content strong::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-content strong:hover::before {
    opacity: 0.5;
}

