:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-alt: #f5f5f5;
  --ink: #111111;
  --muted: #676767;
  --brand: #007bbf;
  --brand-dark: #055792;
  --brand-accent: #00b1e3;
  --brand-mint: #4dacb0;
  --brand-orange: #ed5700;
  --brand-yellow: #fec900;
  --border: #d0d2d3;
  --success: #4dacb0;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

.header {
  background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: white;
  border-radius: 22px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 30px rgba(13, 47, 79, 0.16);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, white 0%, #d8f1fb 100%);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand h1 { margin: 0; font-size: 1.05rem; }
.brand small {
  color: rgba(255,255,255,0.75);
  display: block;
  margin: 0;
  line-height: 1.1;
}
.brand-logo {
  width: 158px;
  height: auto;
  display: block;
}
.brand-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.nav a {
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-weight: 600;
  line-height: 1;
}
.nav a.active, .nav a:hover {
  background: rgba(255,255,255,0.24);
  text-decoration: none;
}
.user-menu {
  margin-left: auto;
  position: relative;
}
.user-details {
  position: relative;
}
.user-trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  overflow: hidden;
}
.user-trigger::-webkit-details-marker,
.user-trigger::marker {
  display: none;
}
.user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: white;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(13, 47, 79, 0.18);
  padding: 16px;
  z-index: 40;
}
.user-panel-top {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.user-panel-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #edf5ff;
}
.user-panel strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-dark);
}
.user-panel-meta {
  min-width: 0;
}
.user-panel-name {
  margin-bottom: 2px;
}
.user-panel-title,
.user-panel-email {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}
.user-panel-title {
  margin-bottom: 2px;
}
.user-panel-email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
}
.user-panel-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.user-panel-role {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2f7fb;
  border: 1px solid var(--border);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}
.nav .user-logout,
.nav .user-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--brand);
  color: #fafafa;
  font-weight: 700;
  text-decoration: none;
}
.nav .user-logout:hover,
.nav .user-login:hover {
  text-decoration: none;
  background: var(--brand-dark);
  color: #fafafa;
}
.user-details[open] .user-trigger {
  box-shadow: 0 0 0 3px rgba(45, 168, 199, 0.22);
}
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
}
.button-link:hover { background: var(--brand-dark); }

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, #00b1e3 0, #00b1e3 18px, transparent 18px),
    linear-gradient(135deg, #111111 0%, #055792 100%);
  color: var(--ink);
  padding: 32px;
}
.login-shell {
  width: min(440px, 100%);
}
.login-card {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  padding: 36px;
}
.login-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: #00b1e3;
}
.login-brand {
  margin-bottom: 34px;
}
.login-logo {
  width: 190px;
  max-width: 100%;
  background: white;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}
