/*
Theme Name: EmekliDunyasi
Author: Gemini
Description: Emekliler için özel, okunaklı ve hızlı haber teması.
Version: 1.1
*/

:root {
    --primary: #dc2626; /* Kırmızı */
    --dark: #111827;
    --light: #f3f4f6;
    --text: #374151;
}

* { box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

/* Basit Grid Yapısı */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

/* Header */
header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.05); padding: 1rem 0; }
.site-header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: var(--dark); text-transform: uppercase; }
.logo span { color: var(--primary); }

/* Navigasyon */
.main-menu ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.main-menu a { text-decoration: none; color: var(--dark); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.main-menu a:hover { color: var(--primary); }

/* Kartlar */
.news-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: 0.3s; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.news-img { height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-content { padding: 20px; }
.news-cat { color: var(--primary); font-size: 0.8rem; font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 5px; }
.news-title { margin: 0 0 10px 0; font-size: 1.25rem; }
.news-title a { text-decoration: none; color: var(--dark); }
.news-title a:hover { color: var(--primary); }

/* Footer */
footer { background: var(--dark); color: #9ca3af; padding: 40px 0; text-align: center; margin-top: 50px; }