/*
Theme Name: Okuama Freedom Campaign
Description: Official theme for the Okuama Freedom Campaign human rights advocacy website. Requires Elementor and Egovt parent theme.
Template: egovt
Version: 1.0.0
Author: Rowsoft
Text Domain: egovt-child
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --color-primary:   #980002;
    --color-black:     #000000;
    --color-white:     #ffffff;
    --color-light:     #F8F8F8;
    --color-red-dark:  #6B0001;
    --font-heading:    'Poppins', sans-serif;
    --font-body:       'Inter', sans-serif;
    --font-mono:       'Courier New', Courier, monospace;
    --max-width:       1200px;
    --section-pad:     80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-black);
    background: var(--color-white);
    margin: 0;
    padding: 0;
}

/* Override parent theme wrapper for campaign pages */
body.ofc-page .ova-wrapp,
body.ofc-page .wrap_site,
body.ofc-page #main-content,
body.ofc-page .ovatheme_breadcrumbs {
    all: unset;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--color-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.2rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.ofc-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.ofc-section {
    padding: var(--section-pad) 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ofc-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 2px solid transparent;
    line-height: 1;
}

.ofc-btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.ofc-btn--primary:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    color: var(--color-white);
    text-decoration: none;
}

.ofc-btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.ofc-btn--outline:hover {
    background: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
}

.ofc-btn--outline-dark {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.ofc-btn--outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.ofc-topbar {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-family: var(--font-body);
    padding: 8px 24px;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.ofc-topbar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ofc-topbar__inner a { color: var(--color-white); }
.ofc-topbar__hashtag { font-weight: 500; opacity: 0.9; }

/* ============================================================
   MAIN HEADER
   ============================================================ */
.ofc-header {
    background: var(--color-white);
    border-bottom: 2px solid var(--color-light);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ofc-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.ofc-header__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.ofc-logo-img { max-height: 52px; width: auto; }

.ofc-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Navigation */
.ofc-nav { display: flex; align-items: center; }

.ofc-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ofc-nav__list li { position: relative; }

.ofc-nav__list a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
    padding: 8px 14px;
    display: block;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.ofc-nav__list a:hover,
.ofc-nav__list .current-menu-item > a,
.ofc-nav__list .current-page-ancestor > a {
    color: var(--color-primary);
}

.ofc-nav__list .ofc-nav-cta > a {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 2px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ofc-nav__list .ofc-nav-cta > a:hover {
    background: var(--color-red-dark);
    color: var(--color-white);
}

/* Hamburger toggle */
.ofc-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ofc-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-black);
    transition: all 0.3s;
    border-radius: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ofc-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 64px 0 0;
}

.ofc-footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.ofc-footer__brand-tagline {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 12px 0;
}

.ofc-footer__hashtags { margin-top: 16px; }
.ofc-footer__hashtags span {
    display: inline-block;
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 500;
    margin: 0 8px 8px 0;
}

.ofc-footer__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0 0 20px;
}

.ofc-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ofc-footer__nav li { margin-bottom: 10px; }
.ofc-footer__nav a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.ofc-footer__nav a:hover { color: var(--color-white); }

.ofc-footer__contact-line {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.ofc-footer__contact-line strong {
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ofc-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.ofc-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
}

.ofc-footer__social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.ofc-footer__logo-img { max-height: 48px; width: auto; margin-bottom: 16px; }

.ofc-footer__bottom {
    max-width: var(--max-width);
    margin: 48px auto 0;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ofc-hero {
    background: var(--color-black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.ofc-hero__logo-wrap { margin-bottom: 48px; }
.ofc-hero__logo-wrap img { max-height: 80px; width: auto; }
.ofc-hero__logo-wrap .ofc-logo-text { color: var(--color-white); font-size: 1.25rem; }

.ofc-hero__inner { max-width: 860px; width: 100%; }

.ofc-hero__headline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.ofc-hero__rule {
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto 32px;
}

.ofc-hero__sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-primary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 500;
}

.ofc-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   URGENCY COUNTER STRIP
   ============================================================ */
.ofc-urgency {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 48px 24px 36px;
    text-align: center;
}

.ofc-urgency__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.ofc-urgency__stat { }

.ofc-urgency__number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.ofc-urgency__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.88;
    line-height: 1.4;
}

.ofc-urgency__next-date {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.ofc-section-header { margin-bottom: 48px; }
.ofc-section-header--center { text-align: center; }

.ofc-section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.ofc-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

.ofc-section-sub {
    font-size: 1.0625rem;
    color: #444;
    max-width: 640px;
    line-height: 1.7;
}
.ofc-section-header--center .ofc-section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   DETAINEE PROFILE CARDS
   ============================================================ */
.ofc-profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ofc-profile-card {
    background: var(--color-white);
    border: 1px solid #e8e8e8;
    border-left: 4px solid var(--color-primary);
    padding: 28px 28px 28px 24px;
    transition: box-shadow 0.2s;
}

.ofc-profile-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.ofc-profile-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.ofc-profile-card__role {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 12px;
    font-weight: 400;
}

.ofc-profile-card__detail {
    font-size: 0.9375rem;
    color: var(--color-black);
    line-height: 1.6;
}

/* Full profile cards (release page) */
.ofc-profile-full {
    background: var(--color-white);
    border: 1px solid #e8e8e8;
    border-left: 5px solid var(--color-primary);
    padding: 36px 36px 36px 32px;
    margin-bottom: 32px;
}

.ofc-profile-full__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.ofc-profile-full__role {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 8px;
}

.ofc-profile-full__status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #fff3f3;
    color: var(--color-primary);
    padding: 4px 12px;
    border: 1px solid var(--color-primary);
    margin-bottom: 20px;
}

.ofc-profile-full__body { color: #333; line-height: 1.8; }

/* ============================================================
   LEGAL CASE SECTION
   ============================================================ */
.ofc-legal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.ofc-pull-quote {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-primary);
    border-left: 5px solid var(--color-primary);
    padding-left: 24px;
    line-height: 1.35;
    margin: 0;
}

.ofc-legal-body { color: #333; }
.ofc-legal-body p { margin-bottom: 16px; }

/* ============================================================
   COMMUNITY SECTION (DARK)
   ============================================================ */
.ofc-community {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.ofc-community__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(6rem, 18vw, 16rem);
    opacity: 0.04;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    color: var(--color-white);
    letter-spacing: -0.05em;
}

.ofc-community__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.ofc-community .ofc-section-title { color: var(--color-white); }
.ofc-community .ofc-section-sub { color: rgba(255,255,255,0.75); }

.ofc-icons-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.ofc-icon-block {
    text-align: center;
}

.ofc-icon-block__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.ofc-icon-block__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.ofc-icon-block__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ============================================================
   ACTION CARDS
   ============================================================ */
.ofc-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ofc-action-card {
    border: 2px solid #e8e8e8;
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ofc-action-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(152,0,2,0.08);
}

.ofc-action-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

.ofc-action-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-black);
    margin-bottom: 12px;
}

.ofc-action-card__desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ============================================================
   PRESS STRIP
   ============================================================ */
.ofc-press-strip {
    background: var(--color-light);
    padding: 36px 24px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.ofc-press-strip__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ofc-press-strip__label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    white-space: nowrap;
}

.ofc-press-strip__outlets {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.ofc-press-strip__outlets a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 2px;
}
.ofc-press-strip__outlets a:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */
.ofc-page-hero {
    background: var(--color-black);
    color: var(--color-white);
    padding: 72px 24px 64px;
    text-align: center;
}

.ofc-page-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.ofc-page-hero h1 { color: var(--color-white); max-width: 800px; margin: 0 auto 20px; }

.ofc-page-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   VERTICAL TIMELINE
   ============================================================ */
.ofc-timeline {
    position: relative;
    padding: 0;
    margin: 48px 0;
}

.ofc-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
    opacity: 0.3;
}

.ofc-timeline__item {
    display: grid;
    grid-template-columns: 120px 40px 1fr;
    gap: 0 16px;
    align-items: start;
    margin-bottom: 40px;
    position: relative;
}

.ofc-timeline__date {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 600;
    padding-top: 2px;
    text-align: right;
    padding-right: 16px;
    line-height: 1.4;
}

.ofc-timeline__dot {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-top: 5px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.ofc-timeline__item--highlight .ofc-timeline__dot {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    box-shadow: 0 0 0 4px rgba(152,0,2,0.2);
}

.ofc-timeline__content { }

.ofc-timeline__event {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-black);
    margin-bottom: 4px;
}

.ofc-timeline__item--highlight .ofc-timeline__event {
    color: var(--color-primary);
    font-size: 1.0625rem;
}

.ofc-timeline__desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* ============================================================
   LEGAL DEMANDS (numbered list)
   ============================================================ */
.ofc-demands {
    counter-reset: demands;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ofc-demands li {
    counter-increment: demands;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #ebebeb;
}

.ofc-demands li:last-child { border-bottom: none; }

.ofc-demands__num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}

.ofc-demands__text { }
.ofc-demands__text h4 { margin-bottom: 8px; }

/* ============================================================
   MISSION BOX
   ============================================================ */
.ofc-mission-box {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 48px 40px;
    margin: 48px 0;
}

.ofc-mission-box p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    margin: 0;
    color: var(--color-white);
}