.login-copy-wrap {
  display: grid;
  gap: 12px;
}
.login-copy-wrap h1 {
  margin: 0;
  color: #055792;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: 0;
}
.login-kicker {
  margin: 0;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.login-copy {
  margin: 0;
  color: #676767;
  font-size: 1rem;
  line-height: 1.55;
}
.login-actions {
  margin-top: 30px;
}
.login-button {
  width: 100%;
  min-width: 0;
  padding: 15px 18px;
  border-radius: 8px;
  background: #007bbf;
  font-size: 1rem;
  box-shadow: none;
}
.login-button:hover { background: #055792; }

@media (max-width: 640px) {
  .login-page { padding: 18px; }
  .login-card {
    padding: 28px 24px;
  }
  .login-logo {
    width: 168px;
  }
  .login-copy-wrap h1 {
    font-size: 2.25rem;
  }
  .login-brand {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .login-card {
    width: 100%;
    margin-left: 0;
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .login-copy {
    max-width: none;
  }
}


.hero {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 10px 25px rgba(11, 94, 168, 0.08);
}
.hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 18px; }
.hero h2 { font-size: 2rem; margin: 0 0 10px; }
.hero p { margin: 0 0 12px; color: var(--muted); max-width: 760px; }
.hero .badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ticker-label { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: #eef7ff; color: var(--brand-dark); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.news-ticker {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(234,246,255,0.98));
  border: 1px solid rgba(13, 94, 168, 0.12);
}
.ticker-items {
  display: grid;
  gap: 10px;
}
.ticker-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  color: inherit;
}
.ticker-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
  flex: 1;
}
.ticker-link:hover {
  color: var(--brand);
}
.ticker-meta { color: var(--muted); font-size: 0.92rem; white-space: nowrap; }
.badge { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #eaf6ff; color: var(--brand); font-size: 0.85rem; font-weight: 700; }
.hero-panel {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: white;
  border-radius: 18px;
  padding: 18px;
}
.hero-panel h3 { margin-top: 0; }
.hero-panel ul { padding-left: 18px; margin: 8px 0 0; }


.home-alert {
  margin-top: 20px;
  border: 1px solid #cfe3ff;
  background: #eef6ff;
  color: var(--brand-dark);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.home-alert strong {
  color: var(--brand);
}
.home-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  margin-top: 14px;
  align-items: stretch;
}
.featured-update-card h2 {
  margin: 6px 0 10px;
  font-size: 1.8rem;
  color: var(--brand-dark);
}
.featured-update-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
}
.featured-metrics {
  display: grid;
  gap: 10px;
}
.featured-metrics div {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-alt);
  padding: 12px;
}
.featured-metrics strong {
  display: block;
  color: var(--brand);
  font-size: 1.45rem;
  line-height: 1;
}
.featured-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}
.section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.section-heading-row h3,
.section-heading-row p {
  margin: 0;
}
.section-heading-row a {
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
}
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.quick-access-tile {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 8px;
  text-align: center;
  color: var(--brand-dark);
}
.quick-access-tile:hover {
  text-decoration: none;
  border-color: #bdd8f4;
  background: #eef7ff;
}
.quick-access-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: white;
  color: var(--brand);
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.72rem;
  box-shadow: 0 8px 18px rgba(13, 47, 79, 0.08);
}
.quick-access-tile strong {
  font-size: 0.9rem;
}
.objectives-card {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
}
.objective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.objective-tile {
  border: 1px solid rgba(11, 94, 168, 0.18);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
}
.objective-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--brand-dark);
  color: white;
  font-weight: 800;
  font-size: 0.72rem;
  flex: 0 0 28px;
}
.objective-tile strong {
  display: block;
  color: var(--brand-dark);
  font-size: 0.95rem;
  line-height: 1.2;
}
.objective-tile p {
  margin: 0;
}
.home-news-grid,
.home-calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.news-column-card {
  min-height: 100%;
}
.compact-news-list .news-card {
  background: white;
}
.internal-news-card {
  border-top: 4px solid var(--brand);
}
.public-news-card {
  border-top: 4px solid var(--brand-accent);
}
.calendar-list {
  display: grid;
  gap: 12px;
}
.calendar-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-alt);
  padding: 10px;
}
.calendar-item time {
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  min-height: 58px;
  color: var(--brand-dark);
}
.calendar-item time span {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}
.calendar-item time strong {
  font-size: 1.25rem;
  line-height: 1;
}
.calendar-item div strong,
.calendar-item div span {
  display: block;
}
.calendar-item div span {
  color: var(--muted);
  font-size: 0.9rem;
}
.content-grid { display: grid; gap: 18px; margin-top: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
}
.card h3 { margin-top: 0; margin-bottom: 8px; }
.card p { margin: 0 0 10px; color: var(--muted); }
.card-grid { display: grid; gap: 14px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.quick-links, .button-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.link-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  display: block;
}
.link-card strong { display: block; margin-bottom: 8px; }
.link-card span { color: var(--muted); line-height: 1.6; }
.communication-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: white;
}

