/* ================================================================
   GoDubai SPA & Wellness -- Unified Stylesheet (style.css)
   Shared by: index.asp, category.asp, details.asp
================================================================ */

/* ── 1. Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: Montserrat, 'Segoe UI', Arial, sans-serif;
    background: #e1e1e1;
    color: #313131;
    font-size: 14px;
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── 2. Site Header ──────────────────────────────────────────── */

/* Outer wrapper constrains header content to 1280px */
.site-header-wrap { max-width: 1280px; margin: 0 auto; overflow: visible; }

/* TOP BAR: GoDubai main site nav (dark teal) */
.gd-topbar {
    background: #024d64;
    border-radius: 10px 10px 0 0;
    width: 100%;
    position: relative;
    z-index: 100;
}
.gd-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
}
.gd-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}
.gd-site-logo { flex-shrink: 0; }
.gd-logo-img {
    display: block;
    height: 88px;
    width: auto;
    max-width: 280px;
}
.gd-mainnav { flex: 1; }
.gd-mainnav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.gd-mainnav ul li a {
    display: block;
    color: #cde8f0;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    text-decoration: none;
    white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.gd-mainnav ul li a:hover,
#gdMainNavList li.gd-active a, .gd-mainnav ul li.gd-active a {
  background: #02607E;
  color: #fff;
}


/* Hamburger: hidden in topbar on desktop */
.gd-topbar-inner .nav-toggle { display: none; }

/* Ad banner row */
.header-ad { text-align: center; padding: 6px 8px; background: #fff; }
.header-ad img { display: inline-block; max-width: 728px; width: 100%; height: auto; }

/* BOTTOM BAR: Education nav (teal) */
.nav-bar {
    background: #02607E;
    overflow: visible;
    position: relative;
}
.nav-bar .container { background: transparent; padding: 0 8px; }
.edu-nav-bar { background: #02607E; }

.nav-list,
#mainNavList {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
}
.nav-list li,
#mainNavList li { position: relative; }
.nav-list li a,
#mainNavList li a {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.3;
}
.nav-list li a:hover,
#mainNavList li a:hover { background: rgba(255,255,255,0.15); }
.nav-list::-webkit-scrollbar,
#mainNavList::-webkit-scrollbar { height: 0; }

