/*
Theme Name: Puroresu Pulse Custom
Description: A custom brutalist and minimalist hybrid theme for wrestling news and editorial columns.
Author: Puroresu Pulse
Version: 1.0
*/

/* CSS Reset & Variables */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --black: #050505;
    --white: #FAFAFA;
    --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --serif: 'Times New Roman', Times, serif;
    --mono: 'Courier New', Courier, monospace;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--sans);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Brutalist Header */
header {
    border-bottom: 3px solid var(--black);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: var(--white);
}

header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1;
}

header p {
    font-family: var(--mono);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    flex-grow: 1;
}

/* LEFT: Brutalist News Feed (Spreadsheet/Archival feel) */
.news-feed {
    border-right: 3px solid var(--black);
    background-color: var(--white);
}

.news-item {
    border-bottom: 1px solid var(--black);
    padding: 1rem;
    transition: background-color 0.2s ease;
    display: block;
    text-decoration: none;
    color: var(--black);
}

.news-item:hover {
    background-color: var(--black);
    color: var(--white);
    cursor: pointer;
}

.news-date {
    font-family: var(--mono);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.news-headline {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
}

/* RIGHT: Minimalist Editorial (Premium reading experience) */
.editorial-view {
    padding: 4rem 10%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-container {
    max-width: 680px;
    width: 100%;
}

.article-tag {
    font-family: var(--mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    border: 1px solid var(--black);
    padding: 0.25rem 0.5rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.article-author {
    font-family: var(--sans);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

.article-body {
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #111;
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* Responsive Design for Mobile */
@media (max-width: 900px) {
    .grid-container { grid-template-columns: 1fr; }
    .news-feed { border-right: none; border-bottom: 3px solid var(--black); }
    .article-title { font-size: 2.5rem; }
    header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}