/* General Setup */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #eef2f8 100%);
    padding: 120px 0 100px;
    border-bottom: 1px solid #eef2f6;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.nav-link {
    font-weight: 500;
    color: #555;
}
.nav-link:hover, .nav-link.active {
    color: #0d6efd;
}

/* Search Form */
.search-form input {
    height: 60px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding-left: 60px !important;
    padding-right: 140px !important;
}
.search-form input:focus {
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

/* Cards (Companies & Articles) */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    border-color: transparent;
}

.company-logo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #0d6efd, #6610f2);
}

.badge-soft-primary {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 600;
}

.article-img-top {
    height: 200px;
    object-fit: cover;
    background-color: #e9ecef;
}

/* Utilities */
.text-muted-light {
    color: #aaa;
}

.mb-6 {
    margin-bottom: 5rem;
}
