/**
 * Ogi-Docs Theme Master Stylesheet
 * 100% Native, Modern, High-Contrast Typography & Visual Layout
 *
 * @package Ogi-Docs
 * @version 1.0.0
 */

:root {
    --primary: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #fef2f2;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-dark: #090d16;
    --slate-text: #334155;
    --slate-light: #64748b;
    --bg-page: #f8fafc;
    --border-color: #e2e8f0;
    --border-dark: #334155;
    --success: #059669;
    --amber: #d97706;
    --blue: #2563eb;
    --purple: #7c3aed;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.05);
}

/* Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.ogi-body-wrapper {
    font-family: 'Yantramanav', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--navy);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease, opacity 0.15s ease;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.ogi-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.space-y-main > * + * {
    margin-top: 36px;
}

/* 1. Top Bar */
.ogi-topbar {
    background: var(--navy-dark);
    color: #94a3b8;
    font-size: 12px;
    border-bottom: 1px solid #1e293b;
    padding: 6px 0;
}
.ogi-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.ogi-topbar-left, .ogi-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}
.topbar-link {
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 600;
}
.topbar-link:hover { color: #ffffff; text-decoration: underline; }
.topbar-link.text-amber { color: #f59e0b; }
.topbar-sep { color: #334155; font-size: 10px; }

/* 2. Main Masthead */
.ogi-masthead {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}
.ogi-masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ogi-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ogi-logo-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.ogi-logo-badge.small {
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}
.logo-txt-main { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; }
.logo-txt-sub { font-size: 9px; font-weight: 800; opacity: 0.9; letter-spacing: 1px; }

.ogi-logo-titles { display: flex; flex-direction: column; }
.site-title { font-size: 24px; font-weight: 900; color: var(--navy); line-height: 1.1; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.5px; }
.site-description { font-size: 11px; color: var(--slate-light); font-weight: 600; }

.ogi-header-search {
    flex: 1;
    max-width: 440px;
}
.ogi-search-form {
    display: flex;
    position: relative;
    width: 100%;
}
.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    font-size: 13px;
    pointer-events: none;
}
.ogi-search-field {
    width: 100%;
    padding: 9px 90px 9px 36px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 13px;
    outline: none;
    transition: all 0.2s;
}
.ogi-search-field:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.ogi-search-submit {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--navy);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}
.ogi-search-submit:hover { background: var(--primary); }

.ogi-header-actions { display: flex; align-items: center; gap: 10px; }
.ogi-btn-tools {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.15s;
}
.ogi-btn-tools:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    background: var(--primary);
}

.ogi-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: #f1f5f9;
    border-radius: var(--radius-sm);
}
.ogi-mobile-menu-btn .bar {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
}

