/*
Theme Name: NewGearCars
Theme URI: https://newgearcars.es
Author: NewGearCars
Author URI: https://newgearcars.es
Description: Tema premium para NewGearCars. Navegación horizontal transparente, hero inmersivo, diseño minimalista inspirado en Ferrari.com.
Version: 1.0.0
License: GPL v2 or later
Text Domain: newgearcars
*/

/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */

:root {
    --ngc-red: #E10600;
    --ngc-red-dark: #C00500;
    --ngc-black: #0A0A0A;
    --ngc-white: #FFFFFF;
    --ngc-gray-100: #F5F5F5;
    --ngc-gray-500: #888;
    --ngc-font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --ngc-font-body: 'Outfit', sans-serif;
    --ngc-radius: 6px;
    --ngc-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--ngc-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    background: var(--ngc-white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ==========================================================================
   HEADER — Transparente sobre hero, negro al scroll
   ========================================================================== */

.ngc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.ngc-header.scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

/* Interior pages — header siempre negro */
.ngc-header.ngc-header-solid {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

/* Logo */
.ngc-header-logo {
    margin-right: 56px;
    flex-shrink: 0;
}

.ngc-header-logo a {
    display: flex;
    align-items: center;
    gap: 0;
}

.ngc-header-logo img,
.ngc-header-logo .custom-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Text fallback */
.ngc-logo-text {
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--ngc-white);
    letter-spacing: -0.01em;
}

.ngc-logo-text .accent {
    color: var(--ngc-red);
}

/* Navigation */
.ngc-header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.ngc-header-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.ngc-header-nav li a {
    display: block;
    padding: 24px 22px;
    font-family: var(--ngc-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ngc-header-nav li a:hover,
.ngc-header-nav li.current-menu-item > a,
.ngc-header-nav li.current_page_item > a {
    color: var(--ngc-white);
}

/* Right side — social icons */
.ngc-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ngc-header-social a {
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.ngc-header-social a:hover {
    color: var(--ngc-white);
}

.ngc-header-social a svg {
    width: 16px;
    height: 16px;
}

/* Mobile hamburger */
.ngc-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.ngc-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ngc-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ngc-hamburger.active span:nth-child(2) { opacity: 0; }
.ngc-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.ngc-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ngc-mobile-menu.active {
    display: flex;
}

.ngc-mobile-menu a {
    font-family: var(--ngc-font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 12px 24px;
    transition: color 0.2s ease;
}

.ngc-mobile-menu a:hover {
    color: var(--ngc-white);
}


/* ==========================================================================
   HERO — Fullscreen, imagen de fondo, título centrado abajo
   ========================================================================== */

.ngc-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ngc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ngc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ngc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.1) 15%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.2) 60%,
        rgba(0,0,0,0.8) 100%
    );
}

.ngc-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 5vw 8vh;
    max-width: 900px;
    color: var(--ngc-white);
}

.ngc-hero-cat {
    display: inline-block;
    font-family: var(--ngc-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.ngc-hero-title {
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.ngc-hero-title a {
    color: var(--ngc-white) !important;
}

.ngc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ngc-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ngc-white);
    transition: opacity 0.2s ease;
}

.ngc-hero-cta:hover {
    opacity: 0.7;
}

.ngc-hero-cta .cta-arrow {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
}

.ngc-hero-cta:hover .cta-arrow {
    border-color: var(--ngc-white);
}

.ngc-hero-cta .cta-arrow svg {
    width: 14px;
    height: 14px;
}


/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.ngc-section-header {
    padding: 0 5vw;
    margin-bottom: 36px;
}

.ngc-section-title {
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1A1A1A;
    padding-bottom: 16px;
    border-bottom: 2px solid #1A1A1A;
    display: inline-block;
}


/* ==========================================================================
   ARTICLES GRID — 3 columnas limpio
   ========================================================================== */

.ngc-articles-section {
    padding: 72px 0 80px;
}

.ngc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    padding: 0 5vw;
}

/* Card */
.ngc-card {
    display: flex;
    flex-direction: column;
}

.ngc-card-image {
    overflow: hidden;
    border-radius: var(--ngc-radius);
    margin-bottom: 16px;
    aspect-ratio: 16 / 10;
}

.ngc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ngc-ease);
}

.ngc-card:hover .ngc-card-image img {
    transform: scale(1.04);
}

.ngc-card-cat {
    font-family: var(--ngc-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ngc-red);
    margin-bottom: 8px;
    display: inline-block;
}

