/* =========================
   GLOBAL STYLES
========================= */
body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #111;
    line-height: 1.8;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   HEADER
========================= */
header {
    background: #fff;
    padding: 30px 20px;
    border-bottom: 5px solid #000;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

header .brand {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

header .tagline {
    font-size: 1.2rem;
    margin-top: 5px;
    color: #555;
}

/* =========================
   NAVIGATION
========================= */
.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    background: #f5f5f5;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    font-weight: bold;
}

/* =========================
   CONTAINER
========================= */
.container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 20px;
}

@media (max-width: 1000px) {
    .container {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MAIN ARTICLES
========================= */
.article {
    margin-bottom: 80px;
    border-bottom: 1px solid #eee;
    padding-bottom: 60px;
}

.article h1, .article h2, .article h3 {
    font-family: 'Georgia', serif;
    color: #111;
}

.article h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.article h2 {
    font-size: 2.2rem;
    margin: 20px 0 10px 0;
}

.article h3 {
    font-size: 1.6rem;
    margin: 15px 0;
}

.article p {
    font-size: 1rem;
    margin: 10px 0 20px 0;
}

/* =========================
   KICKER / CATEGORY TAGS
========================= */
.kicker {
    color: #8b0000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
    position: sticky;
    top: 150px;
}

.sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 12px;
}

/* =========================
   ADSENSE SAFE ZONE
========================= */
.ins-ad, ins.adsbygoogle {
    margin: 25px 0;
    display: block !important;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 60px 20px;
    margin-top: 80px;
}

footer a {
    color: #fff;
    margin: 0 12px;
    cursor: pointer;
}

/* =========================
   LEGAL PAGES
========================= */
.legal {
    display: none;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE ADSENSE & CONTENT
========================= */
@media (max-width: 768px) {
    header .brand { font-size: 2.5rem; }
    header .tagline { font-size: 1rem; }
    .article h1 { font-size: 2rem; }
    .article h2 { font-size: 1.8rem; }
    .article h3 { font-size: 1.4rem; }
    .sidebar { top: 100px; }
}

@media (max-width: 480px) {
    .main-nav ul li { margin: 5px; }
    .article h1 { font-size: 1.6rem; }
    .article h2 { font-size: 1.4rem; }
}