/* 3. Primary Navigation */
.ogi-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}
.ogi-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}
.ogi-menu-list::-webkit-scrollbar { display: none; }
.ogi-menu-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
}
.ogi-menu-list li a:hover,
.ogi-menu-list li.current-menu-item a {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: #fef2f2;
}
.nav-chip {
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 800;
}
.nav-chip.amber { background: #fef3c7; color: #b45309; }
.nav-chip.emerald { background: #d1fae5; color: #047857; }
.nav-chip.blue { background: #dbeafe; color: #1d4ed8; }

/* 4. Breaking News Ticker */
.ogi-breaking-ticker {
    background: var(--navy);
    color: #ffffff;
    font-size: 13px;
    border-bottom: 1px solid #1e293b;
    overflow: hidden;
}
.ogi-breaking-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 38px;
}
.breaking-label {
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
}
.breaking-marquee-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.breaking-marquee {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
}
.breaking-marquee:hover {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1f5f9;
}
.marquee-item:hover { color: #fca5a5; }
.item-badge { font-weight: 700; font-size: 12px; }
.item-title { font-weight: 500; }
.item-sep { color: #475569; }

/* 5. Live Share Market Ticker */
.ogi-market-ticker {
    background: #090d16;
    color: #cbd5e1;
    font-size: 12px;
    border-bottom: 1px solid #1e293b;
    cursor: pointer;
    transition: background 0.15s;
}
.ogi-market-ticker:hover { background: #0c1220; }
.ogi-market-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    gap: 12px;
}
.market-badge {
    background: rgba(5, 150, 105, 0.2);
    border: 1px solid rgba(5, 150, 105, 0.4);
    color: #34d399;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}
.pulse-green {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}
.market-marquee-wrap {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.market-marquee {
    display: flex;
    align-items: center;
    gap: 14px;
}
.market-quote {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.market-quote .symbol { color: #94a3b8; font-weight: 600; font-size: 11px; }
.market-quote .price { color: #ffffff; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.market-quote .change.up { color: #34d399; font-weight: 700; font-size: 11px; }
.market-quote .change.down { color: #f87171; font-weight: 700; font-size: 11px; }
.market-sep { color: #334155; }
.market-action-hint {
    color: #f59e0b;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Quickbar Category Strip */
.ogi-category-quickbar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}
.quickbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
}
.quickbar-label { font-size: 12px; font-weight: 700; color: var(--slate-light); text-transform: uppercase; }
.quickbar-buttons { display: flex; gap: 8px; }
.quick-btn {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    background: #f1f5f9;
    color: var(--navy);
    transition: all 0.15s;
}
.quick-btn:hover, .quick-btn.active { background: var(--primary); color: #ffffff; }
.quick-btn.amber:hover { background: var(--amber); }
.quick-btn.emerald:hover { background: var(--success); }
.quick-btn.blue:hover { background: var(--blue); }
.quick-btn.dark:hover { background: var(--navy); }
.quick-btn.purple:hover { background: var(--purple); }

.btn-quick-tools {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}
.btn-quick-tools:hover { background: var(--primary); }

/* Section Bar */
.section-heading-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--border-color);
    gap: 12px;
    flex-wrap: wrap;
}
.section-heading-bar.border-amber { border-bottom-color: var(--amber); }
.section-heading-bar.border-emerald { border-bottom-color: var(--success); }
.section-heading-bar.border-blue { border-bottom-color: var(--blue); }
.section-heading-bar.border-dark { border-bottom-color: var(--navy); }
.section-heading-bar.border-purple { border-bottom-color: var(--purple); }

.heading-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}
.icon-square {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}
.icon-square.amber { background: var(--amber); }
.icon-square.emerald { background: var(--success); }
.icon-square.blue { background: var(--blue); }
.icon-text { font-size: 22px; }

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
}
.accent-bar { width: 4px; height: 18px; border-radius: 2px; }
.accent-bar.red { background: var(--primary); }
.section-subtitle { font-size: 13px; color: var(--slate-light); margin-top: 2px; font-weight: 500; }
.section-date { font-size: 12px; color: var(--slate-light); font-weight: 600; }
.section-more-link { font-size: 13px; font-weight: 700; color: var(--primary); }
.section-more-link:hover { text-decoration: underline; }
.section-more-link.text-amber { color: var(--amber); }
.section-more-link.text-emerald { color: var(--success); }
.section-more-link.text-blue { color: var(--blue); }
.section-more-link.text-purple { color: var(--purple); }

/* Article Card System */
.ogi-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}
.ogi-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e2e8f0;
}
.card-img-wrap {
    display: block;
    width: 100%;
    height: 100%;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ogi-card:hover .card-img {
    transform: scale(1.03);
}

.card-badges-top {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}
.badge-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.badge-cat.badge-red { background: var(--primary); }
.badge-cat.badge-amber { background: var(--amber); }
.badge-cat.badge-emerald { background: var(--success); }
.badge-cat.badge-blue { background: var(--blue); }
.badge-cat.badge-dark { background: var(--navy); }
.badge-cat.badge-purple { background: var(--purple); }

.badge-breaking {
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.badge-custom {
    background: #0f172a;
    color: #fbbf24;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--slate-light);
    margin-bottom: 8px;
}
.meta-sep { color: #cbd5e1; }

.card-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 8px;
}
.card-title a:hover { color: var(--primary); }

.card-excerpt {
    font-size: 13px;
    color: var(--slate-text);
    line-height: 1.5;
    margin-bottom: 12px;
}

.card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--slate-light);
}
.read-more-link { font-weight: 700; color: var(--primary); }
.read-more-link:hover { text-decoration: underline; }

/* Direct Apply Button */
.btn-apply-direct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 14px;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 5px rgba(5, 150, 105, 0.25);
    transition: all 0.15s;
}
.btn-apply-direct:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.35);
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}
.btn-apply-direct.full-width { width: 100%; }

/* Featured Card Modifier */
.ogi-card-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 24px;
}
.ogi-card-featured .card-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 320px;
}
.ogi-card-featured .card-body {
    padding: 24px;
}
.ogi-card-featured .card-title {
    font-size: 24px;
    line-height: 1.3;
}

