/* ============================================================
   MOLOTOV MOUTHPIECE — Main Stylesheet
   Anti-establishment zine aesthetic: black / white / red
   ============================================================ */

/* --- Gritty Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #0a0a0a;
    color: #f2f2f2;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
input, button, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Background Noise Texture --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* --- Header / Logo --- */
.site-header {
    padding: 48px 24px 36px;
    text-align: center;
    border-bottom: 6px solid #cc0000;
    background: #0a0a0a;
    position: relative;
    z-index: 1;
}

.site-header img {
    max-width: 520px;
    width: 90%;
    margin: 0 auto;
    filter: drop-shadow(0 0 12px rgba(204, 0, 0, 0.4));
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.site-header img:hover {
    transform: rotate(0deg) scale(1.02);
    filter: drop-shadow(0 0 20px rgba(204, 0, 0, 0.7));
}

/* --- Navigation --- */
.site-nav {
    background: #cc0000;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 0 #660000, 0 6px 20px rgba(0,0,0,0.5);
}

.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-nav a {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    background: #fff;
    color: #cc0000;
    transform: translateY(-1px);
}

.site-nav a.nav-login {
    background: rgba(0,0,0,0.25);
    border-radius: 4px;
    margin-left: 8px;
}

.site-nav a.nav-login:hover {
    background: #0a0a0a;
    color: #fff;
}

/* --- Nav Search Form --- */
.nav-search {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 8px;
}

.nav-search input[type="text"] {
    background: rgba(0,0,0,0.25);
    border: none;
    border-radius: 4px 0 0 4px;
    color: #fff;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    width: 160px;
    transition: width 0.2s ease, background 0.2s ease;
    outline: none;
}

.nav-search input[type="text"]::placeholder {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.nav-search input[type="text"]:focus {
    background: rgba(0,0,0,0.4);
    width: 200px;
}

.nav-search button {
    background: rgba(0,0,0,0.35);
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    padding: 10px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.nav-search button:hover {
    background: #0a0a0a;
}

/* --- Main Content --- */
.site-main {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin: 40px auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* --- Section Titles --- */
.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 4px solid #cc0000;
    display: inline-block;
}

/* --- Article Cards (Index Grid) --- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.article-card {
    background: #f2f2f2;
    color: #0a0a0a;
    padding: 24px;
    border: 3px solid #0a0a0a;
    box-shadow: 10px 10px 0 #cc0000;
    transform: rotate(var(--card-tilt, 0.3deg));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.article-card:nth-child(odd) { --card-tilt: 0.3deg; }
.article-card:nth-child(even) { --card-tilt: -0.4deg; }

.article-card:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 14px 14px 0 #990000;
}

.article-card h2 {
    font-size: 1.6rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-card h2 a:hover {
    color: #cc0000;
}

.article-card .excerpt {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.article-card .meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    border-top: 2px solid #ccc;
    padding-top: 12px;
}

.article-card .meta span {
    margin-right: 16px;
}

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: #666;
}

.empty-state h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #cc0000;
}

.empty-state p {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
}

/* --- Article Detail Page --- */
.article-detail {
    background: #f2f2f2;
    color: #0a0a0a;
    border: 3px solid #0a0a0a;
    box-shadow: 12px 12px 0 #cc0000;
    padding: 40px;
    max-width: 800px;
}

.article-detail .article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 4px solid #0a0a0a;
}

.article-detail h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
}

.article-detail .article-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.article-detail .article-body {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-detail .article-body p { margin-bottom: 1em; }
.article-detail .article-body strong { font-weight: 900; }

/* --- Comments Section --- */
.comments-section {
    max-width: 800px;
    margin-top: 48px;
}

.comments-section h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #cc0000;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.comment-item {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: border-color 0.2s ease;
}

.comment-item:hover {
    border-color: #cc0000;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #cc0000;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #cc0000;
    margin-bottom: 4px;
}

.comment-text {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

.comment-date {
    font-size: 0.7rem;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Comment Form --- */
.comment-form {
    background: #1a1a1a;
    border: 2px dashed #cc0000;
    padding: 28px;
}

.comment-form h4 {
    color: #cc0000;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.comment-form textarea {
    width: 100%;
    min-height: 120px;
    background: #0a0a0a;
    color: #f2f2f2;
    border: 2px solid #333;
    padding: 14px;
    resize: vertical;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #cc0000;
}

.comment-form .btn-submit {
    margin-top: 12px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    font-size: 0.9rem;
}

.btn:hover {
    background: #e60000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #333;
    color: #f2f2f2;
}

.btn-secondary:hover {
    background: #555;
    box-shadow: none;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.75rem;
}

.btn-danger {
    background: #660000;
}

.btn-danger:hover {
    background: #990000;
}

/* --- Flash Messages --- */
.flash {
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid;
}

.flash-success {
    background: rgba(0, 180, 0, 0.1);
    border-color: #00b400;
    color: #66dd66;
}

.flash-error {
    background: rgba(204, 0, 0, 0.15);
    border-color: #cc0000;
    color: #ff6666;
}

.flash-info {
    background: rgba(255, 255, 255, 0.05);
    border-color: #888;
    color: #ccc;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    background: #1a1a1a;
    border: 2px solid #333;
    color: #f2f2f2;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.pagination a:hover {
    border-color: #cc0000;
    color: #cc0000;
}

.pagination .current {
    background: #cc0000;
    border-color: #cc0000;
    color: #fff;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 48px 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    border-top: 1px solid #1a1a1a;
    position: relative;
    z-index: 1;
}

/* ============================================================
   ADMIN PANEL STYLES
   Cleaner, more functional — same palette
   ============================================================ */

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 60px);
}

.admin-sidebar {
    background: #111;
    border-right: 3px solid #cc0000;
    padding: 24px 0;
}

.admin-sidebar h3 {
    color: #cc0000;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.admin-sidebar h3:first-child { margin-top: 0; }

.admin-sidebar a {
    display: block;
    padding: 10px 20px;
    color: #aaa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: #fff;
    background: rgba(204, 0, 0, 0.1);
    border-left-color: #cc0000;
}

.admin-content {
    padding: 32px;
    background: #0a0a0a;
}

/* --- Admin Tables --- */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.admin-table th {
    text-align: left;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cc0000;
    padding: 12px 16px;
    border-bottom: 2px solid #333;
}

.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.9rem;
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* --- Status Badges --- */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.badge-published { background: #00b400; color: #fff; }
.badge-draft { background: #555; color: #fff; }
.badge-review { background: #cc8800; color: #fff; }
.badge-pending { background: #6666cc; color: #fff; }
.badge-hidden { background: #cc0000; color: #fff; }
.badge-blocked { background: #333; color: #cc0000; border: 1px solid #cc0000; }

/* --- Admin Forms --- */
.admin-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
    margin-top: 20px;
}

.admin-form label:first-child { margin-top: 0; }

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form textarea,
.admin-form select {
    width: 100%;
    max-width: 600px;
    background: #1a1a1a;
    color: #f2f2f2;
    border: 2px solid #333;
    padding: 12px 14px;
    transition: border-color 0.2s ease;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: #cc0000;
}

.admin-form textarea {
    min-height: 300px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    resize: vertical;
}

.admin-form .form-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
}

/* --- Admin Stats Cards --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.stat-card {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.stat-card:hover {
    border-color: #cc0000;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #cc0000;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-top: 8px;
}

/* --- Admin Page Header --- */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #333;
}

.admin-page-header h1 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* --- Action Buttons in Tables --- */
.action-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* --- Modal / Confirm Dialog --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-box {
    background: #1a1a1a;
    border: 3px solid #cc0000;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 0 40px rgba(204, 0, 0, 0.3);
}

.modal-box h3 {
    color: #cc0000;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-box p {
    font-family: 'Georgia', serif;
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-box .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    /* --- Mobile Nav: compact links + full-width search bar --- */
    .site-nav ul {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 8px;
        gap: 2px;
    }
    .site-nav a {
        padding: 12px 8px;
        font-size: 0.75rem;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .site-nav a.nav-login {
        margin-left: 0;
    }
    
    /* Search bar: full-width below nav links, part of document flow */
    .site-nav {
        position: sticky;
        top: 0;
    }
    .nav-search {
        width: 100%;
        margin: 0;
        padding: 8px 12px 10px;
        background: #990000;
        box-shadow: 0 4px 0 #660000;
        position: relative;
    }
    .nav-search input[type="text"] {
        width: 100% !important;
        min-width: 0;
        background: rgba(0,0,0,0.45);
        border-radius: 4px;
        padding: 10px 36px 10px 12px;
        font-size: 0.9rem;
    }
    .nav-search button {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border-radius: 0;
        padding: 4px;
    }
    
    .articles-grid { grid-template-columns: 1fr; }
    .article-card { --card-tilt: 0deg !important; }
    
    .article-detail { padding: 24px; }
    .article-detail h1 { font-size: 1.8rem; }
    
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar {
        border-right: none;
        border-bottom: 3px solid #cc0000;
        padding: 16px 0;
    }
    .admin-sidebar a { display: inline-block; padding: 8px 14px; margin: 2px 4px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TAGS & ARCHIVE
   ============================================================ */

.article-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tag-chip {
    display: inline-block;
    background: #0a0a0a;
    color: #cc0000;
    border: 1px solid #333;
    padding: 3px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 900;
    transition: all 0.2s ease;
}

.tag-chip:hover {
    background: #cc0000;
    color: #fff;
    border-color: #cc0000;
}

.tag-chip-active {
    background: #cc0000;
    color: #fff;
    border-color: #cc0000;
}

.tag-chip-sm {
    font-size: 0.65rem;
    padding: 2px 8px;
}

.tag-chip-2 {
    font-size: 0.75rem;
    padding: 4px 12px;
}

.tag-chip-3 {
    font-size: 0.85rem;
    padding: 5px 14px;
}

.tag-count {
    color: #666;
    font-size: 0.65rem;
    margin-left: 2px;
}

.tag-chip:hover .tag-count,
.tag-chip-active .tag-count {
    color: #ccc;
}

/* --- Archive Page --- */

.archive-list {
    max-width: 800px;
}

.archive-group {
    margin-bottom: 40px;
}

.archive-group-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #cc0000;
    padding-bottom: 12px;
    border-bottom: 2px solid #333;
    margin-bottom: 16px;
}

.archive-group-title .archive-count {
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
    text-transform: none;
}

.archive-items {
    list-style: none;
}

.archive-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-date {
    font-size: 0.8rem;
    color: #666;
    min-width: 50px;
    text-transform: uppercase;
    font-weight: 900;
    flex-shrink: 0;
}

.archive-link {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #f2f2f2;
    transition: color 0.2s ease;
}

.archive-link:hover {
    color: #cc0000;
}

.archive-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* --- Tags Cloud --- */

.tags-cloud-section {
    max-width: 800px;
}

.tags-cloud {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.tags-cloud .tag-chip {
    background: #1a1a1a;
    border-color: #333;
}

/* --- Article Body Markdown Styles --- */

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    line-height: 1.2;
}

.article-body h1 { font-size: 2rem; border-bottom: 3px solid #0a0a0a; padding-bottom: 8px; }
.article-body h2 { font-size: 1.6rem; }
.article-body h3 { font-size: 1.3rem; color: #cc0000; }

.article-body p {
    margin-bottom: 1em;
}

.article-body a {
    color: #cc0000;
    text-decoration: underline;
}

.article-body a:hover {
    color: #e60000;
}

.article-body pre {
    background: #0a0a0a;
    color: #f2f2f2;
    padding: 16px;
    overflow-x: auto;
    margin: 1em 0;
    border-left: 3px solid #cc0000;
    font-size: 0.85rem;
    line-height: 1.5;
}

.article-body code {
    background: #0a0a0a;
    color: #ff6666;
    padding: 2px 6px;
    font-size: 0.85em;
    font-family: 'Courier New', monospace;
}

.article-body pre code {
    background: none;
    padding: 0;
    color: #f2f2f2;
}

.article-body blockquote {
    border-left: 4px solid #cc0000;
    margin: 1em 0;
    padding: 12px 20px;
    background: rgba(204, 0, 0, 0.05);
    font-style: italic;
}

.article-body ul,
.article-body ol {
    margin: 1em 0;
    padding-left: 2em;
}

.article-body li {
    margin-bottom: 0.5em;
}

.article-body hr {
    border: none;
    border-top: 3px solid #0a0a0a;
    margin: 2em 0;
}

.article-body del {
    opacity: 0.6;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border: 3px solid #0a0a0a;
    margin: 1.5em 0;
    display: block;
}

/* --- EasyMDE Overrides (match punk theme) --- */

.EasyMDEContainer .CodeMirror {
    background: #0a0a0a !important;
    color: #f2f2f2 !important;
    border: 2px solid #333 !important;
    border-radius: 0 !important;
    font-family: 'Courier New', monospace !important;
    min-height: 300px;
}

.EasyMDEContainer .CodeMirror-focused {
    border-color: #cc0000 !important;
}

.EasyMDEContainer .editor-toolbar {
    border: 2px solid #333 !important;
    border-bottom: none !important;
    background: #1a1a1a !important;
    border-radius: 0 !important;
}

.EasyMDEContainer .editor-toolbar button {
    color: #ccc !important;
    border-radius: 0 !important;
    width: 30px !important;
    height: 30px !important;
}

.EasyMDEContainer .editor-toolbar button:hover {
    background: #cc0000 !important;
    color: #fff !important;
}

.EasyMDEContainer .editor-toolbar i.separator {
    border-left-color: #333 !important;
}

.EasyMDEContainer .editor-preview,
.EasyMDEContainer .editor-side-by-side .CodeMirror {
    border-color: #333 !important;
}

.EasyMDEContainer .editor-statusbar {
    background: #1a1a1a !important;
    border: 2px solid #333 !important;
    border-top: none !important;
    color: #666 !important;
}

/* --- Responsive for Archive --- */

@media (max-width: 768px) {
    .archive-item {
        flex-wrap: wrap;
        gap: 4px 12px;
    }
    
    .archive-date {
        min-width: auto;
    }
    
    .archive-tags {
        width: 100%;
        padding-left: 66px;
    }
    
    .article-body h1 { font-size: 1.5rem; }
    .article-body h2 { font-size: 1.3rem; }
}

/* ============================================================
   COMMENT REPORT & MODERATION
   ============================================================ */

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.btn-report {
    background: none;
    border: 1px solid #333;
    color: #666;
    font-size: 0.7rem;
    padding: 2px 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.btn-report:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.flagged-badge {
    display: inline-block;
    background: #ff6600;
    color: #000;
    font-size: 0.55rem;
    padding: 1px 6px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-left: 6px;
    vertical-align: middle;
}

.btn-flag {
    background: #2a1a0a;
    border: 1px solid #ff6600 !important;
    color: #ff6600 !important;
}

.btn-flag:hover {
    background: #ff6600 !important;
    color: #000 !important;
}

.report-form {
    display: inline;
}