.mockup-frame {
  position: relative;
  width: 100%;
}
.mockup-frame > img:first-child {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: white;
  display: block;
}
.mockup-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 96px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(223,231,239,0.9);
  border-radius: 10px;
  padding: 7px 9px;
  box-shadow: 0 8px 18px rgba(13, 47, 79, 0.12);
}
.communication-card {
  display: grid;
  gap: 12px;
  align-content: start;
}
.communication-card strong {
  margin-bottom: 0;
}
.tool-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tool-icon,
.tool-logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  flex: 0 0 26px;
}
.tool-icon {
  display: inline-grid;
  place-items: center;
  background: #eaf6ff;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 800;
}
.tool-logo {
  display: inline-block;
  object-fit: contain;
  object-position: center;
  background: white;
}
.social-icon {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  border-radius: 4px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 18px;
  display: block;
}
.social-channel-card .tool-title {
  gap: 10px;
}
.tool-icon.microsoft { background: #e8f0ff; color: #315a9f; }
.tool-icon.odoo { background: #f4e8f2; color: #7f3f75; }
.tool-icon.atlassian { background: #e8f1ff; color: #0747a6; }
.tool-icon.wrike { background: #e8f7ee; color: #177245; }
.tool-icon.sharepoint { background: #e5f6f4; color: #006b67; }
.tool-icon.teams { background: #ecebff; color: #4b45a7; }
.tool-icon.support { background: #fff3dc; color: #8a5a00; }
.tool-icon.keeper { background: #fff1e8; color: #a94300; }
.tool-icon.perk { background: #e8f7ef; color: #126b3f; }
.tool-icon.sagehr { background: #edf7e5; color: #4f7f1f; }
.tool-icon.inventory { background: #eaf6ff; color: #075985; }
.tool-icon.loft360 { background: #f1ecff; color: #5b35a8; font-size: 0.72rem; }
.tool-icon.brand { background: #111827; color: white; }
.app-hub-card { display: grid; gap: 10px; }
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.resource-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 9px;
  background: white;
  font-size: 0.86rem;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.resource-letter {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 16px;
  background: #111827;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
}
.resource-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 16px;
}

.principles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.principle {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f6fbfe 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.principle::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--brand-accent);
}
.principle-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.principle-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  flex: 0 0 42px;
}
.principle-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.principle-title {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.02rem;
  line-height: 1.25;
}
.principle span:last-child {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}
.principle-creators::before,
.principle-creators .principle-icon {
  background: #00b1e3;
}
.principle-awareness::before,
.principle-awareness .principle-icon {
  background: #055792;
}
.principle-value::before,
.principle-value .principle-icon {
  background: #4dacb0;
}
.principle-team::before,
.principle-team .principle-icon {
  background: #ed5700;
}
.principle-care::before,
.principle-care .principle-icon {
  background: #111111;
}
.principle-entrepreneur::before,
.principle-entrepreneur .principle-icon {
  background: #007bbf;
}

.policy-grid { display: grid; gap: 16px; }
.policy-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}
.policy-card h4 { margin: 0 0 10px; font-size: 1rem; color: var(--brand-dark); }
.policy-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 12px; color: var(--muted); font-size: 0.92rem; }
.policy-meta span { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: #eef7ff; color: var(--brand-dark); }
.policy-card p { margin: 0 0 12px; color: var(--muted); }
.policy-card ul { padding-left: 18px; margin: 0; color: var(--muted); }
.policy-card ul li { margin-bottom: 8px; }

.policy-group {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.policy-group > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-dark);
  list-style: none;
  background: var(--surface);
}
.policy-group > summary::-webkit-details-marker { display: none; }
.policy-group > summary::after {
  content: "▾";
  transition: transform 0.2s ease;
}
.policy-group[open] > summary::after {
  transform: rotate(180deg);
}
.card > .policy-group + .policy-group { margin-top: 14px; }
.policy-items {
  padding: 0 18px 18px;
  display: grid;
  gap: 12px;
}
.policy-details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}
.policy-details > summary {
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-dark);
  list-style: none;
}
.policy-details > summary::-webkit-details-marker { display: none; }
.policy-details > summary::after {
  content: "▾";
  float: right;
  transition: transform 0.2s ease;
}
.policy-details[open] > summary::after {
  transform: rotate(180deg);
}
.policy-content {
  padding: 0 14px 14px;
  color: var(--muted);
}
.policy-content ul { padding-left: 18px; margin: 10px 0 0; }
.policy-content li { margin-bottom: 8px; }

.news-list { display: grid; gap: 12px; }
.news-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: var(--surface-alt);
}
.meta { color: var(--muted); font-size: 0.85rem; margin: 4px 0 6px; }
.source-status-card .link-card span {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.executive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.exec-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 14px;
}
.exec-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.exec-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-accent) 100%);
  color: white;
  display: grid;
  place-items: center;
  object-fit: cover;
  flex: 0 0 56px;
  font-weight: 800;
  font-size: 1.1rem;
}
.exec-person strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-dark);
}
.exec-person span {
  display: block;
  color: var(--muted);
}
.person-contact {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}
.exec-card p { margin: 0; color: var(--muted); }
.exec-card ul {
  padding-left: 18px;
  margin: 8px 0 0;
  color: var(--muted);
}
.exec-card ul li {
  margin-bottom: 6px;
}

