/* ==========================================================================
   CIMA Risk Ghost theme stylesheet
   Dark, warm near-black, editorial. Gold accents. Colombia travel risk intel.
   ========================================================================== */

:root {
    --black:         #0a0908;
    --deep:          #110f0c;
    --surface:       #181513;
    --surface-high:  #1f1a16;
    --border:        #28231e;
    --border-hi:     #3a322a;
    --muted:         #38322a;

    --text-dim:      #7a6e62;
    --text-mid:      #a89a8c;
    --text:          #d8cfc2;
    --white:         #ede7de;

    --accent:        #a8863a;
    --accent-bright: #c49a48;
    --accent-dim:    rgba(168, 134, 58, 0.12);

    --red:           #7a1c1c;
    --red-bright:    #b03328;

    --lv-low:        #3b5a3b;
    --lv-elev:       #7a6a2a;
    --lv-high:       #9a5a2a;
    --lv-crit:       #7a1c1c;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    color: var(--text);
    font-family: var(--gh-font-body, 'Barlow', sans-serif);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gh-font-heading, 'Newsreader', serif);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1 em, h2 em {
    font-style: italic;
    color: var(--accent-bright);
    font-weight: 400;
}

a { color: var(--accent); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--accent-bright); }

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }

.eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    display: inline-block;
}

.section-head { margin-bottom: 2.6rem; max-width: 720px; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-title { font-size: 2.2rem; font-weight: 400; }
.section-head-center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, border-color 0.25s, color 0.25s;
}
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.74rem; }
.btn-primary {
    background: var(--accent);
    color: var(--black);
    border: 1px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-bright); border-color: var(--accent-bright); color: var(--black); transform: translateY(-1px); }
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-hi);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 9, 8, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}
.site-header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(10, 9, 8, 0.96);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Hamburger (right-most item) */
.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px 8px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.25s;
}
.nav-toggle:hover { border-color: var(--border-hi); }
.nav-toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-mid);
    border-radius: 2px;
    transition: background 0.25s, transform 0.25s, opacity 0.2s;
}
.nav-toggle:hover .nav-toggle-bar { background: var(--accent); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Brand lockup - shared SVG, scaled via CSS width (viewBox keeps ratio) */
.cima-lockup { display: block; height: auto; width: 100%; }
/* Compact brand lockup (left, subordinate to hero logo) */
.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
}
.cima-lockup-nav { width: 150px; }

/* Right cluster: Subscribe then hamburger (hamburger right-most) */
.site-header-actions { display: flex; align-items: center; gap: 0.8rem; flex: 0 0 auto; }

/* Slide-down menu opened by the hamburger */
.site-menu {
    border-top: 1px solid var(--border);
    background: rgba(10, 9, 8, 0.97);
    backdrop-filter: blur(10px);
}
.site-menu[hidden] { display: none; }
.site-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.site-menu-link,
.site-menu .nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--text-mid);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}
.site-menu-link:hover,
.site-menu .nav a:hover { color: var(--accent); }
.site-menu .nav { list-style: none; display: flex; flex-direction: column; margin: 0; padding: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 14vh 2rem 7rem;
    background-color: var(--deep);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
/* Selective, layered dimming. Center vignette tames the bright cluster,
   a bottom strip carries the banner, a light top scrim aids the eyebrow.
   The rest of the photo stays bright and crisp. */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.34) 24%, transparent 46%),
        radial-gradient(62% 58% at 50% 37%, rgba(0,0,0,0.6), transparent 74%),
        linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 14%, transparent 34%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-eyebrow { margin-bottom: 10px; color: var(--accent-bright); }
.hero-lockup {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 8px;
}
.cima-lockup-hero { width: clamp(290px, 46vw, 470px); }
.hero-rule {
    display: block;
    width: clamp(290px, 46vw, 470px);
    height: 1px;
    background: #a89a8c;
    opacity: 0.7;
    margin: 8px auto 8px;
    margin-left: auto;
    margin-right: auto;
}
.hero-tagline {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 3.2vw, 1.5rem);
    color: #d8cfc2;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 2rem;
}
.hero-banner {
    position: absolute;
    bottom: 1.8rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 5vw;
    font-family: 'Barlow Condensed', sans-serif;
}
.hero-banner-item {
    flex: 1 1 0;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-bright);
}

/* ==========================================================================
   Positioning
   ========================================================================== */
