/* News Elite Portal — Public Styles */

:root {
    --ne-primary: #1a1a2e;
    --ne-accent: #e94560;
    --ne-text: #1a1a2e;
    --ne-text-muted: #6c757d;
    --ne-bg: #ffffff;
    --ne-bg-light: #f8f9fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ne-text);
    background: var(--ne-bg);
}

/* Site Title */
.ne-site-title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--ne-primary);
}

.ne-site-tagline {
    font-size: .8rem;
    color: var(--ne-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigation */
.ne-navbar {
    background: var(--ne-primary);
    padding: 0;
}

.ne-navbar .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: .875rem;
    padding: 12px 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s;
}

.ne-navbar .nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

/* Breaking News Bar */
.ne-breaking-bar {
    background: var(--ne-accent);
    color: white;
    padding: 6px 0;
    font-size: .8rem;
}

.ne-breaking-label {
    background: white;
    color: var(--ne-accent);
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: .7rem;
    margin-right: 12px;
}

/* Hero */
.ne-hero-card {
    transition: transform 0.3s;
    cursor: pointer;
}

.ne-hero-card:hover { transform: scale(1.01); }
.ne-side-card:hover { transform: scale(1.02); }
.ne-side-card { transition: transform 0.3s; cursor: pointer; }

/* Footer */
.ne-footer {
    background: var(--ne-primary);
    color: white;
    margin-top: 3rem;
}

.ne-footer-brand {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    letter-spacing: 0.1em;
    font-size: 1.3rem;
}

.ne-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.ne-social-icon:hover {
    background: var(--ne-accent);
    color: white;
    transform: translateY(-2px);
}

/* Cards */
.card { border-radius: 8px; }

/* Responsive */
@media (max-width: 768px) {
    .ne-site-title { font-size: 1.8rem; }
    .ne-hero-card { min-height: 280px !important; }
}
