/* ============================================================
   OMS PORTAL – Shared Stylesheet  (FIXED – Fully Responsive)
   Orugallu Paraspara Sahayaka Sahakara Maha Samakhya
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --primary:      #1a6b3c;
  --primary-lt:   #e8f5ee;
  --primary-mid:  #2d9b5a;
  --accent:       #e07b2a;
  --accent-lt:    #fef3e8;
  --navy:         #1e3a5f;
  --sky:          #eaf4fb;
  --soft-bg:      #f7fbf9;
  --card-bg:      #ffffff;
  --border:       #d4e8dc;
  --text-dark:    #1c2b22;
  --text-mid:     #4a6057;
  --text-light:   #7a9488;
  --footer-bg:    #1a3a28;
  --footer-text:  #c8dfd0;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(26,107,60,.08);
  --shadow-md:    0 6px 24px rgba(26,107,60,.13);
  --transition:   .25s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--soft-bg);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  overflow-x: hidden;
}

img, video, iframe, table { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  word-break: break-word;
}

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

p { margin-bottom: .9rem; word-break: break-word; }

/* ── Layout wrapper ───────────────────────────────────────── */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-wrapper main { flex: 1; }

/* ── Top Info Bar ─────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: #bcd5ea;
  font-size: 12px;
  padding: 5px 0;
  width: 100%;
}
.top-bar a { color: #bcd5ea; }
.top-bar a:hover { color: #fff; }
.top-bar .top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}
.top-bar .tb-left  { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.top-bar .tb-right { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.top-bar .reg-no   { font-size: 11px; opacity: .8; }

/* Language switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-switcher .btn {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-switcher .btn:hover,
.lang-switcher .btn.active { background: var(--primary); border-color: var(--primary); }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-oms {
  background: #fff;
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  min-width: 320px;
  flex-wrap: nowrap;
}
.logo-circle {
  width: 52px;
  height: 52px;
  background: var(--primary-lt);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.brand-text { flex-shrink: 1; min-width: 260px; }
.brand-text .org-name {
  font-family: 'Noto Serif', serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  white-space: normal;
  word-break: break-word;
}
.brand-text .org-sub {
  font-size: 10.5px;
  color: var(--text-mid);
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  display: block;
  margin-top: 2px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-dark) !important;
  padding: 16px 10px !important;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  border-bottom-color: var(--primary);
}

.navbar-nav .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  padding: 8px 0;
  z-index: 1060;
}
.navbar-nav .dropdown-item {
  font-size: 13px;
  padding: 8px 18px;
  color: var(--text-dark);
  white-space: normal;
  transition: background var(--transition);
}
.navbar-nav .dropdown-item:hover { background: var(--primary-lt); color: var(--primary); }

@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 10px 14px !important; border-bottom: none; border-left: 3px solid transparent; }
  .navbar-nav .nav-link.active { border-left-color: var(--primary); }
  .navbar-brand-wrap { padding: 6px 0; }
  .brand-text .org-name { font-size: 12px; }
  .brand-text .org-sub  { display: none; }
  .logo-circle { width: 42px; height: 42px; font-size: 18px; }
}

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d4a28 100%);
  color: #fff;
  padding: 40px 0 32px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 6px;
  word-break: break-word;
}
.page-hero p { opacity: .85; margin: 0; font-size: 14.5px; }
.breadcrumb-oms {
  background: none;
  padding: 0;
  font-size: 12.5px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.breadcrumb-oms .breadcrumb-item a       { color: rgba(255,255,255,.75); }
.breadcrumb-oms .breadcrumb-item.active  { color: rgba(255,255,255,.55); }
.breadcrumb-oms .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Section typography ───────────────────────────────────── */
.section-title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--primary);
  margin-bottom: 6px;
  word-break: break-word;
}
.section-title .accent-dot { color: var(--accent); }
.section-divider {
  width: 48px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── Stat Cards ───────────────────────────────────────────── */
.stat-card {
  background: var(--card-bg);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.stat-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--accent); }