.positioning { padding: 5rem 0; border-bottom: 1px solid var(--border); text-align: center; }
.positioning-inner { max-width: 600px; margin: 0 auto; }
.positioning .eyebrow { margin-bottom: 1.4rem; }
.positioning-body {
    font-family: 'Newsreader', serif;
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
}

/* ==========================================================================
   Products / cadence
   ========================================================================== */
.products { padding: 5rem 0 4.5rem; }
.cadence-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--deep);
}
.cadence-item { padding: 1.8rem 1.6rem; border-right: 1px solid var(--border); }
.cadence-item:last-child { border-right: none; }
.cadence-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.cadence-val {
    font-family: 'Newsreader', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.cadence-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.5; }


/* ==========================================================================
   Access / tiers
   ========================================================================== */
.access { padding: 5rem 0; background: linear-gradient(180deg, transparent 0%, var(--deep) 18%, var(--deep) 82%, transparent 100%); }
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-bottom: 2rem;
    align-items: stretch;
}
.tier-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}
.tier-card:hover { border-color: var(--accent); }
.tier-card.featured {
    border: 2px solid var(--accent);
    background: var(--surface-high);
    position: relative;
}
.tier-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
}
.tier-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.tier-name {
    font-family: 'Newsreader', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.tier-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; }
.tier-amount { font-family: 'Newsreader', serif; font-size: 2rem; font-weight: 400; color: var(--white); }
.tier-cycle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tier-annual {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.tier-benefits { list-style: none; margin: 0.6rem 0 1.6rem; flex-grow: 1; }
.tier-benefits li {
    font-size: 0.88rem;
    color: var(--text);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.45;
    display: flex;
    gap: 0.5rem;
}
.tier-benefits li:last-child { border-bottom: none; }
.tier-benefits li::before { content: '+'; color: var(--accent); font-weight: 600; }
.tier-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.9rem 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    border-radius: 2px;
    transition: all 0.25s;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.tier-card.featured .tier-cta { background: var(--accent); color: var(--black); }
.tier-cta:hover { background: var(--accent-bright); color: var(--black); border-color: var(--accent-bright); }
.access-line {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ==========================================================================
   Analysis / post feed
   ========================================================================== */
.analysis { padding: 5rem 0 6rem; }
.archive-header { padding: 4rem 0 2rem; }
.archive-title { font-size: 2.6rem; margin-top: 0.6rem; }
.archive-desc { color: var(--text-mid); max-width: 640px; margin-top: 0.8rem; }
.analysis-empty {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-mid);
    padding: 2rem 0;
}
.post-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    padding-bottom: 4rem;
}
.post-card {
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, background 0.3s;
}
.post-card:hover { border-color: var(--accent); background: var(--surface-high); }
.post-card-image-link { display: block; overflow: hidden; }
.post-card-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-card-body { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
}
.post-card-tag { color: var(--accent); }
.post-card-title { font-size: 1.35rem; line-height: 1.25; margin-bottom: 0.7rem; }
.post-card-title a { color: var(--white); }
.post-card-title a:hover { color: var(--accent); }
.post-card-excerpt { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; flex-grow: 1; }
.post-card-readmore {
    margin-top: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--accent);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 4rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.8rem;
}
.pagination .page-number { color: var(--text-dim); }

/* ==========================================================================
   Article (post / page)
   ========================================================================== */
.article { padding: 3.5rem 0 5rem; }
.article-header { padding-bottom: 1.6rem; text-align: center; }
.article-tag { margin-bottom: 1rem; }
.article-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1rem; }
.article-excerpt {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-mid);
    max-width: 620px;
    margin: 0 auto 1.4rem;
}
.article-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--text-dim);
}
.article-meta .meta-sep { margin: 0 0.6rem; color: var(--accent); }
.article-feature-image { margin: 2.5rem auto; max-width: 1000px; padding: 0 2rem; }
.article-feature-image img { width: 100%; border: 1px solid var(--border); }
.article-feature-image figcaption {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 0.8rem;
}

