/*
Theme Name: Trend Child
Theme URI: https://rocket.arb4host.net/
Description: A professional child theme for Trend, optimized for news sites with Google 2026 standards.
Author: Antigravity AI
Author URI: https://arb4host.net/
Template: trend
Version: 1.0.0
Text Domain: trend-child
*/

/* Custom CSS for News Site Optimization 2026 */

/* 1. Core Web Vitals & Performance */
:root {
    --primary-news-color: #e63946; /* Professional Red for News */
    --secondary-news-color: #1d3557; /* Deep Blue for Authority */
    --text-main: #1a1a1a;
    --bg-accent: #f8f9fa;
}

/* 2. Modern Typography for Readability */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-main);
}

/* 3. News Grid Enhancements */
.news-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 4. Accessibility & Contrast */
a:focus {
    outline: 3px solid var(--primary-news-color);
    outline-offset: 2px;
}

/* 5. Dark Mode Refinements */
[data-theme="dark"] {
    --text-main: #f1f1f1;
    --bg-accent: #121212;
}
