/*
Theme Name: Say It's Not So V3
Description: Dark editorial theme
Version: 3.0
*/

/* =========================
   GLOBAL
========================= */

body {
    margin: 0;
    background: #08090b;
    color: #e8e0d0;
    font-family: Georgia, serif;
    line-height: 1.6;
}

a {
    color: #d8d0c2;
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: #b21b22;
}

h1,
h2,
h3 {
    letter-spacing: 1px;
}

p {
    max-width: 700px;
}

/* =========================
   HEADER
========================= */

.sis-header {
    background: #000;
    padding: 30px 20px;
    border-bottom: 1px solid #222;
    text-align: center;
}

.sis-logo {
    max-width: 380px;
    width: 90%;
    margin: 0 auto;
}

.sis-nav {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.sis-nav a {
    color: #ccc;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.sis-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #b21b22;
    transition: width 0.3s ease;
}

.sis-nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */

.sis-hero {
    padding: 140px 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #222;
}

.sis-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 40%,
        rgba(0, 0, 0, 0.6)
    );
}

.sis-hero * {
    position: relative;
}

.sis-hero h1 {
    font-family: Impact, Arial Black, sans-serif;
    text-transform: uppercase;
    font-size: clamp(38px, 7vw, 72px);
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(178, 27, 34, 0.3);
}

.sis-hero p {
    color: #aaa;
    margin: 0 auto;
}

/* =========================
   FEATURED DISPATCH
========================= */

.featured-dispatch {
    padding: 120px 20px;
    border-bottom: 1px solid #222;
}

.featured-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.featured-label {
    letter-spacing: 3px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.featured-title {
    font-family: Impact, Arial Black, sans-serif;
    text-transform: uppercase;
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1.1;
    max-width: 800px;
    margin: 20px auto;
}

.featured-title a {
    color: #fff;
}

.featured-title a:hover {
    color: #b21b22;
}

.featured-excerpt {
    max-width: 600px;
    margin: 0 auto;
    color: #aaa;
    font-size: 18px;
}

/* =========================
   PANELS
========================= */

.home-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
    background: #111;
}

.home-panel-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-panel {
    height: 280px;
    background-size: cover;
    background-position: center;
    border: 1px solid #222;

    display: flex;
    align-items: flex-end;

    transition: all 0.25s ease;
}

.home-panel-link:hover .home-panel {
    transform: translateY(-6px);
    border-color: #b21b22;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.panel-overlay {
    width: 100%;
    padding: 20px;
    background: linear-gradient(
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.85)
    );
}

.panel-overlay h2 {
    color: #fff;
    margin-top: 0;
}

.panel-overlay p {
    max-width: none;
    margin: 0;
    color: #ddd;
}

/* =========================
   POSTS
========================= */

.sis-post {
    border-bottom: 1px solid #333;
    padding: 25px 0;
}

.sis-post h3 a {
    color: #fff;
}

.sis-post h3 a:hover {
    color: #b21b22;
}

/* =========================
   STANDARD PAGES
========================= */

.sis-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sis-page {
    max-width: 800px !important;
    margin: 60px auto !important;
    padding: 0 20px !important;
}

.sis-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.sis-page p {
    margin-bottom: 1.5rem;
}

.sis-page .wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* =========================
   FOOTER
========================= */

.sis-footer {
    text-align: center;
    padding: 30px;
    color: #777;
    border-top: 1px solid #222;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
    .home-panels {
        grid-template-columns: 1fr;
    }

    .home-panel {
        height: 240px;
    }

    .featured-dispatch {
        padding: 80px 20px;
    }
}