/* ================================================================
   Oceanic Express LLP — Common Styles
   Path: /includes/css/style.css
================================================================ */

/* ── SHARED ELEMENTS ── */
.oe-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.oe-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.oe-breadcrumb a:hover { color: var(--oe-orange); }
.oe-breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.oe-breadcrumb .current { color: var(--oe-orange); font-weight: 600; }

/* ── NEWS INDEX (index.php) ── */

/* Page Hero */
.oe-news-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2f55 50%, #0f2040 100%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.oe-news-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.oe-news-hero .auto-container { position: relative; z-index: 2; }
.oe-news-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 12px;
    line-height: 1.2;
}
.oe-news-hero h1 span { color: var(--oe-orange); }
.oe-news-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin: 0 0 20px;
}

/* Controls Bar */
.oe-controls-bar {
    background: #fff;
    border-bottom: 2px solid #f0f4f8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.oe-controls-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.oe-search-wrap {
    display: flex;
    align-items: center;
    background: #f4f7fc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 14px;
    gap: 10px;
    min-width: 240px;
    transition: border-color 0.2s;
}
.oe-search-wrap:focus-within { border-color: var(--oe-orange); }
.oe-search-wrap i { color: #94a3b8; font-size: 14px; }
.oe-search-wrap input {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 100%;
    color: #1e293b;
}
.oe-search-clear {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: color 0.2s;
}
.oe-search-clear:hover { color: var(--oe-orange); }
.oe-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}
.oe-cat-pill {
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}
.oe-cat-pill:hover,
.oe-cat-pill.active {
    background: var(--oe-orange);
    border-color: var(--oe-orange);
    color: #fff;
}

/* News Section */
.oe-news-section {
    background: #f8fafc;
    padding: 60px 0 80px;
    min-height: 400px;
}

