/* Custom styles for SEO Insights site */

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.card {
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.article-hero {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.article-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.article-content {
    line-height: 1.8;
}

.attribution-links {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.social-share {
    margin-top: 1.5rem;
}

.social-share a {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #6c757d;
}

.social-share a:hover {
    color: #0d6efd;
}

@media (max-width: 768px) {
    .card-img-top {
        height: 180px;
    }
    
    .article-hero {
        max-height: 300px;
    }
}