/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fafafa;
    color: #111;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.main-header {
    background: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    top: 0;
    z-index: 50;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: #0a3d62;
}

.nav-menu a {
    margin-left: 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    color: #333;
}

.nav-menu a:hover {
    color: #0a3d62;
}

/* MOBILE HEADER */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: #ffffff;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 0.7rem 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

/* PRESS HERO */
.press-header {
    background: #FF9933;
    padding: 3rem 0;
    color: #fff;
    text-align: center;
}

.site-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.site-subtitle {
    opacity: 0.9;
    margin-top: 4px;
    font-size: 1rem;
}

/* ARTICLE */
.press-container {
    padding: 2rem 0 4rem;
}

.press-article h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #0a3d62;
}

.press-meta {
    margin-bottom: 1.5rem;
    color: #555;
    font-style: italic;
}

.press-article p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* HEADINGS */
.press-article h2,
.press-article h3,
.press-article h4 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #0a3d62;
    font-weight: 700;
}

/* BLOCKQUOTE */
blockquote {
    border-left: 4px solid #0a3d62;
    padding: 1rem 1.5rem;
    background: #eef3f7;
    margin: 1.5rem 0;
    font-style: italic;
    color: #333;
}

/* LISTS */
ul,
ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

ul li,
ol li {
    margin: 0.5rem 0;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

table thead {
    background: #0a3d62;
    color: #fff;
}

/* CODE BLOCK */
pre {
    background: #1e1e1e;
    color: #eaeaea;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin-top: 1rem;
}

code {
    font-family: Consolas, monospace;
}

/* FOOTER */
.main-footer {
    background: #138808;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h3,
.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 0.5rem 0;
}

.footer-col ul li a {
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .press-header {
        padding: 2rem 0;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .press-article h1 {
        font-size: 1.6rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Thin scrollbar */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background: #b5b5b5;
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}