
:root {
  --blue: #003366;
  --red: #CC0000;
  --green: #007A33;
  --yellow: #FFD700;
  --bg: #F5F5F5;
  --text: #222222;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
}

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

header {
  border-bottom: 4px solid var(--blue);
  background: white;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 48px; }
.logo span { font-weight: 800; font-size: 1.4rem; color: var(--blue); }
.tagline { font-size: .9rem; color: #555; }

nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 14px; flex-wrap: wrap; }
nav a { text-decoration: none; color: #333; font-weight: 600; padding: 8px 10px; border-radius: 6px; }
nav a:hover { background: var(--bg); }
.nav-wrap { display:flex; align-items:center; gap:16px; }
.menu-btn { display:none; border:1px solid #ddd; background:#fff; padding:6px 10px; border-radius:6px; }

.hero {
  display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin: 20px 0;
}
.hero .main img { width: 100%; border-radius: 8px; }
.hero .main h1 { margin: 10px 0 6px; font-size: 1.8rem; color: var(--blue); }
.hero .main p { margin: 0; }
.hero .side { border-left: 4px solid var(--red); padding-left: 16px; }
.breaking-title { color: var(--red); font-weight: 800; margin:0 0 8px; }

.section { margin: 28px 0; }
.section h2 { display:flex; align-items:center; gap:10px; font-size: 1.3rem; }
.section h2::before { content:''; display:inline-block; width:8px; height:22px; background: var(--green); border-radius:2px; }

.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { border:1px solid #eee; border-radius:8px; overflow:hidden; background:#fff; }
.card img { width:100%; height: 160px; object-fit: cover; }
.card .padded { padding: 12px; }
.card h3 { margin: 8px 0; font-size: 1rem; }
.card a { color: var(--blue); text-decoration: none; }
.card a:hover { text-decoration: underline; }

.multimedia { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.mm { border:1px dashed #ccc; border-radius:8px; padding:16px; background: var(--bg); }
.mm h4 { margin:0 0 8px; }

.newsletter { background: var(--bg); padding: 20px; border-radius: 8px; border:1px solid #eee; }
.newsletter input[type="email"] { width: 100%; padding: 12px; border:1px solid #ddd; border-radius: 6px; margin: 8px 0; }
.newsletter button { background: var(--blue); color:white; border:0; padding: 10px 14px; border-radius: 6px; font-weight:700; }
.newsletter button:hover { filter: brightness(.95); }

footer {
  margin-top: 32px;
  background: #111;
  color: #ddd;
}
footer .container { padding: 22px 16px; }
footer a { color: #fff; text-decoration: none; }
.footer-links { display:flex; gap: 20px; flex-wrap:wrap; }
.copy { border-top:1px solid #333; padding-top: 12px; margin-top:12px; font-size: .9rem; color:#aaa; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .multimedia { grid-template-columns: 1fr; }
  .menu-btn { display:inline-block; }
  nav ul { display:none; flex-direction: column; gap: 8px; background:white; border:1px solid #eee; padding:12px; position:absolute; right:16px; top:64px; border-radius:8px; }
  nav ul.open { display:flex; }
}