.stat-card .stat-num {
  font-family: 'Noto Serif', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 11.5px;
  color: var(--text-mid);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* ── Generic Cards ────────────────────────────────────────── */
.oms-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
  height: 100%;
  word-break: break-word;
}
.oms-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.oms-card .card-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.oms-card .card-text  { font-size: 13.5px; color: var(--text-mid); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-oms-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  border: 2px solid var(--primary);
  border-radius: 7px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-oms-primary:hover { background: #145530; border-color: #145530; color: #fff !important; transform: translateY(-1px); }

.btn-oms-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: 7px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-oms-outline:hover { background: var(--primary); color: #fff !important; }

.btn-oms-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  border: 2px solid var(--accent);
  border-radius: 7px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-oms-accent:hover { background: #c4691e; border-color: #c4691e; color: #fff !important; }

/* ── Badges ───────────────────────────────────────────────── */
.badge-oms {
  background: var(--primary-lt);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: inline-block;
}
.badge-oms-accent {
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* ── Info box ─────────────────────────────────────────────── */
.info-box {
  background: var(--primary-lt);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-mid);
  word-break: break-word;
}
.info-box strong { color: var(--primary); }

/* ── Hero Carousel slides ─────────────────────────────────── */
.hero-slide-inner {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
@media (max-width: 576px) {
  .hero-slide-inner { min-height: 260px; padding: 30px 16px; }
  .hero-slide-inner h2 { font-size: 1.25rem !important; }
}

/* ── Team Cards ───────────────────────────────────────────── */
.team-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card .avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--primary-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  color: var(--primary);
  border: 3px solid var(--border);
}
.team-card .member-name { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 2px; word-break: break-word; }
.team-card .member-role { font-size: 12px; color: var(--text-mid); }

/* ── Visitor Cards ────────────────────────────────────────── */
.visitor-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  word-break: break-word;
}
.visitor-card:hover { box-shadow: var(--shadow-md); }
.visitor-card .d-flex { flex-wrap: wrap; gap: 12px; }
.visitor-photo {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary);
  flex-shrink: 0;
}
.visitor-name  { font-weight: 700; color: var(--navy); font-size: 14.5px; word-break: break-word; }
.visitor-desg  { font-size: 12.5px; color: var(--text-mid); }
.visit-date    { font-size: 12px; color: var(--accent); font-weight: 600; }

/* ── Report Rows ──────────────────────────────────────────── */
.report-row {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.report-row:hover { background: var(--primary-lt); border-color: var(--primary); }
.report-icon { font-size: 26px; color: var(--primary); flex-shrink: 0; }
.report-title { font-weight: 600; color: var(--navy); font-size: 14.5px; margin-bottom: 2px; word-break: break-word; }
.report-meta  { font-size: 12.5px; color: var(--text-mid); word-break: break-word; }
.report-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Publications ─────────────────────────────────────────── */
.pub-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  word-break: break-word;
}
.pub-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pub-icon {
  width: 64px; height: 80px;
  background: var(--primary-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 32px;
  color: var(--primary);
  border: 2px solid var(--border);
}
.pub-title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 8px; }

/* ── Training ─────────────────────────────────────────────── */
.training-type-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  word-break: break-word;
}
.training-type-card .type-title {
  font-family: 'Noto Serif', serif;
  font-size: 1rem;
  color: var(--primary);
  border-bottom: 2px solid var(--primary-lt);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.training-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--primary-lt);
  color: var(--text-dark);
  font-size: 13.5px;
  transition: color var(--transition);
}
.training-link-item:last-child { border-bottom: none; }
.training-link-item:hover { color: var(--primary); }
.training-link-item i { color: var(--primary); font-size: 12px; flex-shrink: 0; }

