:root {
    --primary: #0f172a;
    --brand-blue: #1e3a8a;
    --accent: #f97316;
    --bg: #f8fafc;
    --text: #1e293b;
    --muted: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* { box-sizing: border-box; }

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    margin: 0; 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo { font-family: 'Outfit', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
header { 
    background: var(--white); 
    padding: 15px 0; 
    border-bottom: 1px solid #e2e8f0; 
    position: sticky; 
    top: 0; 
    z-index: 100;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.nav-content { display: flex; align-items: center; justify-content: space-between; }

.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { height: 32px; transition: transform 0.3s ease; }
.logo-wrap:hover .logo-icon { transform: rotate(-5deg) scale(1.05); }
.logo { font-size: 20px; font-weight: 800; color: var(--brand-blue); }
.logo span { color: var(--accent); }

.main-nav { display: flex; gap: 25px; }
.main-nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.main-nav a:hover { color: var(--brand-blue); }

/* Hero Section */
.hero { padding: 60px 0; background: linear-gradient(to bottom, #ffffff, var(--bg)); }
.hero-card { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    background: var(--white); 
    border-radius: 30px; 
    overflow: hidden; 
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.hero-card:hover { transform: translateY(-8px); }
.hero-image { width: 100%; height: 450px; object-fit: cover; }
.hero-content { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.badge { background: var(--accent); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; align-self: flex-start; margin-bottom: 15px; text-transform: uppercase; }
.badge-small { background: var(--brand-blue); color: white; padding: 2px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; display: inline-block; margin-bottom: 10px; text-transform: uppercase; }
.hero-title { font-size: 2.5rem; line-height: 1.1; margin: 0 0 20px 0; color: var(--primary); }
.hero-excerpt { color: var(--muted); font-size: 1.1rem; margin-bottom: 25px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; 
    line-clamp: 3;
    overflow: hidden; 
}

/* Grid */
.section-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
.section-title::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-bottom: 60px; }
.card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); transition: all 0.3s ease; text-decoration: none; color: inherit; border: 1px solid transparent; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #e2e8f0; }
.card-img-wrap { position: relative; height: 220px; overflow: hidden; }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover img { transform: scale(1.05); }
.card-content { padding: 25px; }
.card-date { color: var(--muted); font-size: 0.85rem; margin-bottom: 10px; font-weight: 600; }
.card-title { font-size: 1.3rem; font-weight: 800; line-height: 1.3; margin: 0; color: var(--primary); transition: color 0.2s; }
.card:hover .card-title { color: var(--brand-blue); }

/* Newsletter Section Removed */

/* Footer */
footer { background: #0f172a; color: white; padding: 80px 0 40px 0; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-size: 28px; font-weight: 800; color: white; text-decoration: none; margin-bottom: 20px; display: block; }
.footer-logo span { color: var(--accent); }
.footer-text { color: #94a3b8; font-size: 1rem; line-height: 1.8; }
.footer-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 40px; text-align: center; color: #64748b; font-size: 0.9rem; }

@media (max-width: 900px) {
    .hero-card { grid-template-columns: 1fr; }
    .hero-image { height: 300px; }
    .hero-content { padding: 30px; }
    .hero-title { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-nav { display: none; }
}
