/*
Theme Name: Custom News Theme
Theme URI:  https://example.com/custom-news-theme
Author:      Your Name
Author URI:  https://example.com
Description: Clean, fast news/discovery theme with card feed and featured sections.
Version:     1.0
License:     GNU General Public License v2 or later
Text Domain: custom-news-theme
Tags: news, magazine, blog, responsive, grid, masonry
*/

:root{
  --max-width:1200px;
  --accent:#1e73be;
  --muted:#6b6b6b;
  --card-bg:#fff;
}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#222; background:#fafafa; margin:0;}
.container{max-width:var(--max-width);margin:0 auto;padding:20px;}
.header{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.site-title{font-weight:700;font-size:20px}
.search-bar input{padding:8px 12px;border:1px solid #e5e5e5;border-radius:6px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media(max-width:1000px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.grid{grid-template-columns:1fr}}
.card{background:var(--card-bg);border-radius:10px;overflow:hidden;box-shadow:0 6px 18px rgba(20,20,20,0.06)}
.card .thumb{height:180px;object-fit:cover;width:100%}
.card .meta{padding:12px}
.card .meta h3{margin:0 0 8px;font-size:18px}
.card .meta p{color:var(--muted);font-size:14px;margin:0}
.featured{display:grid;grid-template-columns:2fr 1fr;gap:18px;margin-bottom:18px}
@media(max-width:800px){.featured{grid-template-columns:1fr}}
.footer{padding:24px 0;color:#777;border-top:1px solid #eee;margin-top:30px}

/* Minimal accessibility focus styles */
a:focus{outline:3px solid rgba(30,115,190,0.12);outline-offset:2px}