/* Featured Card */
.oe-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    margin-bottom: 48px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.oe-featured-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.14); }
.oe-featured-img-wrap { position: relative; overflow: hidden; min-height: 320px; }
.oe-featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.oe-featured-card:hover .oe-featured-img-wrap img { transform: scale(1.04); }
.oe-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--oe-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.oe-featured-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, #0a1628, #1a2f55);
    display: flex;
    align-items: center;
    justify-content: center;
}
.oe-featured-img-placeholder i { font-size: 64px; color: rgba(255,255,255,0.15); }
.oe-featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.oe-post-cat {
    display: inline-block;
    color: var(--oe-orange);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.oe-featured-title {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.35;
    margin: 0 0 16px;
}
.oe-featured-title a { color: #0a1628; text-decoration: none; transition: color 0.2s; }
.oe-featured-title a:hover { color: var(--oe-orange); }
.oe-featured-excerpt { color: #64748b; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.oe-post-meta { color: #94a3b8; font-size: 13px; margin-bottom: 24px; display: flex; gap: 16px; }
.oe-post-meta span { display: flex; align-items: center; gap: 6px; }

/* Read Article Button Fix */
.oe-read-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--oe-orange) !important;
    color: #ffffff !important; /* Force white text */
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    align-self: flex-start !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.oe-read-btn:hover { 
    background: var(--oe-orange-dark) !important; 
    color: #ffffff !important; 
    transform: translateX(3px) !important; 
}

/* Grid Cards */
.oe-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.oe-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.oe-news-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.oe-card-img-wrap { position: relative; overflow: hidden; height: 200px; }
.oe-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.oe-news-card:hover .oe-card-img-wrap img { transform: scale(1.06); }
.oe-card-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0a1628, #1a3a6e);
    display: flex; align-items: center; justify-content: center;
}
.oe-card-img-placeholder i { font-size: 40px; color: rgba(255,255,255,0.15); }
.oe-card-cat-badge {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(10,22,40,0.85);
    color: var(--oe-orange);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}
.oe-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.oe-card-title {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    margin: 0 0 10px;
}
.oe-card-title a { color: #0a1628; text-decoration: none; transition: color 0.2s; }
.oe-card-title a:hover { color: var(--oe-orange); }
.oe-card-excerpt { color: #64748b; font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.oe-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f1f5f9; padding-top: 14px; margin-top: auto; }
.oe-card-date { color: #94a3b8; font-size: 12px; display: flex; align-items: center; gap: 5px; }
.oe-card-read-more { color: var(--oe-orange); font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.oe-card-read-more:hover { gap: 9px; color: var(--oe-orange); }

/* No Results */
.oe-no-results {
    text-align: center;
    padding: 80px 20px;
    display: none;
}
.oe-no-results i { font-size: 56px; color: #cbd5e1; margin-bottom: 20px; display: block; }
.oe-no-results h3 { font-family: 'Poppins', sans-serif; color: #0a1628; margin-bottom: 8px; }
.oe-no-results p { color: #64748b; margin-bottom: 24px; }
.oe-no-results a { background: var(--oe-orange); color: #fff; padding: 10px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; font-family: 'Poppins', sans-serif; transition: background 0.2s; }
.oe-no-results a:hover { background: var(--oe-orange-dark); }
.oe-no-results.visible { display: block; }

/* Pagination */
.oe-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
.oe-page-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}
.oe-page-btn:hover, .oe-page-btn.active {
    background: var(--oe-orange);
    border-color: var(--oe-orange);
    color: #fff;
}

/* Section header */
.oe-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.oe-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a1628;
    margin: 0;
}
.oe-section-title span { color: var(--oe-orange); }
.oe-count-badge { background: #f1f5f9; color: #64748b; font-size: 13px; padding: 4px 14px; border-radius: 50px; font-family: 'Poppins', sans-serif; }

/* ── SIDEBAR (sidebar.php) ── */
body .oe-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}
body .oe-sidebar-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
    display: block !important;
    margin-bottom: 30px !important;
}
body .oe-sidebar-card-header {
    padding: 20px 24px !important;
    border-bottom: 1.5px solid #f1f5f9 !important;
    background: #fff !important;
}
body .oe-sidebar-card-header h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
    margin: 0 !important;
}
body .oe-sidebar-card-header h3 span { color: var(--oe-orange) !important; }

body .oe-sidebar-card-body { padding: 20px 24px !important; background: #fff !important; }

/* About Widget */
body .oe-about-card-body { text-align: center !important; padding: 30px 24px !important; }
body .oe-about-card-body img { max-width: 180px !important; margin-bottom: 20px !important; }
body .oe-about-card-body p {
    color: #64748b !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
    font-family: 'Roboto', sans-serif !important;
}

/* Sidebar CTA Button */
body .oe-sidebar-cta-btn {
    display: block !important;
    width: 100% !important;
    background: #f1f5f9 !important;
    color: #0a1628 !important;
    text-align: center !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
}
body .oe-sidebar-cta-btn:hover {
    background: var(--oe-orange) !important;
    color: #ffffff !important;
}

/* Recent Articles */
body .oe-recent-list { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 18px !important; }
body .oe-recent-list li { display: flex !important; gap: 14px !important; align-items: flex-start !important; border: none !important; padding: 0 !important; background: none !important; }
body .oe-recent-thumb, body .oe-recent-thumb-placeholder {
    width: 64px !important;
    height: 64px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}
body .oe-recent-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
body .oe-recent-thumb-placeholder {
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body .oe-recent-info { display: flex !important; flex-direction: column !important; gap: 4px !important; }
body .oe-recent-info a {
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif !important;
    transition: color 0.2s !important;
}
body .oe-recent-info a:hover { color: var(--oe-orange) !important; }
body .oe-recent-info span {
    color: #94a3b8 !important;
    font-size: 12px !important;
    font-family: 'Poppins', sans-serif !important;
    display: flex !important;
    align-items: center !important;
}

/* Categories List */
body .oe-cats-list { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 2px !important; }
body .oe-cats-list li { display: flex !important; align-items: center !important; justify-content: space-between !important; border: none !important; padding: 0 !important; background: none !important; }
body .oe-cats-list li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 0 !important;
    color: #475569 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.2s !important;
    flex: 1 !important;
}
body .oe-cats-list li a i { color: #cbd5e1 !important; font-size: 13px !important; transition: color 0.2s !important; }
body .oe-cats-list li:hover a { color: var(--oe-orange) !important; padding-left: 5px !important; }
body .oe-cats-list li:hover a i { color: var(--oe-orange) !important; }
body .oe-cats-list li .count {
    background: #f8fafc !important;
    color: #94a3b8 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 50px !important;
}

/* Sidebar CTA Card */
body .oe-sidebar-cta-card {
    background: linear-gradient(135deg, #0a1628, #1a2f55) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: none !important;
}
body .oe-sidebar-cta-inner {
    padding: 28px 24px !important;
    text-align: center !important;
}
body .oe-sidebar-cta-inner i {
    font-size: 40px !important;
    color: var(--oe-orange) !important;
    margin-bottom: 14px !important;
    display: block !important;
}
body .oe-sidebar-cta-inner h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 10px !important;
}
body .oe-sidebar-cta-inner p {
    color: rgba(255,255,255,0.65) !important;
    font-size: 13.5px !important;
    margin: 0 0 20px !important;
    line-height: 1.6 !important;
    font-family: 'Roboto', sans-serif !important;
}
body .oe-sidebar-cta-inner .oe-sidebar-cta-btn {
    background: var(--oe-orange) !important;
    color: #fff !important;
}
body .oe-sidebar-cta-inner .oe-sidebar-cta-btn:hover {
    background: var(--oe-orange-dark) !important;
}

/* ── SINGLE POST (test-news1.php) ── */

/* Post Hero */
.oe-post-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2f55 50%, #0f2040 100%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.oe-post-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.oe-post-hero .auto-container { position: relative; z-index: 2; }
.oe-post-hero .oe-post-cat-label {
    display: inline-block;
    background: var(--oe-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.oe-post-hero h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 20px;
    line-height: 1.25;
    max-width: 820px;
}
.oe-post-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.oe-post-hero-meta span {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 7px;
}
.oe-post-hero-meta span i { color: var(--oe-orange); }
.oe-breadcrumb .current.single-post { color: rgba(255,255,255,0.75); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 380px; }

/* Article Layout */
.oe-article-section {
    background: #f8fafc;
    padding: 60px 0 80px;
}
.oe-article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Main Content */
.oe-article-main {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    overflow: hidden;
}
.oe-article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.oe-article-hero-placeholder {
    width: 100%; height: 420px;
    background: linear-gradient(135deg, #0a1628, #1a3a6e);
    display: flex; align-items: center; justify-content: center;
}
.oe-article-hero-placeholder i { font-size: 80px; color: rgba(255,255,255,0.12); }
.oe-article-body { padding: 40px 44px 44px; }

/* Lead paragraph */
.oe-article-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
    border-left: 4px solid var(--oe-orange);
    padding-left: 20px;
    margin: 0 0 32px;
    font-family: 'Poppins', sans-serif;
}

/* Body typography */
.oe-article-content { font-family: 'Roboto', sans-serif; color: #475569; line-height: 1.85; font-size: 15.5px; }
.oe-article-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a1628;
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}
.oe-article-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 28px 0 10px;
}
.oe-article-content p { margin: 0 0 20px; }
.oe-article-content ul, .oe-article-content ol { margin: 0 0 20px 20px; }
.oe-article-content li { margin-bottom: 8px; }
.oe-article-content strong { color: #1e293b; font-weight: 600; }

/* Callout box */
.oe-callout {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1.5px solid #fed7aa;
    border-left: 4px solid var(--oe-orange);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0;
}
.oe-callout p { margin: 0; color: #7c2d12; font-size: 15px; font-family: 'Poppins', sans-serif; font-weight: 500; }
.oe-callout i { color: var(--oe-orange); margin-right: 8px; }

/* Tags */
.oe-article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
}
.oe-article-tags .label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.oe-tag {
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}
.oe-tag:hover { background: var(--oe-orange); border-color: var(--oe-orange); color: #fff; }

/* Share bar */
.oe-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}
.oe-share-bar .label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0a1628;
}
.oe-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.oe-share-btn:hover { opacity: 0.85; }
.oe-share-btn.linkedin { background: #0077b5; color: #fff; }
.oe-share-btn.twitter  { background: #1da1f2; color: #fff; }
.oe-share-btn.whatsapp { background: #25d366; color: #fff; }

/* Back link */
.oe-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--oe-orange);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 32px;
    transition: gap 0.2s;
}
.oe-back-link:hover { gap: 12px; color: var(--oe-orange); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .oe-featured-card { grid-template-columns: 1fr; }
    .oe-featured-img-wrap { min-height: 240px; }
    .oe-featured-body { padding: 28px 28px; }
    .oe-news-grid { grid-template-columns: repeat(2, 1fr); }
    .oe-article-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .oe-news-hero h1 { font-size: 28px; }
    .oe-news-grid { grid-template-columns: 1fr; }
    .oe-controls-inner { flex-direction: column; align-items: stretch; }
    .oe-search-wrap { min-width: unset; }
    .oe-post-hero h1 { font-size: 24px; }
    .oe-article-body { padding: 24px 20px 28px; }
    .oe-article-hero-img,
    .oe-article-hero-placeholder { height: 260px; }
}
