/* Custom styles for ClearlyIP */

/* Override default link colors */
a {
    color: #2563eb;
}

a:hover {
    color: #1d4ed8;
}

/* Custom header styles */
header {
    border-bottom: 1px solid #e5e7eb;
}

/* Article card hover effects */
.article-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Custom button styles */
.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}