
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700;900&family=Roboto:wght@400;500;700&display=swap');
:root { --text: #111; --accent: #0d9488; --border: #000; }
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--text); background: #fff; }
h1, h2, h3, .logo { font-family: 'Merriweather', serif; }
a { text-decoration: none; color: var(--text); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; border-left: 1px solid var(--border); border-right: 1px solid var(--border); min-height: 100vh; }

header { border-bottom: 4px solid var(--border); padding: 2rem 0 1rem; text-align: center; margin-bottom: 2rem; }
.logo { font-size: 3.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 1rem; }
nav { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0.5rem 0; }
nav ul { list-style: none; display: flex; justify-content: center; gap: 3rem; }
nav a { font-weight: 700; text-transform: uppercase; font-size: 0.85rem; }
nav a:hover { color: var(--accent); text-decoration: underline; }

.news-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 2rem; margin-bottom: 2rem; }
.news-main h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; }
.news-main p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.news-main img { width: 100%; border: 1px solid var(--border); margin-bottom: 1rem; }
.news-side { border-left: 1px solid var(--border); padding-left: 2rem; }
.news-side h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.side-item { border-bottom: 1px solid #ccc; padding-bottom: 1rem; margin-bottom: 1rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-item img { width: 100%; height: 200px; object-fit: cover; border: 1px solid var(--border); margin-bottom: 0.5rem; }
.grid-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

footer { border-top: 4px solid var(--border); padding: 2rem 0; margin-top: 3rem; display: flex; justify-content: space-between; }
footer ul { list-style: none; display: flex; gap: 1.5rem; }

.article-page { max-width: 800px; margin: 0 auto; padding: 2rem 0 5rem; }
.article-page h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
.article-page img { width: 100%; border: 1px solid var(--border); margin: 2rem 0; }
.article-page p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.5rem; font-family: 'Merriweather', serif; font-weight: 300; }