.list { padding-left: 18px; margin: 8px 0 0; color: var(--muted); }
.table { border-collapse: collapse; width: 100%; }
.table th, .table td { border-bottom: 1px solid var(--border); padding: 8px 6px; text-align: left; }
.table th { color: var(--brand-dark); }

.note { background: #f7fbff; border-left: 4px solid var(--brand-accent); padding: 10px 12px; border-radius: 8px; color: var(--muted); }
.tag { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #eaf6ff; color: var(--brand); font-size: 0.8rem; margin-right: 6px; margin-top: 6px; }

.footer {
  text-align: center; color: var(--muted); padding: 22px 0 8px; font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid, .home-top-grid, .featured-update-layout, .home-news-grid, .home-calendar-grid, .objective-grid, .two-col, .three-col, .quick-links, .principles-grid, .executive-grid { grid-template-columns: 1fr; }
  .quick-access-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 560px) {
  .quick-access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
  .section-heading-row { flex-direction: column; align-items: flex-start; }
  .calendar-item { grid-template-columns: 52px minmax(0, 1fr); }
  .exec-card { padding: 14px; }
  .exec-top { align-items: flex-start; gap: 12px; }
  .exec-image { width: 48px; height: 48px; flex: 0 0 48px; }
  .exec-person { min-width: 0; }
  .exec-person strong,
  .exec-person span,
  .person-contact { overflow-wrap: anywhere; }
}











.compact-home-top .card,
.home-news-grid .card,
.home-calendar-grid .card {
  padding: 14px 16px;
}
.compact-home-top .section-heading-row,
.home-news-grid .section-heading-row,
.card .section-heading-row {
  margin-bottom: 8px;
}
.compact-home-top p,
.home-news-grid p,
.communication-card span {
  font-size: 0.92rem;
  line-height: 1.45;
}
.compact-news-list {
  gap: 8px;
}
.compact-news-list .news-card {
  padding: 10px 12px;
}
.communication-grid {
  gap: 10px;
}
.communication-card {
  padding: 12px;
  gap: 8px;
}
.communication-card > img {
  aspect-ratio: 16 / 7;
}


.compact-home-top .objectives-card {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
.home-news-grid + .card {
  margin-top: 14px;
}
.compact-home-top .quick-access-card {
  align-self: start;
}

.objective-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.objective-calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.mini-calendar-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-alt);
  padding: 10px;
}
.mini-heading {
  margin-bottom: 8px;
}
.mini-heading h3 {
  font-size: 1rem;
}
.compact-calendar-list {
  gap: 7px;
}
.compact-calendar-list .calendar-item {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px;
  padding: 7px;
  background: white;
}
.compact-calendar-list .calendar-item time {
  min-height: 46px;
  border-radius: 10px;
}
.compact-calendar-list .calendar-item time strong {
  font-size: 1rem;
}
.compact-calendar-list .calendar-item div strong {
  font-size: 0.9rem;
  line-height: 1.2;
}
.compact-calendar-list .calendar-item div span {
  font-size: 0.82rem;
}


.home-left-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: 100%;
}
.home-calendar-card {
  padding: 14px 16px;
}
.quick-access-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quick-access-card .quick-access-grid {
  flex: 1;
  align-content: stretch;
}