/* Horizontal Card Modifier */
.ogi-card-horizontal {
    display: flex;
    flex-direction: row;
    gap: 14px;
    padding: 12px;
}
.ogi-card-horizontal .card-media {
    width: 140px;
    height: 95px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    aspect-ratio: auto;
}
.ogi-card-horizontal .card-body {
    padding: 0;
}
.ogi-card-horizontal .card-title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 6px;
}
.badge-cat-mini {
    position: absolute;
    bottom: 4px;
    left: 4px;
    font-size: 9px;
    font-weight: 800;
    color: #ffffff;
    padding: 1px 5px;
    border-radius: 3px;
}
.card-footer-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--slate-light);
    margin-top: 4px;
}
.link-apply-mini {
    color: #059669;
    font-weight: 800;
}
.read-link-mini { font-weight: 700; color: var(--primary); }

/* Grids */
.secondary-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.cards-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Official Government Directory */
.ogi-yojana-directory-box {
    background: #ffffff;
    border: 1px solid #fef3c7;
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.08);
}
.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}
.directory-header .header-left { display: flex; align-items: center; gap: 10px; }
.portal-badge-icon { font-size: 24px; }
.directory-title { font-size: 16px; font-weight: 800; color: #92400e; }
.directory-desc { font-size: 12px; color: var(--slate-light); }
.secure-badge {
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #a7f3d0;
}

.portal-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.portal-card {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.15s;
}
.portal-card:hover {
    transform: translateY(-2px);
    border-color: #f59e0b;
    box-shadow: var(--shadow-sm);
}
.portal-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.portal-cat-tag { font-size: 10px; font-weight: 800; color: #b45309; text-transform: uppercase; }
.portal-arrow { font-size: 12px; color: #b45309; }
.portal-name { font-size: 13px; font-weight: 800; color: #78350f; margin-bottom: 4px; }
.portal-summary { font-size: 11px; color: #92400e; line-height: 1.4; margin-bottom: 8px; }
.portal-btn { font-size: 11px; font-weight: 800; color: #b45309; }

/* Embedded Tools Box */
.embedded-tool-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}
.tool-banner {
    padding: 10px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
}
.tool-banner.amber { background: #fef3c7; border: 1px solid #fde68a; color: #78350f; }
.tool-banner.emerald { background: #d1fae5; border: 1px solid #a7f3d0; color: #065f46; }
.banner-title { font-size: 15px; font-weight: 800; }
.banner-desc { font-size: 12px; opacity: 0.9; margin-top: 2px; }

.inline-select-row, .calc-inputs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: flex-end;
}
.calc-inputs-row { grid-template-columns: 1fr 1fr 1fr auto; }
.btn-calc-action {
    background: var(--success);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: var(--radius-md);
    height: 38px;
}
.btn-calc-action:hover { background: #047857; }

.inline-yojana-results {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.yojana-res-item {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
}
.yojana-res-title { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.yojana-res-desc { font-size: 11px; color: var(--slate-text); line-height: 1.4; }
.yojana-res-link { font-size: 11px; font-weight: 700; color: var(--amber); display: inline-block; margin-top: 6px; }

.inline-age-result {
    background: var(--navy);
    color: #ffffff;
    padding: 14px;
    border-radius: var(--radius-md);
    margin-top: 14px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Calculators Split Grid */
.calculators-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}
.calc-widget-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.calc-widget-card.red-border { border-top: 4px solid var(--primary); }
.calc-widget-card.blue-border { border-top: 4px solid var(--blue); }

.widget-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.widget-header h4 { font-size: 15px; font-weight: 800; color: var(--navy); }
.widget-header span { font-size: 11px; color: var(--slate-light); }
.widget-body { padding: 16px; }
.field-item { margin-bottom: 14px; }
.label-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; margin-bottom: 4px; }

/* Range Slider Styling */
.range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.range-slider.red::-webkit-slider-thumb { background: var(--primary); }
.range-slider.blue::-webkit-slider-thumb { background: var(--blue); }

.widget-result-dark {
    background: var(--navy);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 14px;
    margin-top: 14px;
}
.res-mini-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 8px; }
.res-main-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #1e293b; padding-top: 8px; }
.res-main-row strong { font-size: 20px; font-family: 'Plus Jakarta Sans', sans-serif; }
.res-main-row strong.gold { color: #f59e0b; }
.res-main-row strong.sky { color: #38bdf8; }

/* Split Hub Row (Auto & Education) */
.split-hub-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.mini-tool-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 14px;
}
.mini-tool-title { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.mini-tool-inputs { display: flex; gap: 8px; }
.mini-tool-inputs input, .mini-tool-inputs select {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 12px;
    outline: none;
    flex: 1;
}
.mini-tool-inputs button {
    background: var(--navy);
    color: #ffffff;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
}
.mini-tool-output {
    font-size: 12px;
    color: var(--slate-text);
    margin-top: 8px;
    background: #f8fafc;
    padding: 6px 10px;
    border-radius: 4px;
}

/* Breadcrumbs */
.ogi-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--slate-light);
    padding: 14px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.ogi-breadcrumbs a:hover { color: var(--primary); }
.ogi-breadcrumbs .separator { color: #cbd5e1; }
.ogi-breadcrumbs .current { color: var(--navy); font-weight: 600; }

/* Single Article Layout */
.ogi-article-layout, .ogi-content-layout, .ogi-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}
.ogi-single-article {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.entry-header { margin-bottom: 20px; }
.entry-category-wrap { display: flex; gap: 8px; margin-bottom: 12px; }
.entry-title { font-size: 30px; font-weight: 900; line-height: 1.3; color: var(--navy); margin-bottom: 14px; }
.entry-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 13px;
    color: var(--slate-light);
}
.meta-author-group { display: flex; align-items: center; gap: 10px; }
.author-avatar { border-radius: 50%; }
.author-name a { font-weight: 700; color: var(--navy); }
.author-name a:hover { color: var(--primary); }
.meta-stats-group { display: flex; gap: 10px; }
.meta-pill { background: #f1f5f9; padding: 4px 10px; border-radius: 4px; font-weight: 600; }

.entry-thumbnail-wrap {
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.entry-hero-img { width: 100%; height: auto; max-height: 480px; object-fit: cover; }
.wp-caption-text { font-size: 12px; color: var(--slate-light); padding: 6px 0; text-align: center; }

/* Official Apply Banner inside Article */
.ogi-official-apply-banner {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
}
.apply-banner-left { display: flex; align-items: center; gap: 12px; }
.apply-banner-icon { font-size: 32px; }
.apply-banner-title { font-size: 16px; font-weight: 800; color: #065f46; }
.apply-banner-desc { font-size: 12px; color: #047857; margin-top: 2px; }
.btn-official-apply {
    background: #059669;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
}
.btn-official-apply:hover { background: #047857; }

/* Typography */
.ogi-typography {
    font-size: 16px;
    line-height: 1.75;
    color: #1e293b;
}
.ogi-typography p { margin-bottom: 18px; }
.ogi-typography h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 26px 0 12px; border-left: 4px solid var(--primary); padding-left: 10px; }
.ogi-typography h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 20px 0 10px; }
.ogi-typography ul, .ogi-typography ol { margin: 0 0 18px 24px; }
.ogi-typography li { margin-bottom: 6px; }
.ogi-typography blockquote {
    border-left: 4px solid var(--primary);
    background: #fef2f2;
    padding: 14px 18px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 20px 0;
    font-style: italic;
    color: #991b1b;
}
.ogi-typography table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}
.ogi-typography th, .ogi-typography td {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}
.ogi-typography th { background: #f1f5f9; font-weight: 700; }

.entry-tags-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0 16px;
    flex-wrap: wrap;
}
.tags-label { font-size: 13px; font-weight: 700; color: var(--slate-light); }
.tags-list { display: flex; gap: 6px; flex-wrap: wrap; }
.tag-chip {
    background: #f1f5f9;
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}
.tag-chip:hover { background: var(--primary); color: #ffffff; }

.entry-share-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.share-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.share-buttons { display: flex; gap: 8px; }
.share-btn {
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #229ed9; }
.share-btn.facebook { background: #1877f2; }
.share-btn.copy { background: var(--navy); }

.entry-author-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 24px 0;
}
.author-label { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.author-desc { font-size: 13px; color: var(--slate-text); margin-top: 4px; }

.related-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}
.related-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Sidebar Widgets */
.ogi-widget-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.ogi-widget-card.amber { border-top: 4px solid var(--amber); background: #fffdf5; }
.ogi-widget-card.dark { background: var(--navy); color: #ffffff; }
.widget-title { font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.widget-desc { font-size: 12px; margin-bottom: 10px; }
.sidebar-links-list { list-style: none; }
.sidebar-links-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    font-weight: 600;
}
.sidebar-links-list li a:hover { color: var(--primary); }
.sidebar-portal-links { list-style: none; }
.sidebar-portal-links li a {
    display: block;
    padding: 8px 10px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #92400e;
}
.sidebar-tools-buttons { display: flex; flex-direction: column; gap: 8px; }
.sidebar-tools-buttons button {
    background: #1e293b;
    color: #ffffff;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    transition: background 0.15s;
}
.sidebar-tools-buttons button:hover { background: var(--primary); }

/* Category & Archive Pages */
.ogi-archive-header {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.cat-pill-badge {
    display: inline-block;
    background: #f1f5f9;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.archive-title { font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1.2; }
.archive-desc { font-size: 14px; color: var(--slate-text); margin-top: 6px; }

.search-page-box { margin-top: 14px; max-width: 500px; }
.search-page-form { display: flex; gap: 8px; }
.search-page-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    outline: none;
}
.search-page-btn {
    background: var(--primary);
    color: #ffffff;
    padding: 0 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 13px;
}

.ogi-pagination-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.pagination .nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}
.pagination .page-numbers {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    background: #ffffff;
}
.pagination .page-numbers.current {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* 404 Page */
.ogi-404-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    text-align: center;
    max-width: 720px;
    margin: 30px auto;
}
.error-code { font-size: 64px; font-weight: 900; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; }
.error-emoji { font-size: 48px; margin-left: 10px; }
.error-title { font-size: 24px; font-weight: 900; color: var(--navy); margin: 12px 0; }
.error-subtitle { font-size: 14px; color: var(--slate-text); max-width: 540px; margin: 0 auto 20px; }
.error-search-box { max-width: 440px; margin: 0 auto 24px; }
.error-actions-row { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.btn-home-action {
    background: var(--primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 14px;
}
.btn-tools-action {
    background: var(--navy);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 14px;
}

/* Footer */
.ogi-site-footer {
    background: #090d16;
    color: #cbd5e1;
    border-top: 3px solid var(--primary);
    margin-top: 48px;
}
.ogi-footer-inner { padding: 48px 16px 24px; }
.ogi-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-col .footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-brand-title { font-size: 20px; font-weight: 900; color: #ffffff; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-desc { font-size: 13px; color: #94a3b8; line-height: 1.6; margin-bottom: 14px; }
.footer-trust-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-badge { background: #1e293b; color: #38bdf8; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

.footer-heading { font-size: 15px; font-weight: 800; color: #ffffff; margin-bottom: 14px; border-left: 3px solid var(--primary); padding-left: 8px; }
.footer-links { list-style: none; font-size: 13px; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { color: #94a3b8; }
.footer-links li a:hover { color: #ffffff; padding-left: 4px; }
.portals-links li a {
    display: flex;
    justify-content: space-between;
    background: #131b2e;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #1e293b;
    color: #cbd5e1;
    font-size: 12px;
}
.portals-links li a:hover { background: #1e293b; color: #38bdf8; }

.footer-disclaimer-box {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: var(--radius-md);
    padding: 14px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}
.disclaimer-title { color: #9ca3af; font-weight: 700; display: block; margin-bottom: 4px; }

.ogi-footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 16px 0;
    font-size: 12px;
    color: #64748b;
}
.ogi-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.bottom-links { display: flex; align-items: center; gap: 8px; }
.bottom-links a:hover { color: #ffffff; }
.back-to-top { color: #38bdf8; font-weight: 700; }

/* Modals Overlay & System */
.ogi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.ogi-modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}
.ogi-modal-box.large { max-width: 960px; }

.ogi-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}
.ogi-modal-header.dark { background: var(--navy); border-bottom-color: #1e293b; }
.modal-title-group { display: flex; align-items: center; gap: 10px; }
.modal-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.modal-badge-icon.green { background: #059669; }
.modal-title { font-size: 18px; font-weight: 800; color: var(--navy); }
.modal-subtitle { font-size: 12px; color: var(--slate-light); }
.modal-close-btn {
    font-size: 18px;
    color: var(--slate-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
}
.modal-close-btn.light { background: #1e293b; color: #ffffff; }

.ogi-tools-tabs {
    display: flex;
    overflow-x: auto;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 6px 12px 0;
    gap: 4px;
}
.tool-tab {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-text);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border-bottom: 2px solid transparent;
}
.tool-tab.active {
    background: #ffffff;
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.ogi-modal-body { padding: 20px; flex: 1; }
.calculator-card .tool-intro { margin-bottom: 16px; }
.calculator-card .tool-intro h4 { font-size: 16px; font-weight: 800; color: var(--navy); }
.calculator-card .tool-intro p { font-size: 12px; color: var(--slate-light); }

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}
.calc-inputs .input-field, .calc-inputs .input-group { margin-bottom: 16px; }
.calc-inputs label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.text-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    outline: none;
}
.btn-calculate {
    background: var(--navy);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 13px;
    width: 100%;
}

.calc-results.dark-theme {
    background: var(--navy);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.result-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; }
.result-highlight {
    background: #1e293b;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin: 12px 0;
}
.result-highlight.center { text-align: center; }
.highlight-val {
    display: block;
    font-size: 26px;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 4px;
}
.highlight-val.gold { color: #f59e0b; }
.highlight-val.sky { color: #38bdf8; }
.highlight-val.emerald { color: #10b981; }
.highlight-val.red { color: #ef4444; }
.calc-note { font-size: 11px; color: #94a3b8; line-height: 1.4; margin-top: 10px; }

/* Market Terminal Inside Modal */
.market-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    margin-bottom: 14px;
}
.market-table-wrap { overflow-x: auto; margin-bottom: 18px; }
.market-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.market-table th, .market-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}
.market-table th { background: #f8fafc; font-weight: 700; color: var(--slate-light); font-size: 12px; }
.sub-txt { display: block; font-size: 10px; color: var(--slate-light); }
.pill-green { background: #d1fae5; color: #047857; padding: 2px 6px; border-radius: 4px; font-weight: 700; font-size: 11px; }
.pill-red { background: #fee2e2; color: #b91c1c; padding: 2px 6px; border-radius: 4px; font-weight: 700; font-size: 11px; }

.commodities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}
.comm-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.comm-icon { font-size: 22px; }
.comm-name { display: block; font-size: 11px; font-weight: 700; color: var(--slate-light); }
.comm-val { display: block; font-size: 14px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--navy); }
.comm-chg { font-size: 11px; font-weight: 700; }
.comm-chg.up { color: #059669; }
.comm-chg.down { color: #dc2626; }

.market-disclaimer {
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #92400e;
}

.ogi-modal-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}
.btn-close-modal {
    background: var(--navy);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
}

/* Helper Utilities */
.text-green { color: #10b981; }
.text-amber { color: #f59e0b; }
.text-red { color: #ef4444; }
.text-blue { color: #3b82f6; }
.text-white { color: #ffffff; }
.font-bold { font-weight: 700; }
.hidden-mobile { display: inline-block; }

/* Responsive Rules */
@media (max-width: 1024px) {
    .secondary-grid-row { grid-template-columns: repeat(2, 1fr); }
    .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .portal-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .commodities-grid { grid-template-columns: repeat(2, 1fr); }
    .ogi-footer-grid { grid-template-columns: 1fr 1fr; }
    .ogi-card-featured { grid-template-columns: 1fr; }
    .ogi-article-layout, .ogi-content-layout, .ogi-page-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hidden-mobile { display: none !important; }
    .ogi-header-search { display: none; }
    .ogi-mobile-menu-btn { display: flex; }
    .cards-grid-3, .cards-grid-2, .cards-grid-row { grid-template-columns: 1fr; }
    .calculators-split-grid, .split-hub-row { grid-template-columns: 1fr; }
    .calc-inputs-row, .inline-select-row { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
    .portal-cards-grid { grid-template-columns: 1fr; }
    .commodities-grid { grid-template-columns: 1fr; }
    .ogi-footer-grid { grid-template-columns: 1fr; }
    .related-cards-grid { grid-template-columns: 1fr; }
}
