.related-searches {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f8fafc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.related-searches h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-searches h2 svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #6d28d9;
}

.related-searches ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-searches li {
    margin: 0;
}

.related-searches a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: #4f46e5;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.15s ease;
}

.related-searches a:hover {
    background-color: #eef2ff;
    color: #4338ca;
}

.related-searches a svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: #8b5cf6;
}

@media (max-width: 640px) {
    .related-searches ul {
        grid-template-columns: 1fr;
    }
    
    .related-searches {
        padding: 1rem;
    }
}