/* HAMBURGER TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    z-index: 200;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.dd-arrow { font-size: 9px; margin-left: 3px; }

/* MOBILE NAV DRAWER */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 80vw; max-width: 320px; height: 100vh; background: #024d64; z-index: 500; overflow-y: auto; padding: 16px 0; box-shadow: 4px 0 20px rgba(0,0,0,.3); }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li a { display: block; padding: 11px 20px; color: #cde8f0; font-size: 14px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav ul li a:hover { background: rgba(255,255,255,.08); color: #F56435; }
.mobile-nav .mob-section-head { padding: 8px 20px 4px; font-size: 10px; font-weight: 700; color: #F56435; text-transform: uppercase; letter-spacing: 1px; }


/* ── 3. Layout Wrappers ──────────────────────────────────────── */
.site-wrapper { max-width: 1280px; margin: 0 auto; }
.container    { max-width: 1280px; margin: 0 auto; padding: 0 12px; background: #fff; }
.news-wrap    { background: #e1e1e1; padding: 5px 0 5px; }
.page-wrap    { background: #e1e1e1; padding: 5px 0 0; }

/* ── 4. Error Banner ─────────────────────────────────────────── */
.error-banner {
    background: #fff0f0; border-left: 4px solid #e53935;
    padding: 14px 20px; margin-bottom: 24px;
    border-radius: 4px; color: #c62828;
    font-size: 13px;
}

/* ── 5. Shared Buttons ───────────────────────────────────────── */
.btn-all {
    display: inline-flex; align-items: center; gap: 5px;
    background: #F56435; color: #fff; font-size: .8rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
    padding: 7px 16px; border-radius: 3px; transition: background .2s;
}
.btn-all:hover { background: #d44e23; }

.btn-all-lg {
    display: inline-block; padding: 10px 28px;
    background: #F56435; color: #fff;
    font-size: .85rem; font-weight: 600; border-radius: 3px;
    letter-spacing: .4px; transition: background .2s;
}
.btn-all-lg:hover { background: #d44e23; }

.btn-readmore {
    display: inline-flex; align-items: center; gap: 5px;
    background: #F56435; color: #fff; padding: 8px 18px;
    border-radius: 3px; font-size: .78rem; font-weight: 600;
    align-self: flex-start; transition: background .2s;
}
.btn-readmore:hover { background: #d44e23; }

.cat-section { margin-bottom: 0px; }

/* More [Section] button -- homepage stacked sections */
.cat-section-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    margin-bottom: 20px;
}
.btn-more {
    display: inline-block;
    background: #F56435;
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.btn-more:hover { background: #d44e23; color: #fff; }

.back-link {
    display: inline-block; margin-bottom: 18px;
    background: #F56435; color: #fff; padding: 7px 16px;
    border-radius: 4px; font-size: 12px; font-weight: 700;
}
.back-link:hover { background: #d44e23; }

/* ── 6. Shared News Card ─────────────────────────────────────── */
.news-card {
    background: #fff; border-radius: 7px; overflow: hidden;
    border: 1px solid #eee; transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: 0 6px 22px rgba(2,96,126,.18); transform: translateY(-3px); }
.card-img { display: block; aspect-ratio: 16/10; overflow: hidden; background: #f0f0f0; }
.card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s;
    border: 1px solid #02607E; border-radius: 4px;
    box-shadow: 0 2px 6px rgba(2,96,126,.25);
}
.news-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 12px 14px 14px; }
.card-cat {
    display: inline-block; background: #e6f4f8; color: #02607E;
    font-size: .67rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; padding: 2px 8px; border-radius: 2px; margin-bottom: 7px;
}
.card-body h3 { font-size: .88rem; font-weight: 600; line-height: 1.4; margin-bottom: 7px; }
.card-body h3 a { color: #1a1a2e; }
.card-body h3 a:hover { color: #F56435; }
.card-body time { font-size: .72rem; color: #555; }
.card-excerpt {
    font-size: .76rem; color: #666; line-height: 1.45; margin-top: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.no-results {
    background: #f4fafd; border: 1px solid #d0e8f0;
    border-radius: 6px; padding: 24px;
    text-align: center; color: #555; font-size: .9rem;
}

/* ── 7. News Grid ────────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
/* Category pages: 3 columns */
.cat-main .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   8. HOMEPAGE — Slider
═══════════════════════════════════════════════════════════════ */
.slider-block  { margin-bottom: 20px; }
.slider-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.slider-header h2 { font-size: 1.65rem; font-weight: 700; color: #111; }
.slider-header h2 span { color: #F56435; }

/* Slider social icons */
.slider-social { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 6px; padding: 8px 4px 4px; }
.ss-btn { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; color: #fff; text-decoration: none; transition: opacity .2s; }
.ss-btn:hover { opacity: .82; }
.ss-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.ss-rss  { background: #e65c00; }
.ss-fb   { background: #1877f2; }
.ss-x    { background: #000; }
.ss-li   { background: #0a66c2; }
.ss-ig   { background: radial-gradient(circle at 30% 110%, #fd5 0%, #f93 25%, #f09 50%, #c13584 70%, #833ab4 100%); }
.ss-pin  { background: #e60023; }

/* Main slider */
.slider-main {
    position: relative; overflow: hidden;
    border-radius: 8px; background: #111;
    aspect-ratio: 16/7;
}
.slider-track { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.slide { flex: 0 0 100%; width: 100%; height: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: .9; }

/* Slide caption */
.slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 28px 22px;
    background: linear-gradient(transparent, rgba(0,0,0,.82));
    color: #fff;
}
.slide-cat {
    display: inline-block; background: #F56435;
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; padding: 3px 9px; border-radius: 2px; margin-bottom: 8px;
}
.slide-caption h2 { font-size: clamp(1rem, 2.2vw, 1.5rem); font-weight: 700; margin-bottom: 6px; }
.slide-caption h2 a { color: #fff; }
.slide-caption h2 a:hover { text-decoration: underline; }
.slide-caption time { font-size: .78rem; opacity: .75; }

/* Arrows */
.s-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.18); color: #fff;
    border: none; cursor: pointer; font-size: 1.2rem;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 10;
    backdrop-filter: blur(4px);
}
.s-arrow:hover { background: rgba(245,100,53,.85); }
.s-prev { left: 14px; }
.s-next { right: 14px; }

/* Dots */
.s-dots { position: absolute; bottom: 14px; right: 20px; display: flex; gap: 6px; z-index: 10; }
.s-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.45); cursor: pointer;
    transition: background .2s, transform .2s;
}
.s-dot.active { background: #F56435; transform: scale(1.3); }

/* Thumbnail strip */
.thumb-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.thumb {
    display: flex; align-items: flex-start; gap: 8px;
    background: #fff; border-radius: 6px; overflow: hidden;
    cursor: pointer; border: 2px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.thumb.active { border-color: #F56435; box-shadow: 0 2px 10px rgba(245,100,53,.35); }
.thumb img { width: 72px; min-width: 72px; height: 54px; object-fit: cover; flex-shrink: 0; }
.thumb p {
    font-size: .72rem; font-weight: 500; color: #333;
    padding: 6px 6px 6px 0; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   9. HOMEPAGE — Category Tabs
═══════════════════════════════════════════════════════════════ */
.tabs-block { background: #fff; border-radius: 8px; box-shadow: 0 3px 16px rgba(2,96,126,.13); overflow: hidden; }

.tabs-nav {
    display: flex; flex-wrap: wrap; overflow-x: auto; gap: 0;
    background: #02607E;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.4) #02607E;
}
.tabs-nav::-webkit-scrollbar { height: 3px; }
.tabs-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.4); }

.tab-btn {
    flex-shrink: 0; padding: 11px 16px;
    background: transparent; border: none; cursor: pointer;
    color: rgba(255,255,255,.78); font-size: .78rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: .4px;
    border-bottom: 3px solid transparent; transition: all .2s; white-space: nowrap;
}
.tab-btn:hover  { color: #fff; background: rgba(0,0,0,.12); }
.tab-btn.active { color: #fff; border-bottom-color: #fff; background: rgba(0,0,0,.18); }

.tab-pane        { display: none; padding: 20px 24px 24px; }
.tab-pane.active { display: block; }

.pane-header {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 18px;
    padding-bottom: 12px; border-bottom: 2px solid #e8f4f7;
}
.pane-header h3 {
    font-size: 1.1rem; font-weight: 700; color: #02607E;
    border-left: 4px solid #02607E; padding-left: 10px;
}
.pane-footer { text-align: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid #e8f4f7; }

/* ═══════════════════════════════════════════════════════════════
   10. CATEGORY PAGES
═══════════════════════════════════════════════════════════════ */
.breadcrumb { padding: 10px 0 4px; font-size: .78rem; color: #888; }
.breadcrumb a { color: #02607E; }
.breadcrumb a:hover { text-decoration: underline; }

.cat-page-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0 10px; border-bottom: 3px solid #02607E; margin-bottom: 20px;
}
.cat-title { font-size: 1.05rem; font-weight: 700; color: #02607E; border-left: 5px solid #02607E; padding-left: 12px; margin-top: 20px; margin-bottom: 12px; }
.cat-count  { font-size: .78rem; color: #888; font-weight: 500; }

/* Latest Postings – section title (h1) */
.section-title {
    font-size: 1.35rem; font-weight: 700; color: #02607E;
    border-left: 5px solid #02607E; padding: 8px 12px;
    display: flex; align-items: center; gap: 10px;
}
h2.section-title { font-size: 1.05rem; }
.section-title .cat-count {
    background: #02607E; color: #fff;
    font-size: .75rem; font-weight: 700;
    padding: 2px 10px; border-radius: 12px;
    vertical-align: middle;
}

/* Date filter form */
.date-filter {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 8px 14px; margin-bottom: 16px;
    background: #f7fbfd; border: 1px solid #d0e8f0;
    border-radius: 6px; padding: 12px 16px;
}
.date-filter label {
    font-size: .82rem; font-weight: 600; color: #02607E;
}
.date-filter input[type="date"] {
    font-family: inherit; font-size: .82rem; color: #333;
    border: 1px solid #c0d8e4; border-radius: 4px;
    padding: 5px 10px; background: #fff; outline: none;
}
.date-filter input[type="date"]:focus { border-color: #02607E; box-shadow: 0 0 0 2px rgba(2,96,126,.15); }
.filter-btn {
    font-family: inherit; font-size: .82rem; font-weight: 700;
    background: #F56435; color: #fff; border: none;
    border-radius: 4px; padding: 6px 18px; cursor: pointer;
    transition: background .2s;
}
.filter-btn:hover { background: #d44e23; }
.filter-reset {
    font-size: .78rem; color: #02607E; text-decoration: underline;
    white-space: nowrap;
}
.filter-reset:hover { color: #014f68; }

/* Result summary bar */
.result-summary {
    font-size: .83rem; color: #555; margin-bottom: 18px;
    padding: 8px 14px; background: #f0f8fb;
    border-left: 3px solid #02607E; border-radius: 0 4px 4px 0;
}
.result-summary strong { color: #02607E; }

/* Card meta: industry badge + date */
.card-industry {
    display: inline-block; background: #e6f4f8; color: #02607E;
    font-size: .67rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; padding: 2px 8px; border-radius: 2px;
    margin-bottom: 6px;
}
.card-date {
    font-size: .72rem; color: #888; margin: 0 0 6px;
}

/* Two-column layout */
.cat-layout { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 20px; }
.cat-main   { flex: 1; min-width: 0; }
.cat-sidebar { width: 272px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }

/* Featured article */
.featured-article {
    display: flex; gap: 0; background: #fff;
    border-radius: 8px; overflow: hidden; margin-bottom: 22px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 14px rgba(2,96,126,.12);
    transition: box-shadow .2s;
}
.featured-article:hover { box-shadow: 0 6px 24px rgba(2,96,126,.22); }
.featured-img-wrap {
    width: 54%; flex-shrink: 0; display: block;
    overflow: hidden; background: #f0f0f0;
}
.featured-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
    border: 2px solid #02607E;
}
.featured-article:hover .featured-img-wrap img { transform: scale(1.04); }
.featured-body {
    flex: 1; padding: 20px 22px;
    display: flex; flex-direction: column; justify-content: center;
}
.cat-badge {
    display: inline-block; background: #e6f4f8; color: #02607E;
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; padding: 3px 10px; border-radius: 2px; margin-bottom: 10px;
}
.featured-body h2 { font-size: 1.08rem; font-weight: 700; line-height: 1.45; margin-bottom: 12px; color: #1a1a2e; }
.featured-body h2 a:hover { color: #02607E; }
.featured-excerpt {
    font-size: .83rem; color: #555; line-height: 1.65;
    flex: 1; margin-bottom: 16px;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
    overflow: hidden;
}
.grid-label { font-size: .82rem; color: #888; margin-bottom: 14px; font-weight: 500; }

.pl-section { margin-top: 20px; }
.pl-section:last-child { border-bottom: none; }

/* Pagination */
.pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 24px 0 8px; flex-wrap: wrap;
}
.page-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 12px;
    border-radius: 4px; background: #fff; border: 1px solid #ddd;
    color: #333; font-size: .82rem; font-weight: 600; font-family: inherit;
    text-decoration: none; transition: all .2s;
}
.page-btn:hover   { background: #F56435; color: #fff; border-color: #F56435; }
.page-btn.active  { background: #F56435; color: #fff; border-color: #F56435; pointer-events: none; }
.page-btn.disabled{ opacity: .4; pointer-events: none; cursor: default; }

/* Category Sidebar widgets */
/* ── Static Content Pages (Privacy Policy, About, Contact, etc.) ── */
/* ===================== SEARCH PAGE ===================== */
.search-hero { background: #f7fbfd; border: 1px solid #d0e8ef; border-radius: 8px; padding: 24px 20px 16px; margin-bottom: 24px; }
.search-hero-title { font-size: 1.35rem; font-weight: 700; color: #02607E; margin: 0 0 14px; }
.search-hero-form { max-width: 700px; }
.search-hero-row { display: flex; gap: 8px; margin-bottom: 10px; }
.search-hero-row input[type="text"] { flex: 1; padding: 9px 12px; border: 1px solid #b0ccd6; border-radius: 6px; font-size: 14px; font-family: inherit; outline: none; }
.search-hero-row input[type="text"]:focus { border-color: #02607E; box-shadow: 0 0 0 2px rgba(2,96,126,0.12); }
.search-hero-row button { background: #F56435; color: #fff; border: none; padding: 9px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.search-hero-row button:hover { background: #d44e23; }
.search-cat-row { margin-bottom: 10px; }
.search-cat-row select { padding: 7px 10px; border: 1px solid #b0ccd6; border-radius: 6px; font-size: 13px; font-family: inherit; color: #333; min-width: 180px; }
.search-tips { font-size: 12px; color: #666; margin: 4px 0 0; }
.search-meta { font-size: 13px; color: #444; margin-top: 10px; padding-top: 10px; border-top: 1px solid #d8edf2; }
.search-err { color: #c0392b; font-size: 13px; }
.search-empty { font-size: 14px; color: #555; padding: 16px 0; }
.search-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.search-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s; }
.search-card:hover { box-shadow: 0 4px 14px rgba(2,96,126,0.12); }
.search-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.search-card-body { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; }
.search-card-cat { font-size: 11px; font-weight: 600; color: #02607E; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.search-card-title { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.45; margin: 0 0 6px; flex: 1; }
.search-card-title a { color: inherit; text-decoration: none; }
.search-card-title a:hover { color: #02607E; }
.search-card-date { font-size: 11px; color: #888; margin-top: auto; }
.search-pagination { display: flex; gap: 6px; flex-wrap: wrap; margin: 16px 0; }
.search-pagination a, .search-pagination span { padding: 5px 11px; border-radius: 4px; font-size: 13px; border: 1px solid #ccc; text-decoration: none; color: #333; }
.search-pagination a:hover { background: #e0f0f5; border-color: #02607E; color: #02607E; }
.search-pagination .active { background: #F56435; color: #fff; border-color: #F56435; font-weight: 700; }
/* ===================== END SEARCH ===================== */

.static-content { font-size: 14px; line-height: 1.8; color: #313131; margin-bottom: 24px; }
.static-content p { margin-bottom: 12px; text-align: justify; }
.static-content h2 { font-size: 1.1rem; font-weight: 700; color: #02607E; margin: 20px 0 8px; padding-bottom: 4px; border-bottom: 2px solid #e0f0f5; }
.static-content h3 { font-size: 1rem; font-weight: 600; color: #02607E; margin: 16px 0 6px; }
.static-content a { color: #02607E; text-decoration: underline; }
.static-content a:hover { color: #024d64; }
.static-content ul { list-style: none; padding-left: 16px; margin-bottom: 12px; }
.static-content ul li { padding-left: 16px; margin-bottom: 6px; position: relative; }
.static-content ul li::before { content: "\203A"; color: #02607E; font-weight: 700; position: absolute; left: 0; }
.static-content ol { padding-left: 20px; margin-bottom: 12px; counter-reset: ol-counter; list-style: none; }
.static-content ol li { counter-increment: ol-counter; padding-left: 28px; margin-bottom: 6px; position: relative; }
.static-content ol li::before { content: counter(ol-counter); position: absolute; left: 0; top: 1px; background: #02607E; color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.static-content strong { color: #1a1a1a; }
.static-content em { color: #555; }
.static-content table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 13px; }
.static-content th { background: #02607E; color: #fff; padding: 8px 10px; text-align: left; }
.static-content td { padding: 8px 10px; border-bottom: 1px solid #e8e8e8; vertical-align: top; }
.static-content tr:nth-child(even) td { background: #f7fbfd; }

.sidebar-widget { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(2,96,126,.1); }
.widget-title {
    background: #02607E; color: #fff; padding: 10px 14px;
    font-size: .82rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .4px; margin: 0; margin-top: 20px;
}
/* section-hdr = same teal header style used in pr.asp sidebar widgets */
.section-hdr {
    background: #02607E; color: #fff; padding: 10px 14px;
    font-size: .82rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .4px; margin: 0; margin-top: 20px;
}
.section-hdr a { color: #fff; }
.section-hdr .section-title { color: #fff; border-left-color: #fff; }
.sidebar-search { padding: 12px; }
.sidebar-search form { display: flex; gap: 6px; }
.sidebar-search input {
    flex: 1; border: 1px solid #ddd; border-radius: 3px;
    padding: 7px 10px; font-size: .8rem; font-family: Montserrat, sans-serif; outline: none;
}
.sidebar-search input:focus { border-color: #02607E; }
.sidebar-search button {
    background: #F56435; color: #fff; border: none; border-radius: 3px;
    padding: 7px 12px; cursor: pointer; font-size: .88rem; transition: background .2s;
}
.sidebar-search button:hover { background: #d44e23; }

.side-stories { list-style: none; padding: 0; margin: 0; }
.side-stories li { padding: 7px 14px; border-bottom: 1px solid #f0f0f0; }
.side-stories li:last-child { border-bottom: none; }
.side-stories li a { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: #333; text-decoration: none; }
.side-stories li a:hover { color: #02607E; }
.side-stories li img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }

.sidebar-ad { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(2,96,126,.1); margin-top: 12px; }
.sidebar-ad a { display: block; }
.sidebar-ad img { width: 100%; height: auto; object-fit: contain; }
.side-cats { list-style: none; padding: 0; margin: 0; }
.side-cats li { border-bottom: 1px solid #f0f0f0; }
.side-cats li:last-child { border-bottom: none; }
.side-cats li a {
    display: flex; align-items: center; padding: 8px 14px;
    font-size: .78rem; color: #333; transition: background .15s, color .15s;
}
.side-cats li a::before { content: '\203A'; margin-right: 8px; color: #02607E; font-weight: 700; font-size: 1rem; }
.side-cats li a:hover { background: #f0f8fb; color: #02607E; }
.side-cats li.current a { color: #02607E; font-weight: 700; }
.side-cats li.current a::before { content: '\00BB'; }

/* ═══════════════════════════════════════════════════════════════
   11. ARTICLE PAGE (pr.asp)
═══════════════════════════════════════════════════════════════ */
/* Two-column layout */
.layout-wrap { display: flex; gap: 20px; padding: 16px 0 20px; align-items: flex-start; }
.main-col    { flex: 1; min-width: 0; }
.side-col    { width: 270px; flex-shrink: 0; }

/* Article breadcrumb */
.art-breadcrumb { font-size: 11px; color: #666; margin-bottom: 10px; padding: 5px 0; border-bottom: 1px solid #e8e8e8; }
.art-breadcrumb a { color: #02607E; }
.art-breadcrumb a:hover { text-decoration: underline; }

/* Article title */
.art-title { font-size: 22px; font-weight: 700; line-height: 1.35; color: #1a1a1a; margin-bottom: 10px; }

/* Share bar */
.share-bar { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.share-label { font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: .05em; margin-right: 2px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: opacity .15s, transform .1s; color: #fff; white-space: nowrap; }
.share-btn:hover { opacity: .85; transform: translateY(-1px); }
.share-btn svg { flex-shrink: 0; }
.share-fb  { background: #1877f2; }
.share-x   { background: #000; }
.share-wa  { background: #25d366; }
.share-li  { background: #0a66c2; }
.share-pin { background: #e60023; }
.share-copy { background: #F56435; }
@media (max-width: 768px) {
  .share-btn span { display: none; }
  .share-btn { padding: 8px; border-radius: 50%; }
  .share-label { display: none; }
}

/* Hero image */
.art-hero { margin-bottom: 16px; text-align: center; min-height: 200px; }
.art-hero img { display: inline-block; max-width: min(1000px, 100%); height: auto; }
/* Thumbnail-only articles: float small image left, wrap text around it */
.art-body .art-thumb-inline {
    float: left !important;
    max-width: 300px !important;
    width: auto !important;
    height: auto !important;
    margin: 4px 15px 14px 0 !important;
    padding: 0 !important;
    border: 2px solid #02607E;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(2,96,126,0.15);
    display: block;
}

/* Article content */
.art-body { font-size: 14px; line-height: 1.8; color: #313131; margin-bottom: 20px; overflow: hidden; }
.art-body p   { margin-bottom: 10px; text-align: justify; }
.art-body h1, .art-body h2, .art-body h3 { margin: 14px 0 8px; color: #02607E; }

/* ── Blockquote ── */
.art-body blockquote {
    position: relative;
    margin: 20px 0;
    padding: 16px 20px 16px 52px;
    background: #f0fafc;
    border-left: 4px solid #02607E;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #2a4a52;
    line-height: 1.75;
}
.art-body blockquote::before {
    content: "\201C";
    position: absolute;
    left: 12px;
    top: 8px;
    font-size: 48px;
    line-height: 1;
    color: #02607E;
    opacity: 0.35;
    font-family: Georgia, serif;
    font-style: normal;
}
.art-body blockquote p {
    margin: 0 0 8px;
    text-align: left;
}
.art-body blockquote p:last-child { margin-bottom: 0; }
.art-body ul, .art-body ol { margin: 10px 0 12px 0; padding: 0; list-style: none; }
.art-body ol { counter-reset: art-ol; }

/* Unordered list — teal chevron */
.art-body ul > li {
    position: relative;
    padding: 4px 10px 4px 22px;
    margin-bottom: 3px;
    line-height: 1.6;
    background: transparent;
    border: none;
    overflow: hidden;
}
.art-body ul > li::before {
    content: "\203A";
    position: absolute;
    left: 4px;
    top: 2px;
    font-size: 20px;
    font-weight: 700;
    color: #02607E;
    line-height: 1.4;
}

/* Ordered list — teal circle counter */
.art-body ol > li {
    position: relative;
    padding: 4px 10px 4px 36px;
    margin-bottom: 3px;
    line-height: 1.6;
    background: transparent;
    border: none;
    counter-increment: art-ol;
    overflow: hidden;
}
.art-body ol > li::before {
    content: counter(art-ol);
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #02607E;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Nested lists */
.art-body ul ul, .art-body ol ul,
.art-body ul ol, .art-body ol ol {
    margin: 2px 0 2px 16px;
}
.art-body ul ul > li::before,
.art-body ol ul > li::before {
    content: "\2013";
    position: absolute;
    left: 4px;
    top: 3px;
    font-size: 14px;
    font-weight: 700;
    color: #02607E;
}
.art-body a   { color: #02607E; text-decoration: underline; }
.art-body strong, .art-body b { color: #1a1a1a; }
.art-body table { border-collapse: collapse; width: 100%; margin: 10px 0; }
.art-body td, .art-body th { border: 1px solid #ddd; padding: 6px 10px; }

/* ── Article body images ── */

/* Base: applied to every <img> inside article content */
.art-body img,
.art-body .art-img {
    max-width: 100%;
    width: auto;        /* overrides any HTML width="" attribute from DB */
    height: auto;       /* overrides any HTML height="" attribute from DB */
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    margin: 10px auto;
}

/* Responsive centred block (no alignment info in DB content) */
.art-body img.img-auto,
.art-body .art-img.img-auto {
    display: block;
    margin: 14px auto;
    max-width: 100%;
}

/* Float left — text wraps on right */
.art-body img.img-float-left,
.art-body .art-img.img-float-left {
    float: left;
    display: inline;
    margin: 6px 20px 12px 0;
    max-height: 380px;  /* caps portrait images so they don't tower over text */
    width: auto;
}

/* Float right — text wraps on left */
.art-body img.img-float-right,
.art-body .art-img.img-float-right {
    float: right;
    display: inline;
    margin: 6px 0 12px 20px;
    max-height: 380px;
    width: auto;
}

/* Explicit centre alignment */
.art-body img.img-center,
.art-body .art-img.img-center {
    display: block;
    margin: 14px auto;
    float: none;
    max-width: 100%;
    height: auto;
}

/* Clearfix so container stretches past any floated images */
.art-body::after {
    content: "";
    display: table;
    clear: both;
}
/* Prevent any article image from ever overflow or stretch viewport */
.art-body img {
    max-width: 100%;
    height: auto;
}

/* Mobile: never float, always full-width stacked */

/* ==============================================================================================================
   Most Viewed list (article detail page - main column)
   ============================================================ */
.most-viewed-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.most-viewed-list li {
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    line-height: 1.45;
}
.most-viewed-list li:last-child { border-bottom: none; }
.most-viewed-list li::before {
    content: "\203A";
    color: #02607E;
    font-weight: bold;
    margin-right: 6px;
}
.most-viewed-list li a {
    color: #333;
    text-decoration: none;
}
.most-viewed-list li a:hover { color: #02607E; }
.mv-count {
    color: #999;
    font-size: 11px;
    white-space: nowrap;
    font-style: italic;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Tablet 901-1100px */

/* =========================================================
   FOOTER -- 3-band design
   ========================================================= */
.site-footer {
    max-width: 1280px;
    margin: 28px auto 0;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}
.footer-top {
    background: #02607E;
    padding: 14px 0;
}
.footer-top .container { background: transparent; }
.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-copy {
    color: #e0f4fa;
    font-size: 12px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.footer-links a {
    color: #e0f4fa;
    text-decoration: none;
    font-size: 12px;
    padding: 0 10px;
    border-left: 1px solid rgba(255,255,255,0.3);
    line-height: 1.4;
    transition: color 0.2s;
}
.footer-links a:first-child { border-left: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-mid {
    background: #024d64;
    padding: 11px 0;
}
.footer-mid .container { background: transparent; }
.footer-network {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.footer-network-label {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin-right: 4px;
}
.footer-network a {
    color: #fff;
    background: rgba(255,255,255,0.12);
    text-decoration: none;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    transition: background 0.2s;
}
.footer-network a:hover { background: rgba(255,255,255,0.25); }
.footer-bottom {
    background: #f7fbfd;
    padding: 12px 0;
    border-top: 1px solid #d0e8f0;
}
.footer-bottom .container { background: transparent; }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.footer-disclaimer {
    color: #555;
    font-size: 12px;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}
.footer-disclaimer a { color: #02607E; }
#myBtn {
    display: none;
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 999;
    background: #F56435;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 16px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s;
}
#myBtn:hover { background: #d44e23; transform: translateY(-2px); }
.site-footer .container,
.footer-top .container,
.footer-mid .container,
.footer-bottom .container {
    background: transparent;
}


/* ============================================================
   Article detail page - sidebar widgets
   ============================================================ */
.widget {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    margin-bottom: 0;
}
.widget-ad { margin-bottom: 0; }
.widget-ad a { display: block; }
.widget-ad img { width: 100%; height: auto; display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(2,96,126,.1); }

/* Article meta panel */
.art-meta {
    font-size: 13px; color: #555;
    margin: 16px 0; padding: 12px 16px;
    background: #f7fbfd;
    border-radius: 8px;
    border-left: 4px solid #02607E;
    line-height: 1.9;
}
.art-meta a { color: #02607E; text-decoration: none; }
.art-meta a:hover { text-decoration: underline; }

/* Prev/Next navigation */
.art-nav { display: flex; gap: 12px; margin: 20px 0; }
.art-nav-card {
    flex: 1; display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    background: #fff; border: 1px solid #e0e0e0; border-radius: 8px;
    text-decoration: none; color: #333;
    transition: border-color .2s, box-shadow .2s;
    min-width: 0;
}
.art-nav-card:hover { border-color: #02607E; box-shadow: 0 2px 8px rgba(2,96,126,.15); color: #02607E; }
.art-nav-empty { background: transparent; border-color: transparent; pointer-events: none; }
.art-nav-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: #02607E; color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.art-nav-text { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.art-nav-text-right { text-align: right; }
.art-nav-label { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .05em; }
.art-nav-text strong {
    font-size: 12px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}

/* Sidebar story list */
.story-list { list-style: none; padding: 0; margin: 0; }
.story-list li { padding: 7px 14px; border-bottom: 1px solid #f0f0f0; font-size: .8rem; line-height: 1.4; }
.story-list li:last-child { border-bottom: none; }
.story-list li a { color: #333; text-decoration: none; }
.story-list li a:hover { color: #02607E; }

/* Top sections list (sidebar) */
.sections-list { list-style: none; padding: 0; margin: 0; }
.sections-list li { padding: 7px 14px; border-bottom: 1px solid #f0f0f0; font-size: .8rem; }
.sections-list li:last-child { border-bottom: none; }
.sections-list li a { color: #333; text-decoration: none; }
.sections-list li a:hover { color: #02607E; text-decoration: underline; }

/* Most viewed list (article body) */
.most-viewed-list { list-style: none; padding: 0; margin: 0 0 20px; }
.most-viewed-list li {
    padding: 7px 0; border-bottom: 1px solid #f0f0f0;
    font-size: .82rem; display: flex;
    justify-content: space-between; align-items: baseline; gap: 8px;
}
.most-viewed-list li:last-child { border-bottom: none; }
.most-viewed-list li a { color: #333; text-decoration: none; flex: 1; }
.most-viewed-list li a:hover { color: #02607E; }
.mv-count { font-size: .75rem; color: #999; white-space: nowrap; }

/* Back to category link */
/* back-link defined earlier */

@media (max-width: 1100px) {
    .cat-sidebar { width: 240px; }
    .side-col     { width: 240px; }
    .news-grid    { grid-template-columns: repeat(3, 1fr); }
    .thumb p      { font-size: .68rem; }
}

/* Tablet max 900px */
@media (max-width: 900px) {
    .cat-layout  { flex-direction: column; }
    .cat-sidebar { width: 100%; }
    .layout-wrap { flex-direction: column; }
    .side-col    { width: 100%; }
    .news-grid             { grid-template-columns: repeat(2, 1fr); }
    .cat-main .news-grid   { grid-template-columns: repeat(2, 1fr); }
    .featured-article   { flex-direction: column; }
    .featured-img-wrap  { width: 100%; height: 220px; }
    .featured-body      { padding: 16px 18px; }
    .thumb-strip { grid-template-columns: repeat(4, 1fr); }
    .date-filter { flex-wrap: wrap; gap: 8px; }
}

/* Mobile max 700px */

/* ---- Collapsible filter panel ---- */
.filter-toggle {
  display: none; /* hidden on desktop */
}
.filter-panel {
  /* always visible on desktop */
}

@media (max-width: 700px) {
  .filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: #02607E;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-bottom: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .filter-toggle-icon {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 11px;
  }
  .filter-toggle[aria-expanded="true"] .filter-toggle-icon {
    transform: rotate(180deg);
  }
  .filter-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    margin-bottom: 0;
  }
  .filter-panel.open {
    max-height: 800px;
    margin-bottom: 12px;
  }
  .edu-filters {
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding-top: 12px;
  }
}

@media (max-width: 700px) {
    .slider-main  { aspect-ratio: auto; height: 220px; }
    .slide-caption { padding: 10px 12px 12px; }
    .slide-caption h2 { font-size: .9rem; }
    .s-arrow      { width: 28px; height: 28px; font-size: .9rem; }
    .thumb-strip  { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 6px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
    .art-nav { flex-direction: column; gap: 8px; }
    .art-nav-card { width: 100%; box-sizing: border-box; }
    .art-nav-text-right { text-align: left; }
    .art-nav-text strong { -webkit-line-clamp: 3; font-size: 13px; }
    .ss-btn span  { display: none; }
    .ss-btn       { padding: 7px 8px; border-radius: 50%; }
    .ss-btn svg   { width: 18px; height: 18px; }
    .slider-social { justify-content: flex-start; }
    .edu-filters { flex-direction: column; }
    .edu-filter-group { width: 100%; box-sizing: border-box; }
    .edu-filters select, .edu-filters input[type=text] { width: 100%; min-width: unset; box-sizing: border-box; }
    .edu-filter-submit { width: 100%; margin-top: 6px; padding: 10px; }
    .thumb        { min-width: 110px; flex-shrink: 0; }
    .thumb img    { width: 100%; min-width: 0; height: 60px; object-fit: cover; }
    .thumb p      { display: none; }
    .cat-layout   { flex-direction: column; }
    .cat-sidebar  { width: 100%; }
    .layout-wrap  { flex-direction: column; }
    .side-col     { width: 100%; }
    .news-grid             { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-main .news-grid   { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .featured-article  { flex-direction: column; }
    .featured-img-wrap { width: 100%; height: 200px; }
    .featured-body     { padding: 14px 16px; }
    .art-title { font-size: 17px; }
    .art-body .art-img.img-float-left  { float: none; width: auto; max-width: 100%; height: auto; margin: 0 0 14px 0; }
    .art-body .art-img.img-float-right { float: none; width: auto; max-width: 100%; height: auto; margin: 0 0 14px 0; }
    .art-body .art-thumb-inline { float: none; width: auto; max-width: 100%; height: auto; margin: 0 0 14px 0; }
    .date-filter input[type="date"] { width: 130px; }
    .pagination { gap: 4px; padding: 16px 0 6px; }
    .page-btn   { width: 30px; height: 30px; font-size: .75rem; }
    .footer-top-inner    { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-links        { flex-direction: column; gap: 4px; }
    .footer-links a      { border-left: none; padding: 3px 0; font-size: 13px; }
    .footer-network      { flex-direction: column; align-items: flex-start; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .container { padding: 0 8px; }
    .page-wrap { padding: 4px 0 2px; }

    /* GoDubai mobile nav */
    .gd-mainnav { display: none; }
    .gd-topbar-inner .nav-toggle { display: flex; }
    .nav-bar { display: none; }
    .header-ad { display: none; }
    .nav-list li a, #mainNavList li a { font-size: 13px; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* Small mobile max 480px */
@media (max-width: 480px) {
    .news-grid             { grid-template-columns: 1fr; }
    .cat-main .news-grid   { grid-template-columns: 1fr; }
    .thumb-strip           { display: flex; flex-wrap: nowrap; overflow-x: auto; }
    .thumb                  { min-width: 90px; flex-shrink: 0; }
    .slider-main           { height: 180px; }
    .slide-caption h2      { font-size: .82rem; }
    .featured-img-wrap     { height: 170px; }
    .site-header .logo-row .logo img { width: 150px; }
    .section-title         { font-size: 1rem; }
    .art-title             { font-size: 15px; }
}

/* ---- Sections dropdown ---- */
.nav-list .has-dropdown { position: relative; }
.nav-list .has-dropdown > a { cursor: pointer; white-space: nowrap; }
.nav-list .has-dropdown > a::after { content: ''; }

.nav-list .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-top: 3px solid #F56435;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 6px 0;
  border-radius: 0 0 6px 6px;
}
.nav-dropdown.open {
  display: block;
}
.nav-dropdown li {
  list-style: none;
}
.nav-dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #02607E !important;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.nav-dropdown li a:hover {
  background: #f0f8fb;
  color: #024d64 !important;
}
.has-dropdown {
  position: relative;
}
.nav-list .nav-dropdown.open { display: block; }
.nav-list .nav-dropdown li { margin: 0; padding: 0; }
.nav-list .nav-dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #333 !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border-bottom: 1px solid #f0f0f0;
}
.nav-list .nav-dropdown li:last-child a { border-bottom: none; }
.nav-list .nav-dropdown li a:hover {
  background: #f0f8fb;
  color: #02607E !important;
  padding-left: 20px;
}

/* Mobile sections header divider */
.mobile-sections-hdr span {
  display: block;
  padding: 8px 16px;
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .gd-logo-img { width: 160px; }
}


/* =====================================================
   EDUCATION SECTION - Additional Styles
   ===================================================== */

/* Education card grid */
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 20px 0; }
.edu-card { background: #fff; border: 1px solid #e0eef2; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s; }
.edu-card:hover { box-shadow: 0 4px 18px rgba(2,96,126,.15); }
.edu-card-img { position: relative; width: 100%; padding-top: 56%; overflow: hidden; background: #f0f7fa; }
.edu-card-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border: none; }
.edu-card-badge { position: absolute; top: 8px; left: 8px; background: #F56435; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: .5px; }
.edu-card-body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.edu-card-name { font-size: 14px; font-weight: 700; color: #02607E; line-height: 1.35; }
.edu-card-name a { color: inherit; text-decoration: none; }
.edu-card-name a:hover { color: #F56435; }
.edu-card-meta { font-size: 12px; color: #555; display: flex; flex-wrap: wrap; gap: 6px; }
.edu-card-tag { background: #e8f4f8; color: #024d64; padding: 2px 7px; border-radius: 3px; font-size: 11px; white-space: nowrap; }
.edu-card-tag.orange { background: #fff3ee; color: #c04010; }
.edu-card-city { font-size: 12px; color: #666; }
.edu-card-city:before { content: "\1F4CD "; }
.edu-card-desc { font-size: 12px; color: #444; line-height: 1.5; flex: 1; }
.edu-card-fee { font-size: 12px; font-weight: 600; color: #024d64; }
.edu-card-rating { font-size: 12px; color: #555; }
.edu-card-rating span { font-weight: 600; color: #02607E; }
.edu-card-footer { padding: 10px 14px 12px; border-top: 1px solid #eef4f7; }
.edu-card-footer a { display: inline-block; background: #F56435; color: #fff; font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 4px; text-decoration: none; }
.edu-card-footer a:hover { background: #d44e23; }

/* Filters bar */
.edu-filters { background: #f0f7fa; border: 1px solid #cde4ec; border-radius: 6px; padding: 14px 16px; margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.edu-filters label { font-size: 12px; font-weight: 600; color: #02607E; display: block; margin-bottom: 3px; }
.edu-filters select, .edu-filters input[type=text] { border: 1px solid #b0cdd8; border-radius: 4px; padding: 6px 10px; font-size: 13px; font-family: Montserrat, sans-serif; background: #fff; color: #333; min-width: 160px; }
.edu-filters select:focus, .edu-filters input[type=text]:focus { border-color: #02607E; outline: none; }
.edu-filter-group { display: flex; flex-direction: column; }
.edu-filter-submit { background: #F56435; color: #fff; border: none; border-radius: 4px; padding: 8px 20px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: Montserrat, sans-serif; margin-top: 18px; }
.edu-filter-submit:hover { background: #d44e23; }

/* Page title bar */
.edu-page-title { background: #02607E; color: #fff; padding: 12px 16px; border-radius: 6px; margin-bottom: 18px; }
.edu-page-title h1 { margin: 0; font-size: 1.2rem; font-weight: 700; color: #fff; }
.edu-page-title p { margin: 4px 0 0; font-size: 13px; color: #cde8f0; }

/* Detail page */
.edu-detail-hero { width: 100%; border-radius: 8px; overflow: hidden; background: #f0f7fa; margin-bottom: 20px; text-align: center; min-height: 200px; }
.edu-detail-hero img { max-width: 100%; height: auto; max-height: 400px; object-fit: cover; display: inline-block; }
.edu-detail-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.edu-detail-logo { width: 140px; height: 140px; object-fit: contain; border: 1px solid #e0eef2; border-radius: 8px; padding: 6px; background: #fff; flex-shrink: 0; }
.edu-detail-title { flex: 1; }
.edu-detail-title h1 { font-size: 1.4rem; color: #02607E; margin: 0 0 6px; }
.edu-detail-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.edu-badge { background: #e8f4f8; color: #024d64; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; }
.edu-badge.paid { background: #F56435; color: #fff; }
.edu-badge.rating { background: #fff3ee; color: #c04010; }
.edu-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #e0eef2; border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.edu-info-row { display: contents; }
.edu-info-label { background: #f0f7fa; padding: 10px 14px; font-size: 13px; font-weight: 600; color: #024d64; border-bottom: 1px solid #e0eef2; }
.edu-info-value { background: #fff; padding: 10px 14px; font-size: 13px; color: #333; border-bottom: 1px solid #e0eef2; }
.edu-info-value a { color: #02607E; }
.edu-info-value a:hover { color: #F56435; }
.edu-social-links { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }
.edu-social-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; text-decoration: none; color: #fff; }
.edu-social-btn.fb { background: #1877F2; }
.edu-social-btn.tw { background: #1DA1F2; }
.edu-social-btn.ig { background: #E1306C; }
.edu-social-btn.li { background: #0077B5; }
.edu-description { font-size: 14px; line-height: 1.75; color: #333; }
.edu-description p { margin-bottom: 1em; text-align: justify; }
.edu-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.edu-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 5px; border: 1px solid #e0eef2; cursor: pointer; }
.edu-slider { margin: 0 0 20px; }
.edu-sl-main { position: relative; background: #000; border-radius: 8px; overflow: hidden; }
.edu-sl-viewport { width: 100%; height: 480px; }
.edu-sl-slide { display: none; width: 100%; height: 100%; }
.edu-sl-slide.active { display: flex !important; align-items: center; justify-content: center; }
.edu-sl-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.edu-sl-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; font-size: 2.2rem; line-height: 1; padding: 6px 14px; cursor: pointer; z-index: 10; border-radius: 4px; }
.edu-sl-prev { left: 8px; }
.edu-sl-next { right: 8px; }
.edu-sl-arrow:hover { background: rgba(0,96,126,.75); }
.edu-sl-dots { display: flex; justify-content: center; gap: 6px; margin: 8px 0 4px; }
.edu-sl-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: #c5dde5; cursor: pointer; padding: 0; }
.edu-sl-dot.active { background: #02607E; }
.edu-sl-thumbs { display: flex; gap: 6px; overflow-x: auto; padding: 4px 0 8px; scroll-snap-type: x mandatory; }
.edu-sl-thumb { flex: 0 0 80px; height: 56px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; scroll-snap-align: start; }
.edu-sl-thumb.active { border-color: #F56435; }
.edu-sl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Top 25 list */
.top25-list { list-style: none; margin: 0; padding: 0; }
.top25-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid #eef4f7; }
.top25-rank { width: 36px; height: 36px; border-radius: 50%; background: #02607E; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.top25-rank.paid { background: #F56435; }
.top25-img { width: 60px; height: 48px; object-fit: cover; border-radius: 4px; border: 1px solid #e0eef2; flex-shrink: 0; }
.top25-info { flex: 1; }
.top25-name { font-size: 14px; font-weight: 600; color: #02607E; }
.top25-name a { color: inherit; text-decoration: none; }
.top25-name a:hover { color: #F56435; }
.top25-meta { font-size: 12px; color: #666; margin-top: 2px; }

/* Sidebar widget */
.edu-sidebar-widget { background: #fff; border: 1px solid #e0eef2; border-radius: 6px; margin-bottom: 16px; overflow: hidden; }
.edu-sidebar-widget .widget-title { background: #02607E; color: #fff; padding: 8px 14px; font-size: 13px; font-weight: 700; }
.edu-sidebar-widget ul { list-style: none; margin: 0; padding: 0; }
.edu-sidebar-widget ul li { border-bottom: 1px solid #f0f4f7; }
.edu-sidebar-widget ul li:last-child { border-bottom: none; }
.edu-sidebar-widget ul li a { display: block; padding: 9px 14px; font-size: 13px; color: #333; text-decoration: none; }
.edu-sidebar-widget ul li a:hover { background: #f5fafb; color: #02607E; }
.edu-sidebar-widget ul li a img { vertical-align: middle; }
.edu-sidebar-widget ul li a span { display: block; font-size: 12px; font-weight: 600; color: #024d64; margin-left: 10px; }
.edu-cat-links li a:before { content: "\203A  "; color: #F56435; font-weight: 700; }

/* Layout */
.edu-layout { display: flex; gap: 20px; }
.edu-main { flex: 1; min-width: 0; }
.edu-sidebar { width: 260px; flex-shrink: 0; }




/* Pagination */
.edu-pagination { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin: 24px 0; }
.edu-pagination a, .edu-pagination span { display: inline-block; padding: 6px 12px; border: 1px solid #cde; border-radius: 4px; font-size: 13px; color: #02607E; text-decoration: none; font-weight: 500; }
.edu-pagination a:hover, .edu-pagination span.current { background: #F56435; color: #fff; border-color: #F56435; }

/* Responsive */
@media (max-width: 900px) {
  .edu-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-layout { flex-direction: column; }
  .edu-sidebar { width: 100%; }
  .gd-logo-img { max-width: 220px; }
}
@media (max-width: 600px) {
  .edu-grid { grid-template-columns: 1fr; }
  .edu-info-grid { grid-template-columns: 1fr; }
  .edu-gallery { grid-template-columns: repeat(2,1fr); }
  .edu-sl-viewport { height: 260px; }

  .edu-detail-header { flex-direction: column; }
}

/* Responsive video embed */
.video-wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}
.video-wrap iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}
@media (max-width: 700px) {
    .video-wrap { max-width: 100%; }
}