/* ============================================================
   PA OGHOROKO FEATURED SECTION
   ============================================================ */
.ofc-oghoroko {
    background: var(--color-black);
    color: var(--color-white);
    border-left: 6px solid var(--color-primary);
    padding: 48px 40px;
    margin-bottom: 48px;
}

.ofc-oghoroko h2 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.ofc-oghoroko__subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.ofc-oghoroko p { color: rgba(255,255,255,0.8); }

/* ============================================================
   BLOG / POST CARDS
   ============================================================ */
.ofc-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ofc-post-card {
    border: 1px solid #e8e8e8;
    padding: 28px;
    transition: box-shadow 0.2s;
}

.ofc-post-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.ofc-post-card__cat {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.ofc-post-card__date {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: #888;
    margin-bottom: 12px;
}

.ofc-post-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--color-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ofc-post-card__excerpt {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.65;
}

.ofc-post-card__link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    text-decoration: none;
}
.ofc-post-card__link:hover { text-decoration: underline; }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.ofc-sidebar { }

.ofc-widget {
    border: 1px solid #e8e8e8;
    padding: 24px;
    margin-bottom: 24px;
}

.ofc-widget__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

.ofc-countdown { text-align: center; }
.ofc-countdown__date {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.ofc-countdown__label { font-size: 0.8125rem; color: #666; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.ofc-contact-wrap {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
}

.ofc-form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 6px;
}

.ofc-form-input,
.ofc-form-textarea,
.ofc-form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-black);
    background: var(--color-white);
    transition: border-color 0.2s;
    margin-bottom: 20px;
    outline: none;
    -webkit-appearance: none;
}

.ofc-form-input:focus,
.ofc-form-textarea:focus,
.ofc-form-select:focus { border-color: var(--color-primary); }

.ofc-form-textarea { min-height: 140px; resize: vertical; }

/* CF7 overrides */
.ofc-contact-wrap .wpcf7 input[type="text"],
.ofc-contact-wrap .wpcf7 input[type="email"],
.ofc-contact-wrap .wpcf7 textarea,
.ofc-contact-wrap .wpcf7 select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-black);
    background: var(--color-white);
    transition: border-color 0.2s;
    margin-bottom: 20px;
    outline: none;
    -webkit-appearance: none;
    display: block;
}

.ofc-contact-wrap .wpcf7 input[type="text"]:focus,
.ofc-contact-wrap .wpcf7 input[type="email"]:focus,
.ofc-contact-wrap .wpcf7 textarea:focus { border-color: var(--color-primary); }

.ofc-contact-wrap .wpcf7 input[type="submit"] {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    margin-bottom: 0;
    transition: background 0.2s;
}

.ofc-contact-wrap .wpcf7 input[type="submit"]:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
}

.ofc-contact-info-block {
    padding: 24px;
    border-left: 4px solid var(--color-primary);
    background: var(--color-light);
    margin-bottom: 20px;
}

.ofc-contact-info-block h4 {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.ofc-contact-info-block p {
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}

/* ============================================================
   PRESS RELEASES LIST
   ============================================================ */
.ofc-press-list { margin: 0; padding: 0; }

.ofc-press-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ebebeb;
}