/* Content typography */
.article-content { font-size: 1.12rem; line-height: 1.85; color: var(--text); }
.article-content > * { margin-bottom: 1.6rem; }
.article-content > *:last-child { margin-bottom: 0; }
.article-content h2 { font-size: 1.9rem; margin-top: 2.6rem; margin-bottom: 1rem; }
.article-content h3 { font-size: 1.45rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.article-content h4 { font-size: 1.15rem; margin-top: 1.6rem; margin-bottom: 0.6rem; }
.article-content a { color: var(--accent); border-bottom: 1px solid rgba(168, 134, 58, 0.4); }
.article-content a:hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.4rem;
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--white);
}
.article-content ul, .article-content ol { padding-left: 1.4rem; }
.article-content li { margin-bottom: 0.6rem; }
.article-content img { margin: 1.6rem auto; border: 1px solid var(--border); }
.article-content figcaption { text-align: center; font-size: 0.82rem; color: var(--text-dim); margin-top: 0.6rem; }
.article-content hr { border: none; border-top: 1px solid var(--border); margin: 2.6rem 0; }
.article-content code {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    font-size: 0.92em;
}
.article-content pre {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.2rem;
    border-radius: 3px;
    overflow-x: auto;
}
.article-content pre code { background: none; border: none; padding: 0; }
.kg-bookmark-card, .kg-card { margin: 1.8rem 0; }

/* Article subscribe CTA */
.article-cta {
    margin-top: 4rem;
    padding: 2.6rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
}
.article-cta .eyebrow { margin-bottom: 0.8rem; }
.article-cta-title { font-size: 1.6rem; margin-bottom: 0.8rem; }
.article-cta-body { color: var(--text-mid); max-width: 520px; margin: 0 auto 1.6rem; }

/* ==========================================================================
   Error page
   ========================================================================== */
.error-page { padding: 9rem 0; text-align: center; }
.error-title { font-size: 2.4rem; margin: 1rem 0; }
.error-desc { color: var(--text-mid); margin-bottom: 2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--deep);
    padding: 3rem 0 1.8rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.6rem 2.5rem;
}
.footer-primary { max-width: 560px; }
.footer-tag-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.footer-contact { margin-top: 0.7rem; font-size: 0.9rem; }
.footer-contact a { color: var(--accent); }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-mid);
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer-socials a:hover { color: var(--accent); border-color: var(--accent); background: var(--surface); }
.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.75rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .cadence-grid { grid-template-columns: repeat(2, 1fr); }
    .cadence-item { border-bottom: 1px solid var(--border); }
    .cadence-item:nth-child(2n) { border-right: none; }
    .cadence-item:nth-last-child(-n+1) { border-bottom: none; }
    .tier-grid { grid-template-columns: 1fr; }
    .post-feed { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 74vh; padding-top: 12vh; }
    .hero-banner { gap: 1rem; padding: 0 3vw; }
    .hero-banner-item { font-size: 0.78rem; letter-spacing: 2px; }
}

@media (max-width: 600px) {
    .wrap, .wrap-narrow { padding: 0 1.4rem; }
    .cadence-grid { grid-template-columns: 1fr; }
    .cadence-item { border-right: none; }
    .post-feed { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; gap: 1.4rem; }
    .footer-primary { max-width: none; }
    .footer-socials { justify-content: center; }
    .hero { min-height: 70vh; padding: 11vh 1.4rem 5rem; }
    .hero-rule { width: clamp(290px, 46vw, 470px); }
    .hero-tagline { font-size: clamp(1.2rem, 5vw, 1.4rem); }
    .hero-banner {
        position: static;
        margin-top: 2.4rem;
        flex-direction: column;
        gap: 0.4rem;
        padding: 0 1rem;
    }
    .hero-banner-item { font-size: 0.74rem; letter-spacing: 2px; }
    .site-header-inner { gap: 0.5rem; }
    .site-header-actions { gap: 0.5rem; }
    .cima-lockup-nav { width: 120px; }
}

/* Very narrow screens: shrink the brand lockup, keep hamburger right */
@media (max-width: 380px) {
    .cima-lockup-nav { width: 108px; }
    .site-header-actions { gap: 0.45rem; }
}

/* ==========================================================================
   Koenig editor card widths (required by Ghost)
   ========================================================================== */
.article-content :not(.kg-card):not([class*="kg-"]) {
    /* keep default body width via .wrap-narrow container */
}
.kg-width-wide {
    position: relative;
    width: 85vw;
    min-width: 100%;
    margin-left: calc(50% - 42.5vw);
    transform: translateX(calc(-50% + 50%));
}
.kg-width-wide img { width: 100%; }
.kg-width-full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.kg-width-full img { width: 100%; }

/* Constrain wide/full within the narrow article column responsibly */
@media (max-width: 1100px) {
    .kg-width-wide { width: 100%; margin-left: 0; transform: none; }
}
