/* Related Articles Component - Full Width */
.related-articles {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.related-articles__header {
    text-align: center;
    margin-bottom: 2rem;
}

.related-articles__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-articles__subtitle {
    color: #64748b;
    font-size: 1.125rem;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.related-articles__footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.related-articles__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.related-articles__view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.related-articles__arrow {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.2s ease;
}

.related-articles__view-all:hover .related-articles__arrow {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .related-articles {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .related-articles__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-articles__title {
        font-size: 1.5rem;
    }
}