.ofc-press-item:first-child { border-top: 1px solid #ebebeb; }

.ofc-press-item__date {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 600;
    white-space: nowrap;
}

.ofc-press-item__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.4;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.ofc-text-red { color: var(--color-primary); }
.ofc-text-center { text-align: center; }
.ofc-mt-32 { margin-top: 32px; }
.ofc-mt-48 { margin-top: 48px; }
.ofc-mb-0 { margin-bottom: 0; }

.ofc-bg-light { background: var(--color-light); }
.ofc-bg-black { background: var(--color-black); }

.ofc-divider {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 16px 0 32px;
}
.ofc-divider--center { margin-left: auto; margin-right: auto; }

/* Alert/callout box */
.ofc-callout {
    border-left: 5px solid var(--color-primary);
    background: #fff5f5;
    padding: 20px 24px;
    margin: 24px 0;
}

.ofc-callout p { margin: 0; font-size: 0.9375rem; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
    .ofc-profiles-grid { grid-template-columns: 1fr; }
    .ofc-legal-split { grid-template-columns: 1fr; gap: 32px; }
    .ofc-action-grid { grid-template-columns: 1fr; }
    .ofc-icons-row { grid-template-columns: 1fr; }
    .ofc-footer__grid { grid-template-columns: 1fr 1fr; }
    .ofc-contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .ofc-post-grid { grid-template-columns: 1fr; }
    .ofc-press-item { grid-template-columns: 80px 1fr; }
    .ofc-press-item:last-child > .ofc-btn { display: none; }
    .ofc-urgency__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
    :root { --section-pad: 56px; }

    .ofc-hero { padding: 64px 20px; }
    .ofc-hero__cta { flex-direction: column; align-items: center; }
    .ofc-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .ofc-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .ofc-timeline::before { left: 80px; }
    .ofc-timeline__item { grid-template-columns: 80px 32px 1fr; }
    .ofc-timeline__date { font-size: 0.75rem; }
    .ofc-nav-toggle { display: flex; }
    .ofc-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 2px solid var(--color-primary);
        padding: 16px 0;
        display: none;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .ofc-nav.is-open { display: block; }
    .ofc-nav__list { flex-direction: column; gap: 0; }
    .ofc-nav__list a { padding: 12px 24px; border-bottom: 1px solid #f0f0f0; }
    .ofc-header { position: relative; }
    .ofc-header__inner { flex-wrap: wrap; position: relative; }
    .ofc-topbar__inner { gap: 12px; font-size: 0.75rem; }
    .ofc-oghoroko { padding: 32px 24px; }
}

/* ============================================================
   FIX 1B — Suppress page title on Elementor pages
   ============================================================ */
.page-title,
.entry-title,
.page-header,
.egovt-page-title,
h1.page-title,
.site-main .entry-header,
.elementor-page .entry-header,
.elementor-page .page-header,
.ofc-page .page-title,
.ofc-page .entry-title,
.ofc-page .entry-header {
    display: none !important;
}

/* ============================================================
   FIX 3 — Force Elementor stretched sections full-width
   ============================================================ */
.elementor-section.elementor-section-stretched {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
}

/* ============================================================
   FIX 4 — Mobile responsiveness
   ============================================================ */
@media (max-width: 767px) {
    .elementor-widget-button {
        width: 100% !important;
        margin-bottom: 16px !important;
    }
    .elementor-widget-button .elementor-button {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        padding: 16px 24px !important;
    }
    .elementor-widget-heading h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    .elementor-section .elementor-col-33 {
        width: 100% !important;
        margin-bottom: 32px !important;
        text-align: center !important;
    }
    .detainee-card,
    .elementor-inner-section .elementor-col-25 {
        width: 100% !important;
        margin-bottom: 24px !important;
    }
    .elementor-col-50 {
        width: 100% !important;
    }
    .elementor-section:not(.elementor-inner-section) > .elementor-container > .elementor-row > .elementor-column {
        width: 100% !important;
        margin-bottom: 24px !important;
    }
    .elementor-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    /* Detainee 2-col rows: stack on mobile */
    .elementor-inner-section .elementor-col-40,
    .elementor-inner-section .elementor-col-60 {
        width: 100% !important;
    }
    .elementor-posts-container article,
    .elementor-posts .elementor-post {
        width: 100% !important;
        margin-bottom: 24px !important;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .elementor-inner-section .elementor-col-25 {
        width: 50% !important;
    }
}

/* ============================================================
   FIX 5 — Scroll-to-top: brand the parent theme button,
            hide duplicate (Elementor Pro back-to-top)
   ============================================================ */
#scrollUp {
    background: #980002 !important;
    border-radius: 2px !important;
    bottom: 32px !important;
    right: 32px !important;
    width: 44px !important;
    height: 44px !important;
}
#scrollUp i {
    color: #fff !important;
    line-height: 44px !important;
    font-size: 18px !important;
}
/* Hide Elementor Pro back-to-top if parent theme's is present */
.elementor-back-to-top {
    display: none !important;
}

/* ============================================================
   FIX 6 — Related posts on single blog posts
   ============================================================ */
.okuama-related-posts {
    background: #F8F8F8;
    padding: 64px 0;
    margin-top: 60px;
    border-top: 4px solid #980002;
}
.related-posts-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}
.related-posts-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}
.related-posts-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #980002;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.related-post-card {
    background: #FFFFFF;
    border-top: 4px solid #980002;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.related-post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.related-post-body { padding: 24px; }