.ngc-card-title {
    font-family: var(--ngc-font-display);
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.ngc-card-title a { color: #1A1A1A; transition: color 0.2s ease; }
.ngc-card-title a:hover { color: var(--ngc-red); }

.ngc-card-date {
    font-size: 13px;
    color: #999;
    margin-top: auto;
}


/* ==========================================================================
   SINGLE POST
   ========================================================================== */

.ngc-single-header {
    padding: 120px 5vw 0;
    max-width: 820px;
}

.ngc-single-cat {
    display: inline-block;
    font-family: var(--ngc-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ngc-red);
    margin-bottom: 14px;
}

.ngc-single-title {
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 18px;
}

.ngc-single-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ngc-single-meta .author { font-weight: 500; color: #1A1A1A; }

.ngc-single-featured {
    padding: 0 5vw;
    max-width: 960px;
    margin-bottom: 40px;
}

.ngc-single-featured img { border-radius: var(--ngc-radius); width: 100%; }

.ngc-single-content {
    padding: 0 5vw;
    max-width: 780px;
}

.ngc-single-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 24px;
}

.ngc-single-content a {
    color: var(--ngc-red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ngc-single-content blockquote {
    border-left: 3px solid var(--ngc-red);
    padding: 16px 24px;
    margin: 32px 0;
    background: #FAFAFA;
    font-style: italic;
    color: #666;
}


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

.ngc-footer {
    background: var(--ngc-black);
    color: #888;
    border-top: 3px solid var(--ngc-red);
    padding: 52px 5vw 0;
    margin-top: 80px;
}

.ngc-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
}

.ngc-footer-logo {
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--ngc-white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.ngc-footer-logo span { color: var(--ngc-red); font-weight: 800; }

.ngc-footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(12%) sepia(97%) saturate(7040%) hue-rotate(358deg) brightness(97%) contrast(117%);
}

.ngc-footer-tagline {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 14px;
}

.ngc-footer-social {
    display: flex;
    gap: 8px;
}

.ngc-footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
}

.ngc-footer-social a:hover { background: var(--ngc-red); color: white; }

.ngc-footer-heading {
    font-family: var(--ngc-font-display);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ngc-white);
    margin-bottom: 16px;
}

.ngc-footer-links li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ngc-footer-links a { color: #666; font-size: 14px; transition: color 0.2s ease; }
.ngc-footer-links a:hover { color: var(--ngc-white); }

.ngc-footer-cta {
    font-size: 12px;
    color: #444;
    margin-top: 14px;
    line-height: 1.4;
}

.ngc-footer-bottom {
    border-top: 1px solid #1A1A1A;
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: #333;
}

.ngc-footer-nav {
    margin-bottom: 12px;
}

.ngc-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ngc-footer-nav ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.ngc-footer-nav ul li a:hover {
    color: #E10600;
}


/* ==========================================================================
   ARCHIVE
   ========================================================================== */

.ngc-archive-header {
    padding: 120px 5vw 40px;
}

.ngc-archive-title {
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: clamp(24px, 4vw, 36px);
    letter-spacing: -0.02em;
    color: #1A1A1A;
}

.ngc-archive-title span { color: var(--ngc-red); }


/* ==========================================================================
   MARCAS GRID
   ========================================================================== */

.ngc-marcas-section {
    padding: 0 5vw 80px;
}

.ngc-marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px;
}

.ngc-marca-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 20px;
    border-radius: var(--ngc-radius);
    background: #F8F8F8;
    transition: all 0.25s var(--ngc-ease);
}

.ngc-marca-card:hover {
    background: #F0F0F0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.ngc-marca-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ngc-marca-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ngc-marca-placeholder {
    background: #E8E8E8;
    border-radius: 50%;
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: 24px;
    color: #999;
}