/* ── Awards ───────────────────────────────────────────────── */
.award-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  word-break: break-word;
}
.award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.award-img {
  background: linear-gradient(135deg, #fff9e6, #fef3cc);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  border-bottom: 2px solid #f5e296;
}
.award-body { padding: 18px; }
.award-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.award-from { font-size: 12.5px; color: var(--text-mid); margin-top: 4px; }
.award-year-badge { background: var(--accent); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 12px; display: inline-block; margin-top: 8px; }

/* ── Testimony / Chief Guest ──────────────────────────────── */
.testimony-card {
  background: var(--sky);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid #c8def0;
  position: relative;
  height: 100%;
  word-break: break-word;
}
.testimony-card .quote-icon {
  font-size: 36px; color: var(--primary);
  opacity: .2; position: absolute; top: 14px; left: 18px; line-height: 1;
}
.guest-photo {
  width: 60px; height: 60px; border-radius: 50%;
  background: #c8def0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy);
  margin: 0 auto 10px;
}
.guest-name    { font-weight: 700; font-size: 14.5px; color: var(--navy); margin-bottom: 2px; }
.guest-desg    { font-size: 12px; color: var(--text-mid); }
.guest-message { font-size: 13.5px; color: var(--text-mid); font-style: italic; margin-top: 12px; margin-bottom: 0; }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  word-break: break-word;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img {
  background: var(--primary-lt);
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; color: var(--primary);
  flex-shrink: 0;
}
.blog-body   { padding: 16px 18px; }
.blog-tag    { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; }
.blog-title  { font-size: 14.5px; font-weight: 700; color: var(--navy); margin: 4px 0 6px; line-height: 1.4; }
.blog-excerpt{ font-size: 13px; color: var(--text-mid); }
.blog-date   { font-size: 11.5px; color: var(--text-light); margin-top: 10px; }

/* ── Story Cards ──────────────────────────────────────────── */
.story-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  word-break: break-word;
}
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.story-img {
  background: linear-gradient(135deg, #d7f0e4, #b2dfc4);
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 46px;
}
.story-body  { padding: 16px 18px; }
.story-title { font-weight: 700; font-size: 14.5px; color: var(--navy); margin-bottom: 6px; }
.story-excerpt{ font-size: 13px; color: var(--text-mid); }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-item {
  background: var(--primary-lt);
  border-radius: var(--radius);
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; color: var(--primary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
  position: relative;
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,107,60,.6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Member org chip ──────────────────────────────────────── */
.member-org-chip {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
  word-break: break-word;
}
.member-org-chip:hover { background: var(--primary-lt); border-left-color: var(--accent); }

/* ── Contact info ─────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.ci-icon {
  width: 36px; height: 36px;
  background: var(--primary-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.ci-text { font-size: 14px; color: var(--text-mid); word-break: break-word; }
.ci-text strong { color: var(--text-dark); display: block; font-size: 12.5px; margin-bottom: 2px; }

/* ── Social pills ─────────────────────────────────────────── */
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-lt);
  color: var(--primary) !important;
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 12.5px;
  font-weight: 500;
  margin: 3px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  white-space: nowrap;
}
.social-pill:hover { background: var(--primary); color: #fff !important; border-color: var(--primary); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 48px 0 0;
  width: 100%;
  margin-top: auto;
}
footer h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
}
footer a {
  color: var(--footer-text);
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  transition: color var(--transition);
}
footer a:hover { color: #fff; }
footer p { color: var(--footer-text); font-size: 13px; line-height: 1.7; }
.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 14px 0;
  margin-top: 32px;
  font-size: 12px;
  text-align: center;
  color: rgba(200,223,208,.7);
  word-break: break-word;
}
.footer-logo-text {
  font-family: 'Noto Serif', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

/* ── Back to top ──────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 24px; right: 20px;
  background: var(--primary);
  color: #fff;
  border: none; border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 17px;
  display: none; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  transition: all var(--transition);
}
#backToTop:hover { background: var(--accent); }
#backToTop.visible { display: flex; }

/* ── Animations ───────────────────────────────────────────── */
.fade-in-up { animation: fadeInUp .5s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Timeline (schedule) ──────────────────────────────────── */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 26px; }
.timeline-dot {
  position: absolute; left: -27px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary-lt);
}
.timeline-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  word-break: break-word;
}
.timeline-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.timeline-month { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; }
.timeline-title { font-weight: 700; color: var(--navy); font-size: 14.5px; margin: 2px 0 4px; }
.timeline-meta  { font-size: 12.5px; color: var(--text-mid); }
.status-pill    { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; white-space: nowrap; display: inline-block; }
.status-upcoming  { background: #e8f5ee; color: var(--primary); }
.status-ongoing   { background: #fff3cd; color: #856404; }
.status-completed { background: #f0f0f0; color: #6c757d; }

/* ── Utility ──────────────────────────────────────────────── */
.w-100 { width: 100% !important; }
section { width: 100%; overflow: hidden; }

/* ── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 767px) {
  .report-row { flex-direction: column; align-items: flex-start; }
  .report-actions { width: 100%; }
  .report-actions .btn-oms-outline,
  .report-actions .btn-oms-primary { width: 48%; text-align: center; }
}

/* ── Skip Link Styling ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