.related-post-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #980002;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}
.related-post-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
}
.related-post-title a { color: #000000; text-decoration: none; }
.related-post-title a:hover { color: #980002; }
.related-post-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
}
.related-post-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #980002;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.related-post-link:hover { text-decoration: underline; }

@media (max-width: 767px) {
    .related-posts-grid { grid-template-columns: 1fr; gap: 24px; }
    .related-posts-inner { padding: 0 20px; }
}
@media (max-width: 1024px) and (min-width: 768px) {
    .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   OKUAMA — SINGLE POST PAGE — FULL STYLES
   ============================================ */

.okuama-single-wrap { background: #ffffff; }

/* POST HERO */
.okuama-post-hero { background: #000000; padding: 80px 0 60px; }
.okuama-post-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.okuama-post-cat {
    display: inline-block;
    background: #980002;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    text-decoration: none;
    margin-bottom: 20px;
    margin-right: 6px;
}

.okuama-post-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.okuama-post-meta { font-family: 'Inter', sans-serif; font-size: 14px; color: #aaaaaa; }
.okuama-post-meta .okuama-post-sep { margin: 0 10px; color: #980002; }

/* FEATURED IMAGE */
.okuama-post-featured-img { background: #000; }
.okuama-post-featured-img-inner { max-width: 960px; margin: 0 auto; }
.okuama-post-featured-img img {
    width: 100%; max-height: 500px; object-fit: cover;
    display: block; border-bottom: 4px solid #980002;
}

/* CONTENT WRAP */
.okuama-post-content-wrap { padding: 60px 0; }
.okuama-post-content-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* SHARE BAR */
.okuama-share-bar {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 40px; padding-bottom: 24px;
    border-bottom: 1px solid #eeeeee; flex-wrap: wrap;
}
.okuama-share-label {
    font-family: 'Poppins', sans-serif; font-size: 12px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #000000;
}
.okuama-share-btn {
    font-family: 'Poppins', sans-serif; font-size: 12px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 8px 18px; text-decoration: none; transition: opacity 0.2s;
}
.okuama-share-btn:hover { opacity: 0.85; }
.okuama-share-x  { background: #000000; color: #ffffff; }
.okuama-share-fb { background: #1877F2; color: #ffffff; }
.okuama-share-wa { background: #25D366; color: #ffffff; }

/* POST BODY */
.okuama-post-body { font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.85; color: #333333; }
.okuama-post-body p { margin-bottom: 24px; }
.okuama-post-body h2 {
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 26px;
    color: #000000; margin: 48px 0 16px; padding-left: 16px; border-left: 4px solid #980002;
}
.okuama-post-body h3 {
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px;
    color: #000000; margin: 36px 0 12px;
}
.okuama-post-body a { color: #980002; text-decoration: underline; }
.okuama-post-body blockquote {
    border-left: 5px solid #980002; margin: 36px 0; padding: 20px 28px;
    background: #f8f8f8; font-family: 'Poppins', sans-serif;
    font-size: 18px; font-weight: 600; color: #000000; font-style: normal;
}
.okuama-post-body img { max-width: 100%; height: auto; display: block; margin: 32px auto; }

/* TAGS */
.okuama-post-tags {
    margin-top: 40px; padding-top: 24px; border-top: 1px solid #eeeeee;
    font-family: 'Inter', sans-serif; font-size: 13px; color: #666;
}
.okuama-post-tags a { color: #980002; text-decoration: none; margin-right: 6px; }

/* CAMPAIGN CTA */
.okuama-post-cta { background: #000000; padding: 40px; margin: 48px 0; text-align: center; }
.okuama-post-cta p {
    font-family: 'Poppins', sans-serif; font-size: 18px;
    font-weight: 700; color: #ffffff; margin-bottom: 24px;
}
.okuama-cta-btn {
    display: inline-block; background: #980002; color: #ffffff;
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 14px 32px; text-decoration: none; margin: 6px; transition: background 0.2s;
}
.okuama-cta-btn:hover { background: #6B0001; color: #fff; }
.okuama-cta-outline { background: transparent; border: 2px solid #ffffff; color: #ffffff; }
.okuama-cta-outline:hover { background: #ffffff; color: #000000; }

/* POST NAVIGATION */
.okuama-post-nav {
    display: flex; justify-content: space-between;
    margin-top: 48px; padding-top: 24px; border-top: 1px solid #eeeeee; gap: 16px;
}
.okuama-post-nav a {
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
    color: #980002; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em;
}
.okuama-post-nav a:hover { text-decoration: underline; }

/* COMMENTS */
.okuama-comments-wrap { background: #f8f8f8; padding: 60px 0; border-top: 4px solid #980002; }
.okuama-comments-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.okuama-comments-inner .comments-title,
.okuama-comments-inner #reply-title {
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 24px;
    color: #000000; margin-bottom: 32px;
}
.okuama-comments-inner input[type="text"],
.okuama-comments-inner input[type="email"],
.okuama-comments-inner input[type="url"],
.okuama-comments-inner textarea {
    width: 100%; border: 1px solid #dddddd; border-radius: 0;
    padding: 12px 16px; font-family: 'Inter', sans-serif;
    font-size: 15px; margin-bottom: 16px; box-sizing: border-box;
}
.okuama-comments-inner input[type="text"]:focus,
.okuama-comments-inner input[type="email"]:focus,
.okuama-comments-inner textarea:focus { border-color: #980002; outline: none; }
.okuama-comments-inner input[type="submit"] {
    background: #980002; color: #ffffff; border: none;
    padding: 14px 36px; font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
    cursor: pointer; border-radius: 0;
}
.okuama-comments-inner input[type="submit"]:hover { background: #6B0001; }

/* RELATED POSTS — NEW SELECTORS */
.okuama-related-wrap { background: #ffffff; padding: 64px 0; border-top: 4px solid #980002; }
.okuama-related-inner { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.okuama-related-heading {
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 28px;
    color: #000000; margin-bottom: 40px; padding-bottom: 16px;
    border-bottom: 3px solid #980002; display: inline-block;
}
.okuama-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.okuama-related-card { background: #f8f8f8; border-top: 4px solid #980002; transition: transform 0.2s ease; }
.okuama-related-card:hover { transform: translateY(-4px); }
.okuama-related-thumb img { width: 100%; height: 200px; object-fit: cover; display: block; }
.okuama-related-body { padding: 24px; }
.okuama-related-date {
    font-family: 'Inter', sans-serif; font-size: 12px; color: #980002;
    text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 8px;
}
.okuama-related-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.4; margin-bottom: 12px; }
.okuama-related-title a { color: #000000; text-decoration: none; }
.okuama-related-title a:hover { color: #980002; }
.okuama-related-excerpt { font-family: 'Inter', sans-serif; font-size: 14px; color: #555555; line-height: 1.6; margin-bottom: 16px; }
.okuama-related-link {
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
    color: #980002; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em;
}

/* SINGLE POST — MOBILE */
@media (max-width: 767px) {
    .okuama-post-title { font-size: 26px; }
    .okuama-post-hero { padding: 60px 0 40px; }
    .okuama-post-cta { padding: 28px 20px; }
    .okuama-related-grid { grid-template-columns: 1fr; gap: 20px; }
    .okuama-related-inner { padding: 0 20px; }
    .okuama-post-nav { flex-direction: column; gap: 12px; }
    .okuama-share-bar { gap: 8px; }
}
@media (max-width: 1024px) and (min-width: 768px) {
    .okuama-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   OKUAMA FREEDOM CAMPAIGN — MASTER MOBILE STYLESHEET
   Fixes: viewport scaling, font sizes, layout, touch targets
   ============================================================ */

/* BASE HTML/BODY — Prevent zoom-out on all devices */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* PREVENT HORIZONTAL SCROLL */
.site, .site-content, #page, #content,
.elementor, .elementor-section-wrap {
    overflow-x: hidden;
    max-width: 100%;
}

/* ELEMENTOR BASE */
.elementor-section {
    width: 100% !important;
    max-width: 100% !important;
}
.elementor-container { max-width: 100% !important; }

.elementor-section.elementor-section-stretched {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
}

/* ============================================================
   TABLET — 768px to 1024px
   ============================================================ */
@media screen and (max-width: 1024px) {
    html, body { font-size: 16px; }

    .elementor-col-50,
    .elementor-col-33,
    .elementor-col-25 { width: 50% !important; }
}

/* ============================================================
   MOBILE — max 767px
   ============================================================ */
@media screen and (max-width: 767px) {

    html, body { font-size: 16px !important; }

    /* ALL COLUMNS FULL WIDTH */
    .elementor-column,
    .elementor-col-10, .elementor-col-11, .elementor-col-12,
    .elementor-col-14, .elementor-col-16, .elementor-col-20,
    .elementor-col-25, .elementor-col-30, .elementor-col-33,
    .elementor-col-40, .elementor-col-50, .elementor-col-60,
    .elementor-col-66, .elementor-col-70, .elementor-col-75,
    .elementor-col-80, .elementor-col-83, .elementor-col-100 {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* SECTION PADDING */
    .elementor-section,
    .elementor-section.elementor-section-boxed > .elementor-container,
    .elementor-section.elementor-section-full_width > .elementor-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* HEADINGS */
    .elementor-widget-heading h1,
    .elementor-heading-title.elementor-size-xxl { font-size: 32px !important; line-height: 1.2 !important; }
    .elementor-widget-heading h2,
    .elementor-heading-title.elementor-size-xl  { font-size: 26px !important; line-height: 1.3 !important; }
    .elementor-widget-heading h3,
    .elementor-heading-title.elementor-size-large { font-size: 22px !important; line-height: 1.35 !important; }
    .elementor-widget-heading h4,
    .elementor-heading-title.elementor-size-medium { font-size: 18px !important; line-height: 1.4 !important; }

    /* BODY TEXT */
    .elementor-widget-text-editor,
    .elementor-widget-text-editor p,
    .elementor-text-editor,
    .elementor-text-editor p { font-size: 16px !important; line-height: 1.75 !important; }

    /* BUTTONS */
    .elementor-widget-button { width: 100% !important; margin-bottom: 12px !important; }
    .elementor-widget-button .elementor-button {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        padding: 16px 24px !important;
        font-size: 14px !important;
        min-height: 50px !important;
    }

    /* INNER SECTIONS */
    .elementor-inner-section .elementor-column {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* IMAGES */
    .elementor-widget-image img, img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* ICON BOXES */
    .elementor-widget-icon-box { text-align: center !important; }
    .elementor-icon-box-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* URGENCY COUNTER STRIP */
    .elementor-section[data-element_type="section"] .elementor-col-33 {
        width: 100% !important;
        margin-bottom: 24px !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
        padding-bottom: 24px !important;
    }

    /* DETAINEE CARDS */
    .elementor-col-25 { width: 100% !important; margin-bottom: 20px !important; }

    /* GRIDS */
    .elementor-posts-container, .elementor-posts { display: block !important; }
    .elementor-posts-container article, .elementor-post {
        width: 100% !important;
        margin-bottom: 24px !important;
        display: block !important;
    }

    /* SPACER */
    .elementor-widget-spacer .elementor-spacer-inner { height: 30px !important; }

    /* CONTACT FORM 7 */
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea,
    .wpcf7-form select {
        width: 100% !important;
        font-size: 16px !important;
        padding: 14px 16px !important;
        box-sizing: border-box !important;
    }
    .wpcf7-form input[type="submit"] {
        width: 100% !important;
        padding: 16px !important;
        font-size: 16px !important;
        min-height: 50px !important;
    }

    /* TOP ANNOUNCEMENT BAR */
    .ofc-topbar, .okuama-top-bar, .site-top-bar {
        font-size: 12px !important;
        padding: 8px 16px !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }

    /* BLOCKQUOTES */
    blockquote, .elementor-blockquote {
        padding: 16px 20px !important;
        font-size: 18px !important;
        margin: 24px 0 !important;
    }

    /* PRESS PAGE */
    .elementor-posts .elementor-post__card { width: 100% !important; }

    /* RELATED POSTS */
    .okuama-related-grid, .related-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* SINGLE POST */
    .okuama-post-title { font-size: 26px !important; line-height: 1.25 !important; }
    .okuama-post-hero { padding: 50px 20px 36px !important; }
    .okuama-post-content-inner,
    .okuama-comments-inner,
    .okuama-related-inner,
    .related-posts-inner { padding: 0 16px !important; }
    .okuama-post-cta { padding: 28px 16px !important; }
    .okuama-cta-btn {
        display: block !important;
        width: 100% !important;
        margin: 8px 0 !important;
        text-align: center !important;
    }
    .okuama-post-nav { flex-direction: column !important; gap: 12px !important; }
    .okuama-share-bar { flex-wrap: wrap !important; gap: 8px !important; }
    .okuama-share-btn { flex: 1 !important; text-align: center !important; min-width: 80px !important; }

    /* FOOTER */
    footer .elementor-column,
    .site-footer .elementor-col-33,
    .site-footer .elementor-col-25 {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 32px !important;
    }

    /* TABLES */
    table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        width: 100% !important;
    }

    /* FLEX ROW WRAP */
    .elementor-row { flex-wrap: wrap !important; }
}

/* ============================================================
   SMALL MOBILE — max 480px
   ============================================================ */
@media screen and (max-width: 480px) {
    html, body { font-size: 15px !important; }

    .elementor-widget-heading h1,
    .elementor-heading-title.elementor-size-xxl { font-size: 28px !important; line-height: 1.2 !important; }
    .elementor-widget-heading h2 { font-size: 22px !important; }
    .elementor-widget-heading h3 { font-size: 18px !important; }
    .elementor-heading-title { word-break: break-word !important; }

    .elementor-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* ============================================================
   TOUCH DEVICE IMPROVEMENTS
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
    a, button, .elementor-button { min-height: 44px; }
    .elementor-button:hover,
    .related-post-card:hover,
    .okuama-related-card:hover { transform: none !important; }
    a { -webkit-tap-highlight-color: rgba(152, 0, 2, 0.2); }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .site-header, .site-footer, .okuama-share-bar,
    .okuama-post-cta, .okuama-post-nav { display: none !important; }
    body { font-size: 12pt !important; color: #000 !important; }
    a { color: #000 !important; text-decoration: underline !important; }
}

/* ============================================================
   HOME PAGE — DETAINEE CARDS MOBILE FIX
   ============================================================ */
@media screen and (max-width: 767px) {

    .elementor-element-f70ce46b,
    .elementor-element-7015d5b2,
    .elementor-element-2954b99a,
    .elementor-element-8b234e85 {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .elementor-element-f70ce46b > .elementor-element-populated,
    .elementor-element-7015d5b2 > .elementor-element-populated,
    .elementor-element-2954b99a > .elementor-element-populated,
    .elementor-element-8b234e85 > .elementor-element-populated {
        padding: 24px 20px !important;
        border-left: 4px solid #980002 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
        margin-bottom: 16px !important;
    }

    .elementor-element-f70ce46b .elementor-heading-title,
    .elementor-element-7015d5b2 .elementor-heading-title,
    .elementor-element-2954b99a .elementor-heading-title,
    .elementor-element-8b234e85 .elementor-heading-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        color: #980002 !important;
        font-family: "Poppins", sans-serif !important;
        font-weight: 700 !important;
    }

    .elementor-element-f70ce46b .elementor-text-editor,
    .elementor-element-7015d5b2 .elementor-text-editor,
    .elementor-element-2954b99a .elementor-text-editor,
    .elementor-element-8b234e85 .elementor-text-editor,
    .elementor-element-f70ce46b p,
    .elementor-element-7015d5b2 p,
    .elementor-element-2954b99a p,
    .elementor-element-8b234e85 p {
        font-size: 15px !important;
        line-height: 1.65 !important;
        color: #444444 !important;
        font-family: "Inter", sans-serif !important;
        margin-bottom: 0 !important;
    }

    .elementor-element-bd0dd28e {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .elementor-element-960536e5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .elementor-element-63b3b471 .elementor-heading-title {
        font-size: 26px !important;
        text-align: center !important;
    }

    .elementor-element-960536e5 .elementor-text-editor p {
        font-size: 15px !important;
        text-align: center !important;
        line-height: 1.6 !important;
        padding: 0 8px !important;
    }

    .elementor-element-960536e5 .elementor-button {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        padding: 16px 24px !important;
        font-size: 14px !important;
        margin: 16px 16px 0 !important;
        box-sizing: border-box !important;
    }
}

/* ============================================================
   ABOUT PAGE — COMPLETE MOBILE REDESIGN
   ============================================================ */
@media screen and (max-width: 767px) {

    /* ── HERO ── */
    .elementor-element-735d30c4 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .elementor-element-735d30c4 .elementor-heading-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .elementor-element-735d30c4 .elementor-text-editor p {
        font-size: 15px !important;
        text-align: center !important;
        line-height: 1.65 !important;
    }

    /* ── STORY SECTION ── */
    .elementor-element-3823b728,
    .elementor-element-52d733dc {
        width: 100% !important;
        max-width: 100% !important;
    }

    .elementor-element-22fe0c06 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* ── PROFILES OUTER SECTION ── */
    .elementor-element-2b1cda35 {
        padding: 40px 16px !important;
    }

    /* ── ALL COLUMNS IN PROFILE ROWS FULL WIDTH ── */
    .elementor-element-1008fac7 .elementor-column,
    .elementor-element-ed208064 .elementor-column,
    .elementor-element-aaf19fe7 .elementor-column,
    .elementor-element-5dae8f7b .elementor-column,
    .elementor-element-8f4c4b25 .elementor-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* ── PHOTO PLACEHOLDER — FIXED HEIGHT ── */
    .elementor-element-4c0d8de2,
    .elementor-element-43733dd0,
    .elementor-element-cc0b484f,
    .elementor-element-04e18a55,
    .elementor-element-c6122727 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .elementor-element-4c0d8de2 .elementor-text-editor div,
    .elementor-element-43733dd0 .elementor-text-editor div,
    .elementor-element-cc0b484f .elementor-text-editor div,
    .elementor-element-04e18a55 .elementor-text-editor div,
    .elementor-element-c6122727 .elementor-text-editor div {
        height: 180px !important;
        padding-bottom: 0 !important;
        width: 100% !important;
    }

    /* Center absolute-positioned placeholder text */
    .elementor-element-4c0d8de2 [style*="position:absolute"],
    .elementor-element-43733dd0 [style*="position:absolute"],
    .elementor-element-cc0b484f [style*="position:absolute"],
    .elementor-element-04e18a55 [style*="position:absolute"],
    .elementor-element-c6122727 [style*="position:absolute"] {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        text-align: center !important;
    }

    /* ── TEXT COLUMNS ── */
    .elementor-element-8c6b6a8b,
    .elementor-element-8d3ac3db,
    .elementor-element-98e0c451,
    .elementor-element-4fe9b2a4,
    .elementor-element-8c20e67f {
        width: 100% !important;
        max-width: 100% !important;
    }

    .elementor-element-8c6b6a8b > .elementor-element-populated,
    .elementor-element-8d3ac3db > .elementor-element-populated,
    .elementor-element-98e0c451 > .elementor-element-populated,
    .elementor-element-4fe9b2a4 > .elementor-element-populated,
    .elementor-element-8c20e67f > .elementor-element-populated {
        padding: 20px 16px 20px 16px !important;
        border-left: none !important;
        border: none !important;
    }

    /* ── PROFILE ROW SEPARATORS ── */
    .elementor-element-ed208064,
    .elementor-element-aaf19fe7,
    .elementor-element-5dae8f7b,
    .elementor-element-8f4c4b25 {
        border-top: 1px solid #eeeeee !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        margin: 0 !important;
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    /* ── DETAINEE NAME ── */
    .elementor-element-1008fac7 .elementor-heading-title,
    .elementor-element-ed208064 .elementor-heading-title,
    .elementor-element-aaf19fe7 .elementor-heading-title,
    .elementor-element-5dae8f7b .elementor-heading-title,
    .elementor-element-8f4c4b25 .elementor-heading-title {
        font-size: 22px !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
        margin-bottom: 8px !important;
    }

    /* ── DETAINEE BODY TEXT ── */
    .elementor-element-1008fac7 .elementor-text-editor p,
    .elementor-element-ed208064 .elementor-text-editor p,
    .elementor-element-aaf19fe7 .elementor-text-editor p,
    .elementor-element-5dae8f7b .elementor-text-editor p,
    .elementor-element-8f4c4b25 .elementor-text-editor p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        color: #444444 !important;
        margin-bottom: 10px !important;
    }

    /* ── PA OGHOROKO MEMORIAL — dark card ── */
    .elementor-element-1008fac7 {
        background: #0a0a0a !important;
        padding: 24px 0 !important;
        border: none !important;
    }

    .elementor-element-1008fac7 .elementor-heading-title {
        color: #ffffff !important;
    }

    .elementor-element-1008fac7 .elementor-text-editor p {
        color: #cccccc !important;
    }

    /* ── MISSION BOX ── */
    .elementor-element-f29f5a9f {
        padding: 36px 20px !important;
    }

    /* ── CLOSING SECTIONS ── */
    .elementor-element-147e7704 {
        padding: 36px 20px !important;
    }
}

/* Extra small phones */
@media screen and (max-width: 400px) {
    .elementor-element-1008fac7 .elementor-heading-title,
    .elementor-element-ed208064 .elementor-heading-title,
    .elementor-element-aaf19fe7 .elementor-heading-title,
    .elementor-element-5dae8f7b .elementor-heading-title,
    .elementor-element-8f4c4b25 .elementor-heading-title {
        font-size: 20px !important;
    }

    .elementor-element-2b1cda35 {
        padding: 32px 12px !important;
    }
}

/* ============================================================
   ABOUT PAGE — FULL WIDTH + NO SPURIOUS BORDERS
   ============================================================ */
@media screen and (max-width: 767px) {

    /* Nuke any border on every populated wrapper in the profiles section */
    .elementor-element-2b1cda35 .elementor-element-populated,
    .elementor-element-2b1cda35 .elementor-column {
        border-left: none !important;
        border-right: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Remove pseudo-element lines */
    .elementor-element-2b1cda35 .elementor-column::before,
    .elementor-element-2b1cda35 .elementor-column::after,
    .elementor-element-2b1cda35 .elementor-element-populated::before,
    .elementor-element-2b1cda35 .elementor-element-populated::after {
        display: none !important;
        content: none !important;
        border: none !important;
    }

    /* Full width — section and container */
    .elementor-5887 .elementor-section,
    .elementor-5887 .elementor-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Profiles outer section — no side padding on section itself */
    .elementor-element-2b1cda35 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    /* Profile row inner sections — no side margin/padding leakage */
    .elementor-element-1008fac7,
    .elementor-element-ed208064,
    .elementor-element-aaf19fe7,
    .elementor-element-5dae8f7b,
    .elementor-element-8f4c4b25 {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Columns no side gap */
    .elementor-element-1008fac7 .elementor-column,
    .elementor-element-ed208064 .elementor-column,
    .elementor-element-aaf19fe7 .elementor-column,
    .elementor-element-5dae8f7b .elementor-column,
    .elementor-element-8f4c4b25 .elementor-column {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
    }

    /* Populated wrappers — uniform content padding, no borders */
    .elementor-element-1008fac7 .elementor-element-populated,
    .elementor-element-ed208064 .elementor-element-populated,
    .elementor-element-aaf19fe7 .elementor-element-populated,
    .elementor-element-5dae8f7b .elementor-element-populated,
    .elementor-element-8f4c4b25 .elementor-element-populated {
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border: none !important;
        border-left: none !important;
    }

    /* Pa Oghoroko — dark bg spans full width */
    .elementor-element-1008fac7 .elementor-element-populated {
        background: #0a0a0a !important;
    }

    /* Photo placeholder text-editor div */
    .elementor-element-4c0d8de2 .elementor-text-editor > div,
    .elementor-element-43733dd0 .elementor-text-editor > div,
    .elementor-element-cc0b484f .elementor-text-editor > div,
    .elementor-element-04e18a55 .elementor-text-editor > div,
    .elementor-element-c6122727 .elementor-text-editor > div {
        height: 160px !important;
        padding-bottom: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ============================================================
   PRESS PAGE — COMPLETE MOBILE REDESIGN
   ============================================================ */
@media screen and (max-width: 767px) {

    /* ── FULL WIDTH BASE ── */
    .elementor-5890 .elementor-section,
    .elementor-5890 .elementor-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .elementor-5890 .elementor-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-wrap: wrap !important;
    }

    /* Remove column gap padding that creates empty left space */
    .elementor-5890 .elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Boxed containers edge-to-edge */
    .elementor-5890 .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* ── HERO SECTION ── */
    .elementor-element-f7c70970 {
        padding: 60px 20px !important;
    }

    .elementor-element-f7c70970 .elementor-heading-title {
        font-size: 30px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .elementor-element-f7c70970 .elementor-text-editor p {
        font-size: 15px !important;
        text-align: center !important;
    }

    /* ── PRESS KIT OUTER SECTION ── */
    .elementor-element-9aa0fd77 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    .elementor-element-9aa0fd77 > .elementor-container > .elementor-row > .elementor-column > .elementor-element-populated {
        padding: 36px 20px 0 20px !important;
    }

    .elementor-element-9aa0fd77 .elementor-heading-title {
        font-size: 24px !important;
    }

    /* ── PRESS KIT INNER SECTION — stack columns ── */
    .elementor-element-bc6f6173 {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .elementor-element-bc6f6173 > .elementor-container > .elementor-row > .elementor-column > .elementor-element-populated {
        padding: 0 !important;
    }

    /* Press kit card columns — full width, stacked */
    .elementor-element-63029645,
    .elementor-element-ee7faae2 {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Card inner padding — top border accent, no left border */
    .elementor-element-63029645 > .elementor-element-populated,
    .elementor-element-ee7faae2 > .elementor-element-populated {
        padding: 24px 20px !important;
        margin: 0 0 2px 0 !important;
        border: none !important;
        border-top: 4px solid #980002 !important;
        background: #f8f8f8 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Card title */
    .elementor-element-63029645 .elementor-heading-title,
    .elementor-element-ee7faae2 .elementor-heading-title {
        font-family: "Poppins", sans-serif !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #000000 !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    /* Card description */
    .elementor-element-63029645 .elementor-text-editor p,
    .elementor-element-ee7faae2 .elementor-text-editor p {
        font-size: 15px !important;
        line-height: 1.65 !important;
        color: #444444 !important;
        margin-bottom: 16px !important;
    }

    /* Download button full width */
    .elementor-element-63029645 .elementor-button,
    .elementor-element-ee7faae2 .elementor-button {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.1em !important;
        box-sizing: border-box !important;
    }

    /* ── PRESS RELEASES SECTION ── */
    .elementor-element-92e3bd57 {
        padding: 36px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .elementor-element-92e3bd57 .elementor-heading-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .elementor-element-92e3bd57 .elementor-posts-container,
    .elementor-element-92e3bd57 .elementor-posts {
        display: block !important;
        width: 100% !important;
    }

    .elementor-element-92e3bd57 .elementor-post,
    .elementor-element-92e3bd57 article {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        display: block !important;
    }

    .elementor-element-92e3bd57 .elementor-post__card {
        border-top: 4px solid #980002 !important;
        border-radius: 0 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }

    .elementor-element-92e3bd57 .elementor-post__title {
        font-family: "Poppins", sans-serif !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
    }

    .elementor-element-92e3bd57 .elementor-post__title a {
        color: #000000 !important;
        text-decoration: none !important;
    }

    .elementor-element-92e3bd57 .elementor-post__excerpt p {
        font-size: 14px !important;
        color: #555555 !important;
        line-height: 1.6 !important;
    }

    .elementor-element-92e3bd57 .elementor-post__read-more {
        color: #980002 !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
    }

    /* ── MEDIA COVERAGE SECTION ── */
    .elementor-element-6c16aecc {
        padding: 36px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .elementor-element-6c16aecc .elementor-heading-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .elementor-element-6c16aecc .elementor-posts-container,
    .elementor-element-6c16aecc .elementor-posts {
        display: block !important;
        width: 100% !important;
    }

    .elementor-element-6c16aecc .elementor-post,
    .elementor-element-6c16aecc article {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 16px !important;
        display: block !important;
    }

    .elementor-element-6c16aecc .elementor-post__card {
        border-top: 4px solid #980002 !important;
        border-radius: 0 !important;
    }
}

/* ============================================================
   GLOBAL MOBILE FULL WIDTH FIX — ALL PAGES
   Eliminates empty left/right space on all phone views
   ============================================================ */

@media screen and (max-width: 767px) {

    /* ── ROOT LEVEL ── */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* ── WORDPRESS CORE WRAPPERS ── */
    #page, #content, .site, .site-content,
    #primary, .site-main, main#main {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }

    /* ── ELEMENTOR GLOBAL WRAPPERS ── */
    .elementor,
    .elementor-section-wrap,
    .elementor-inner,
    .elementor-section,
    .elementor-top-section,
    .elementor-inner-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* ── ELEMENTOR CONTAINERS ── */
    .elementor-section.elementor-section-boxed > .elementor-container,
    .elementor-section.elementor-section-full_width > .elementor-container,
    .elementor-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* ── ELEMENTOR ROW ── */
    .elementor-row {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-wrap: wrap !important;
        display: flex !important;
    }

    /* ── COLUMN GAP FIXES ── */
    .elementor-column-gap-default > .elementor-row,
    .elementor-column-gap-narrow > .elementor-row,
    .elementor-column-gap-extended > .elementor-row,
    .elementor-column-gap-wide > .elementor-row,
    .elementor-column-gap-wider > .elementor-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated,
    .elementor-column-gap-narrow > .elementor-row > .elementor-column > .elementor-element-populated,
    .elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated,
    .elementor-column-gap-wide > .elementor-row > .elementor-column > .elementor-element-populated,
    .elementor-column-gap-wider > .elementor-row > .elementor-column > .elementor-element-populated {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* ── ALL COLUMNS FULL WIDTH ── */
    .elementor-column {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ── COLUMN POPULATED WRAPPER ── */
    .elementor-column > .elementor-element-populated {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    /* ── STRETCHED SECTIONS ── */
    .elementor-section.elementor-section-stretched {
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        position: relative !important;
    }

    /* ── INNER SECTIONS ── */
    .elementor-inner-section > .elementor-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .elementor-inner-section .elementor-column > .elementor-element-populated {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* ── MEDIA ── */
    img, .elementor-widget-image img, video {
        max-width: 100% !important;
        height: auto !important;
    }

    /* ── WIDGETS ── */
    .elementor-widget-wrap,
    .elementor-widget,
    .elementor-widget-text-editor,
    .elementor-widget-heading,
    .elementor-widget-button {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ── BUTTONS ── */
    .elementor-widget-button .elementor-button-wrapper {
        text-align: center !important;
    }

    .elementor-widget-button .elementor-button {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* ── CONTACT FORM 7 ── */
    .wpcf7, .wpcf7-form {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea,
    .wpcf7-form select {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
    }

    /* ── HEADER ── */
    .site-header, header.site-header, #masthead {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    /* ── FOOTER ── */
    .site-footer, footer.site-footer, #colophon {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* ── TOP ANNOUNCEMENT BAR ── */
    .okuama-top-bar, .site-top-bar, [class*="top-bar"] {
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        text-align: center !important;
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* ── HERO SECTIONS ── */
    .elementor-element-735d30c4,
    .elementor-element-369edda6,
    .elementor-element-1320e749,
    .elementor-element-f7c70970,
    .elementor-element-45ab0cc7 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* ── CONTENT SECTIONS ── */
    .elementor-element-a7400d6d,
    .elementor-element-960536e5,
    .elementor-element-7f35dbb2,
    .elementor-element-7b40fa79,
    .elementor-element-1f42e49e,
    .elementor-element-22fe0c06,
    .elementor-element-2b1cda35,
    .elementor-element-147e7704,
    .elementor-element-b76ccd85,
    .elementor-element-ee585231,
    .elementor-element-3b61e309,
    .elementor-element-168f1a1e,
    .elementor-element-63fed45f,
    .elementor-element-7e86f9c9,
    .elementor-element-9aa0fd77,
    .elementor-element-92e3bd57,
    .elementor-element-6c16aecc,
    .elementor-element-1d6f9b76,
    .elementor-element-32935ec0 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* ── PER-PAGE FULL WIDTH OVERRIDES ── */
    .elementor-5886 .elementor-container,
    .elementor-5887 .elementor-container,
    .elementor-5888 .elementor-container,
    .elementor-5889 .elementor-container,
    .elementor-5890 .elementor-container,
    .elementor-5891 .elementor-container {
        max-width: 100% !important;
    }

    .elementor-5886 .elementor-row,
    .elementor-5887 .elementor-row,
    .elementor-5888 .elementor-row,
    .elementor-5889 .elementor-row,
    .elementor-5890 .elementor-row,
    .elementor-5891 .elementor-row {
        margin: 0 !important;
    }
}

/* ── TABLET ── */
@media screen and (max-width: 1024px) {
    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .elementor-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ============================================================
   RELEASE PAGE — COMPLETE MOBILE FULL WIDTH FIX
   ============================================================ */
@media screen and (max-width: 767px) {

    /* ── ALL RELEASE CONTAINERS FULL WIDTH ── */
    .elementor-5889,
    .elementor-5889 .elementor-section,
    .elementor-5889 .elementor-container,
    .elementor-5889 .elementor-row,
    .elementor-5889 .elementor-column,
    .elementor-5889 .elementor-inner-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* ── HERO ── */
    .elementor-element-1320e749 {
        padding: 60px 20px !important;
    }

    .elementor-element-1320e749 .elementor-heading-title {
        font-size: 30px !important;
        text-align: center !important;
    }

    /* ── PROFILES OUTER SECTION ── */
    .elementor-element-168f1a1e {
        padding: 0 !important;
        width: 100% !important;
    }

    /* ── EACH PROFILE ROW ── */
    .elementor-element-cdc2bea7,
    .elementor-element-9308d3c0,
    .elementor-element-94e5261e,
    .elementor-element-1ab975db {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-bottom: 1px solid #eeeeee !important;
    }

    /* All columns in profile rows full width */
    .elementor-element-cdc2bea7 .elementor-column,
    .elementor-element-9308d3c0 .elementor-column,
    .elementor-element-94e5261e .elementor-column,
    .elementor-element-1ab975db .elementor-column {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Photo column — no padding, edge to edge */
    .elementor-element-0f47ec5f > .elementor-element-populated,
    .elementor-element-f3f082f7 > .elementor-element-populated,
    .elementor-element-45633eaa > .elementor-element-populated,
    .elementor-element-b0fbdc50 > .elementor-element-populated {
        padding: 0 !important;
        width: 100% !important;
        border: none !important;
    }

    /* Text column — comfortable content padding */
    .elementor-element-86a13d18 > .elementor-element-populated,
    .elementor-element-20c60b2c > .elementor-element-populated,
    .elementor-element-852b72a0 > .elementor-element-populated,
    .elementor-element-24bf8894 > .elementor-element-populated {
        padding: 24px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border: none !important;
    }

    /* ── PHOTO PLACEHOLDER — FULL WIDTH FIXED HEIGHT ── */
    .elementor-element-0f47ec5f .elementor-text-editor > div,
    .elementor-element-f3f082f7 .elementor-text-editor > div,
    .elementor-element-45633eaa .elementor-text-editor > div,
    .elementor-element-b0fbdc50 .elementor-text-editor > div {
        width: 100% !important;
        height: 200px !important;
        padding-bottom: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Reset absolutely-positioned inner divs */
    .elementor-element-0f47ec5f .elementor-text-editor div div,
    .elementor-element-f3f082f7 .elementor-text-editor div div,
    .elementor-element-45633eaa .elementor-text-editor div div,
    .elementor-element-b0fbdc50 .elementor-text-editor div div {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        text-align: center !important;
        height: auto !important;
        padding-bottom: 0 !important;
    }

    /* ── DETAINEE NAME ── */
    .elementor-element-cdc2bea7 h2, .elementor-element-cdc2bea7 h3,
    .elementor-element-9308d3c0 h2, .elementor-element-9308d3c0 h3,
    .elementor-element-94e5261e h2, .elementor-element-94e5261e h3,
    .elementor-element-1ab975db h2, .elementor-element-1ab975db h3 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
        margin-bottom: 6px !important;
        color: #980002 !important;
    }

    /* ── ROLE/TITLE ── */
    .elementor-element-cdc2bea7 h4, .elementor-element-9308d3c0 h4,
    .elementor-element-94e5261e h4, .elementor-element-1ab975db h4 {
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        color: #000000 !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
    }

    /* ── BODY TEXT ── */
    .elementor-element-cdc2bea7 p, .elementor-element-9308d3c0 p,
    .elementor-element-94e5261e p, .elementor-element-1ab975db p {
        font-size: 15px !important;
        line-height: 1.75 !important;
        color: #333333 !important;
        margin-bottom: 12px !important;
    }

    /* ── PA OGHOROKO MEMORIAL ── */
    .elementor-element-63fed45f {
        padding: 36px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .elementor-element-63fed45f .elementor-heading-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .elementor-element-63fed45f p {
        font-size: 15px !important;
        line-height: 1.75 !important;
    }

    /* ── UPDATES FEED ── */
    .elementor-element-7e86f9c9 {
        padding: 36px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .elementor-element-7e86f9c9 .elementor-heading-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .elementor-element-7e86f9c9 .elementor-posts-container,
    .elementor-element-7e86f9c9 .elementor-posts {
        display: block !important;
        width: 100% !important;
    }

    .elementor-element-7e86f9c9 .elementor-post,
    .elementor-element-7e86f9c9 article {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        display: block !important;
    }

    .elementor-element-7e86f9c9 .elementor-post__card {
        border-top: 4px solid #980002 !important;
        border-radius: 0 !important;
    }

    .elementor-element-7e86f9c9 .elementor-post__title {
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
    }

    .elementor-element-7e86f9c9 .elementor-post__excerpt p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #555555 !important;
    }

    .elementor-element-7e86f9c9 .elementor-post__read-more {
        color: #980002 !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
    }
}