.ngc-marca-name {
    font-family: var(--ngc-font-display);
    font-weight: 700;
    font-size: 14px;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.ngc-marca-count {
    font-size: 12px;
    color: #999;
}

/* Dark mode */
.ngc-dark .ngc-marca-card { background: #1A1A1A; }
.ngc-dark .ngc-marca-card:hover { background: #222; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.ngc-dark .ngc-marca-name { color: #DDD; }
.ngc-dark .ngc-marca-placeholder { background: #333; color: #666; }

@media screen and (max-width: 600px) {
    .ngc-marcas-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 16px;
        padding: 0;
    }
    .ngc-marca-card { padding: 20px 12px 16px; }
    .ngc-marca-logo { width: 48px; height: 48px; }
}


/* ==========================================================================
   404
   ========================================================================== */

.ngc-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 60px 5vw;
}

.ngc-404-code {
    font-family: var(--ngc-font-display);
    font-weight: 800;
    font-size: clamp(100px, 18vw, 220px);
    color: #F0F0F0;
    line-height: 1;
}

.ngc-404-title {
    font-family: var(--ngc-font-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.ngc-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: var(--ngc-red);
    color: var(--ngc-white);
    font-family: var(--ngc-font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.ngc-404-btn:hover { background: var(--ngc-red-dark); color: white; }


/* ==========================================================================
   PAGINATION
   ========================================================================== */

.ngc-pagination {
    padding: 40px 5vw 60px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.ngc-pagination a,
.ngc-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    font-family: var(--ngc-font-display);
    font-size: 14px;
    font-weight: 600;
}

.ngc-pagination a { background: #F0F0F0; color: #1A1A1A; transition: all 0.2s ease; }
.ngc-pagination a:hover { background: var(--ngc-red); color: white; }
.ngc-pagination .current { background: var(--ngc-red); color: white; }


/* ==========================================================================
   RESPONSIVE — Tablet
   ========================================================================== */

@media screen and (max-width: 960px) {
    .ngc-header { padding: 0 24px; }
    .ngc-header-nav, .ngc-header-right { display: none; }
    .ngc-hamburger { display: flex; }

    .ngc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ngc-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .ngc-footer-inner > *:first-child { grid-column: 1 / -1; }
}

/* ==========================================================================
   RESPONSIVE — Mobile
   ========================================================================== */

@media screen and (max-width: 600px) {
    .ngc-hero { height: 85vh; min-height: 420px; }
    .ngc-hero-content { padding: 0 24px 6vh; }
    .ngc-hero-title { font-size: 22px; }

    .ngc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .ngc-section-header { padding: 0 20px; }
    .ngc-single-header, .ngc-single-content, .ngc-single-featured { padding-left: 20px; padding-right: 20px; }

    .ngc-footer { padding: 36px 20px 0; }
    .ngc-footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .ngc-archive-header { padding: 100px 20px 28px; }
}


/* ==========================================================================
   DARK MODE — Compatible con NGC Design Boost plugin
   ========================================================================== */

/* ---- Header refuerzo para móvil: SIEMPRE negro en interior ---- */
body.single .ngc-header,
body.page .ngc-header,
body.archive .ngc-header,
body.search .ngc-header,
body.category .ngc-header {
    background: rgba(10, 10, 10, 0.97) !important;
}

/* ==========================================================================
   COMENTARIOS
   ========================================================================== */

.ngc-single-content + .comments-area,
.comments-area {
    max-width: 780px;
    margin: 40px auto;
    padding: 0 5vw 40px;
}

.comments-area .comment-reply-title {
    font-family: var(--ngc-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ngc-black);
    margin-bottom: 20px;
}

.comments-area label {
    display: block;
    font-family: var(--ngc-font-body);
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.comments-area input[type="text"],
.comments-area input[type="email"],
.comments-area input[type="url"],
.comments-area textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-family: var(--ngc-font-body);
    font-size: 15px;
    color: var(--ngc-black);
    background: #FAFAFA;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.comments-area input:focus,
.comments-area textarea:focus {
    outline: none;
    border-color: var(--ngc-red);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.08);
    background: #fff;
}

.comments-area textarea {
    min-height: 140px;
    resize: vertical;
}

.comments-area .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 20px;
}

.comments-area .comment-form-cookies-consent label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 12px;
    color: #777;
}

.comments-area .form-submit input[type="submit"] {
    background: var(--ngc-red);
    color: white;
    border: none;
    padding: 12px 32px;
    font-family: var(--ngc-font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.comments-area .form-submit input[type="submit"]:hover {
    background: #C00500;
    transform: translateY(-1px);
}

.comments-area .comment-notes {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.comments-area .required {
    color: var(--ngc-red);
}

/* Lista de comentarios */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid #F0F0F0;
}

.comment-list .comment-author {
    font-family: var(--ngc-font-display);
    font-weight: 700;
    font-size: 15px;
}

.comment-list .comment-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.comment-list .comment-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* Dark mode comentarios */
.ngc-dark .comments-area .comment-reply-title { color: #DDD; }
.ngc-dark .comments-area input[type="text"],
.ngc-dark .comments-area input[type="email"],
.ngc-dark .comments-area input[type="url"],
.ngc-dark .comments-area textarea {
    background: #151515;
    border-color: #2A2A2A;
    color: #DDD;
}
.ngc-dark .comments-area input:focus,
.ngc-dark .comments-area textarea:focus {
    border-color: var(--ngc-red);
    background: #1A1A1A;
}
.ngc-dark .comment-list .comment { border-bottom-color: #1A1A1A; }
.ngc-dark .comment-list .comment-content p { color: #BBB; }

.ngc-dark body { background: #0D0D0D; color: #DDD; }
.ngc-dark .ngc-section-title { color: #DDD; border-bottom-color: #DDD; }
.ngc-dark .ngc-card-title a { color: #DDD; }
.ngc-dark .ngc-card-title a:hover { color: var(--ngc-red); }
.ngc-dark .ngc-card-date { color: #555; }
.ngc-dark .ngc-single-title { color: #DDD; }
.ngc-dark .ngc-single-content p { color: #BBB; }
.ngc-dark .ngc-single-meta .author { color: #BBB; }
.ngc-dark .ngc-archive-title { color: #DDD; }
.ngc-dark .ngc-pagination a { background: #1A1A1A; color: #BBB; }
.ngc-dark .ngc-404-code { color: #151515; }
.ngc-dark .ngc-single-content blockquote { background: #151515; color: #888; }


/* ==========================================================================
   WP ADMIN BAR
   ========================================================================== */

body.admin-bar .ngc-header { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .ngc-header { top: 46px; }
}
