:root {
    --primary: #c41e3a;
    --secondary: #8b1538;
    --accent: #e63946;
    --bg: #ffffff;
    --text: #1a1a1a;
    --text-light: #666;
    --border: #e0e0e0;
    --header-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

.header {
    background: var(--header-bg);
    color: white;
}

.header-top {
    background: #0f0f0f;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
}

.header-main {
    padding: 1.5rem 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section {
    flex: 1;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.nav-item {
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover,
.nav-item.active {
    background: var(--primary);
}

.main-content {
    padding: 2rem 0;
}

.breaking-news {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breaking-badge {
    background: var(--accent);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.breaking-news h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.breaking-news p {
    font-size: 0.95rem;
    opacity: 0.95;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.article-featured {
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 2rem;
}

.article-featured img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.article-content h2,
.article-content h3 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.article-content h2 {
    font-size: 2rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.4rem;
    line-height: 1.3;
}

.article-content h2 a,
.article-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.article-content h2 a:hover,
.article-content h3 a:hover {
    color: var(--primary);
}

.article-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--secondary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.sidebar-widget h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.headlines-list {
    list-style: none;
}

.headlines-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.headlines-list li:last-child {
    border-bottom: none;
}

.headlines-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.headlines-list a:hover {
    color: var(--primary);
}

.weather-widget {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.weather-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.weather-day:last-child {
    border-bottom: none;
}

.weather-day .day {
    font-weight: 600;
}

.weather-day .temp {
    font-weight: 700;
    color: var(--primary);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.subscribe-form input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.subscribe-form button {
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: var(--secondary);
}

.footer {
    background: var(--header-bg);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Merriweather', serif;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-wrap: wrap;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-item {
        flex: 1;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 640px) {
    .logo {
        font-size: 1.75rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}





/* Poison samples gallery */
.poison-gallery{margin:3rem 0}
.poison-gallery .poison-wrap{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.25rem}
.poison-gallery figure{margin:0;padding:0}
.poison-gallery img{width:100%;height:auto;display:block;border-radius:12px}
.poison-gallery figcaption{margin-top:.6rem;line-height:1.5;opacity:.95}
.poison-gallery .poison-meta{font-size:.9rem;opacity:.8}

.poison-gallery .poison-title{margin:0 0 .4rem;font-size:1.6rem;line-height:1.2}
.poison-gallery .poison-intro{margin:0 0 1.25rem;opacity:.9;max-width:70ch}
