/* Reusable Related Articles Component */
/* Used across homepage, tools, learn, and other pages */

.related-articles-block {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.related-articles-block h2 {
    margin-top: 0;
    color: #1B2845;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.related-articles-block > p {
    color: #718096;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.related-articles-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles-block li {
    margin-bottom: 1rem;
}

.related-articles-block li:last-child {
    margin-bottom: 0;
}

.related-articles-block a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.related-articles-block a:hover {
    color: #6D28D9;
}

.related-articles-block span {
    color: #718096;
    font-size: 0.9rem;
    display: block;
    line-height: 1.5;
}