.qa-blue { background: linear-gradient(135deg, #eef6ff 0%, #dcecff 100%); border-color: #bed7f5; }
.qa-gold { background: linear-gradient(135deg, #fff8e8 0%, #f7e6bd 100%); border-color: #ead098; }
.qa-purple { background: linear-gradient(135deg, #f6f0ff 0%, #eadcff 100%); border-color: #d7c2f4; }
.qa-cyan { background: linear-gradient(135deg, #eefcff 0%, #d6f2f8 100%); border-color: #b6dfe8; }
.qa-green { background: linear-gradient(135deg, #effaf4 0%, #d8f1e3 100%); border-color: #b7ddc7; }
.qa-pink { background: linear-gradient(135deg, #fff0f7 0%, #f6dce9 100%); border-color: #e5bfd2; }
.qa-indigo { background: linear-gradient(135deg, #f0f3ff 0%, #dde4ff 100%); border-color: #c2ccef; }
.qa-teal { background: linear-gradient(135deg, #eefaf8 0%, #d8efed 100%); border-color: #badbd7; }
.qa-slate { background: linear-gradient(135deg, #f3f6f8 0%, #e4ebf0 100%); border-color: #c9d6df; }
.quick-access-tile:hover {
  filter: saturate(1.08);
  transform: translateY(-1px);
}
.calendar-main-heading {
  margin-bottom: 8px;
}
.calendar-main-heading span {
  color: var(--muted);
  font-size: 0.9rem;
}
.calendar-item.is-today {
  border-color: rgba(29, 157, 111, 0.4);
  background: linear-gradient(135deg, #effaf4 0%, #ffffff 100%);
  box-shadow: inset 4px 0 0 var(--success);
}
.calendar-item.is-today time {
  background: var(--success);
  color: white;
  border-color: var(--success);
}
.calendar-item.is-today time span {
  color: rgba(255,255,255,0.82);
}

.title-with-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.update-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff3dc;
  color: #8a5a00;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.objective-update-note {
  border: 1px solid #f1d499;
  border-left: 4px solid #d99a1e;
  border-radius: 10px;
  background: #fff8e8;
  color: #6f4a00;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 10px;
}

/* Corporate identity alignment */
body:not(.login-page) {
  background:
    linear-gradient(90deg, rgba(0, 177, 227, 0.16) 0, rgba(0, 177, 227, 0.16) 12px, transparent 12px),
    var(--bg);
}

.site-shell {
  max-width: 1240px;
}

.header {
  background: #111111;
  border-radius: 8px;
  box-shadow: none;
  border-right: 10px solid var(--brand-accent);
}

.brand-logo {
  filter: none;
}

.nav a {
  border-radius: 8px;
  background: transparent;
  min-height: 44px;
  padding: 10px 18px 11px;
}

.nav a.active,
.nav a:hover {
  background: var(--brand-accent);
  color: #111111;
}

.hero {
  border: 0;
  border-left: 8px solid var(--brand-accent);
  border-radius: 8px;
  box-shadow: none;
}

.hero h2,
.card h3,
.section-heading-row h3 {
  color: var(--brand-dark);
  letter-spacing: 0;
}

.badge,
.tag,
.policy-meta span,
.update-badge {
  border-radius: 8px;
  background: #f5f5f5;
  color: var(--brand-dark);
  border: 1px solid var(--border);
}

.card,
.link-card,
.news-card,
.policy-card,
.policy-group,
.policy-details,
.exec-card,
.principle,
.objective-tile,
.calendar-item,
.quick-access-tile {
  border-radius: 8px;
  box-shadow: none;
  background: var(--surface);
}

.card {
  border-top: 3px solid var(--brand-accent);
}

.link-card:hover,
.quick-access-tile:hover {
  border-color: var(--brand-accent);
  text-decoration: none;
}

.button-link {
  border-radius: 8px;
  background: var(--brand);
}

.button-link:hover {
  background: var(--brand-dark);
}

.quick-access-icon,
.objective-number,
.tool-icon,
.resource-letter {
  border-radius: 6px;
  background: var(--brand-dark);
  color: white;
}

.qa-blue,
.qa-gold,
.qa-purple,
.qa-cyan,
.qa-green,
.qa-pink,
.qa-indigo,
.qa-teal,
.qa-slate,
.principle,
.objective-tile {
  background: #ffffff;
}

.internal-news-card,
.public-news-card {
  border-top-color: var(--brand-accent);
}

.note,
.objective-update-note {
  background: #f5f5f5;
  border-left-color: var(--brand-accent);
  border-radius: 8px;
  color: var(--muted);
}

.footer {
  color: #676767;
}
