:root {
  --oc-blue: #1076bb;
  --oc-purple: #b0519d;
  --oc-red: #d52e28;
  --oc-ink: #1b2430;
  --oc-muted: #657083;
  --oc-body: #eef2f5;
  --oc-soft: #f7f9fb;
  --oc-line: #dce7ef;
  --oc-white: #fff;
}

body {
  background: var(--oc-body);
  color: var(--oc-ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.material-symbols-rounded {
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Rounded";
  font-feature-settings: "liga";
  font-size: 1.2em;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  vertical-align: -0.18em;
  white-space: nowrap;
}

.icon-text {
  align-items: center;
  display: inline-flex;
  gap: .4rem;
}

a {
  color: var(--oc-blue);
  text-decoration: none;
}

a:hover {
  color: var(--oc-purple);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-bg: var(--oc-blue);
  --bs-btn-border-color: var(--oc-blue);
  --bs-btn-hover-bg: #0d5e95;
  --bs-btn-hover-border-color: #0d5e95;
}

.btn-primary:focus-visible,
.btn-outline-primary:focus-visible,
.nav-link:focus-visible {
  box-shadow: 0 0 0 .2rem rgba(176, 81, 157, .25);
}

.btn-outline-primary {
  --bs-btn-color: var(--oc-blue);
  --bs-btn-border-color: var(--oc-blue);
  --bs-btn-hover-bg: var(--oc-blue);
  --bs-btn-hover-border-color: var(--oc-blue);
}

.topbar {
  background: var(--oc-blue);
  color: #fff;
  font-size: .9rem;
}

.topbar-inner {
  align-items: center;
  column-gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: .5rem 0;
  row-gap: .25rem;
}

.topbar-hours {
  font-weight: 700;
  white-space: nowrap;
}

.topbar-phones {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .2rem;
}

.topbar a,
.topbar-phone {
  color: #fff;
}

.topbar-phone {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .2rem .7rem;
  transition: background-color .18s ease;
  white-space: nowrap;
}

.topbar-phone:hover,
.topbar-phone:focus-visible {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

/* Slim dividers between numbers on wider screens for a tidy, pro rhythm. */
.topbar-phone + .topbar-phone {
  position: relative;
}

.topbar-phone + .topbar-phone::before {
  background: rgba(255, 255, 255, .28);
  content: "";
  height: 14px;
  left: -.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.topbar .material-symbols-rounded {
  font-size: 1.1rem;
  opacity: .85;
}

.site-header {
  border-bottom: 1px solid var(--oc-line);
  box-shadow: none;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-link {
  color: var(--oc-ink);
  font-weight: 700;
}

.nav-link.active,
.nav-link:hover {
  color: var(--oc-blue);
}

.hero-section {
  background: transparent;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero-section.hero-background {
  align-items: center;
  background: var(--oc-body);
  display: flex;
  isolation: isolate;
  min-height: clamp(560px, 72vh, 720px);
  overflow: hidden;
  position: relative;
}

.hero-section.hero-background.has-image {
  background-image: var(--hero-image);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-section.hero-background::before {
  align-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(16, 118, 187, .13) 0 12px, rgba(255, 255, 255, .26) 12px 24px),
    #eaf3fb;
  color: var(--oc-ink);
  content: "Image Placeholder";
  display: flex;
  font-size: .9rem;
  font-weight: 800;
  inset: 0;
  justify-content: flex-end;
  padding-right: clamp(3rem, 14vw, 16rem);
  position: absolute;
  text-align: center;
  z-index: 0;
}

.hero-section.hero-background.has-image::before {
  content: "";
  display: none;
  padding-right: 0;
}

.hero-section.hero-background::after {
  background: linear-gradient(90deg, rgba(238, 242, 245, 1) 0%, rgba(238, 242, 245, .98) 42%, rgb(238 242 245 / 60%) 60%, rgb(238 242 245 / 0%) 78%, rgb(238 242 245 / 0%) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-section.hero-background .hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center right;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-section.hero-background.has-video::before {
  content: "";
  display: none;
  padding-right: 0;
}

.hero-section.hero-background .container {
  position: relative;
  z-index: 2;
}

/* Centre the content of the section that immediately follows the hero. */
.after-hero-center {
  text-align: center;
}

.after-hero-center .section-heading {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.after-hero-center .section-heading h2::after,
.after-hero-center .section-heading.text-start h2::after {
  margin-left: auto;
  margin-right: auto;
}

.after-hero-center .rich-copy {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  max-width: 860px;
  padding-right: 2rem;
}

.blog-detail-hero {
  min-height: clamp(500px, 66vh, 680px);
}

.blog-detail-hero .lead {
  max-width: 720px;
}

.blog-detail-hero .hero-meta {
  color: var(--oc-muted);
  font-weight: 700;
  margin-top: 1.25rem;
}

.blog-share-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.share-feedback {
  color: var(--oc-purple);
  display: inline-block;
  font-weight: 800;
  margin-top: .75rem;
}

main > section:nth-of-type(even) {
  background: var(--oc-white);
}

main > section:nth-of-type(odd) {
  background: transparent;
}

.hero-section.inner {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero-section h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.02;
  margin: .8rem 0 1rem;
  max-width: 900px;
}

.hero-section h1::after,
.section-heading h2::after {
  background: var(--oc-blue);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-top: 1rem;
  width: 86px;
}

.section-heading h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.text-start h2::after {
  margin-left: 0;
  margin-right: 0;
}

.lead {
  color: var(--oc-muted);
  max-width: 720px;
}

.eyebrow {
  color: var(--oc-purple);
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(27, 36, 48, .06);
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.placeholder-image {
  align-items: center;
  aspect-ratio: 16 / 10;
  background: #eaf3fb;
  border: 1px dashed rgba(16, 118, 187, .45);
  border-radius: 8px;
  color: #315167;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.placeholder-image::before {
  background: var(--oc-blue);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.placeholder-image span {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(16, 118, 187, .18);
  border-radius: 999px;
  color: var(--oc-ink);
  font-size: .86rem;
  font-weight: 800;
  max-width: calc(100% - 2rem);
  padding: .45rem .8rem;
}

.hero-placeholder {
  box-shadow: none;
  margin-bottom: 1rem;
}

.hero-placeholder.has-image {
  background: var(--program-hero-image) center / cover no-repeat;
  border-style: solid;
}

.hero-placeholder.has-image::before {
  display: none;
}

.card-placeholder {
  aspect-ratio: 16 / 9;
  margin: -1.5rem -1.5rem 1.25rem;
  border-left: 0;
  border-radius: 8px 8px 0 0;
  border-right: 0;
  border-top: 0;
}

.card-placeholder::before {
  display: none;
}

.hero-panel h2 {
  align-items: center;
  display: flex;
  font-size: 1.35rem;
  gap: .55rem;
}

.hero-panel h2 .material-symbols-rounded {
  color: var(--oc-blue);
  font-size: 1.35em;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  color: var(--oc-muted);
}

.section-band {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section-band.soft {
  background: transparent;
}

.section-band.white {
  background: var(--oc-white);
}

.legal-hero {
  background: transparent;
}

.status-page {
  align-items: center;
  display: flex;
  min-height: clamp(560px, 72vh, 760px);
}

.status-card {
  margin-inline: auto;
  max-width: 760px;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  text-align: center;
}

.status-card::before {
  background: var(--oc-blue);
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.status-card.success::before {
  background: var(--oc-purple);
}

.status-card.error::before {
  background: var(--oc-red);
}

.status-icon {
  align-items: center;
  background: #eef7fd;
  border: 1px solid #cfe5f6;
  border-radius: 999px;
  color: var(--oc-blue);
  display: inline-flex;
  height: 78px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 78px;
}

.status-card.success .status-icon {
  background: rgba(176, 81, 157, .1);
  border-color: rgba(176, 81, 157, .22);
  color: var(--oc-purple);
}

.status-card.error .status-icon {
  background: rgba(213, 46, 40, .1);
  border-color: rgba(213, 46, 40, .22);
  color: var(--oc-red);
}

.status-icon .material-symbols-rounded {
  font-size: 2.4rem;
}

.status-card h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  margin: .45rem auto 1rem;
  max-width: 680px;
}

.status-card p {
  color: var(--oc-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 610px;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 1.7rem;
}

.legal-content {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 1.7rem 0 .65rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--oc-muted);
  line-height: 1.75;
}

.container.narrow {
  max-width: 860px;
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 760px;
  text-align: center;
}

.content-section .section-heading {
  margin-left: 0;
  margin-right: 0;
  max-width: 760px;
}

.content-narrow {
  max-width: 820px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-top: .5rem;
}

.section-heading p {
  color: var(--oc-muted);
}

.gallery-section {
  background: var(--oc-blue) !important;
  color: #fff;
}

.gallery-section .eyebrow,
.gallery-section .section-heading p {
  color: rgba(255, 255, 255, .82);
}

.gallery-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 0 auto 2rem;
  max-width: 980px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-tabs button {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, .72);
  flex: 0 0 auto;
  font-weight: 800;
  padding: .75rem 0 .9rem;
}

.gallery-tabs button.active,
.gallery-tabs button:hover {
  border-bottom-color: var(--oc-red);
  color: #fff;
}

.gallery-layout {
  align-items: stretch;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .8fr);
  margin: 0 auto;
  max-width: 1080px;
}

.gallery-stack {
  display: grid;
  gap: 1.5rem;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
}

.gallery-placeholder {
  aspect-ratio: auto;
  background: #eaf3fb;
  border: 0;
  min-height: 0;
  width: 100%;
}

button.gallery-placeholder {
  align-items: center;
  cursor: zoom-in;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
}

.gallery-placeholder::before {
  display: none;
}

.gallery-placeholder-large {
  height: 100%;
  min-height: clamp(380px, 36vw, 460px);
}

/* Caption label sits centred in the middle of every tile. */
.gallery-placeholder > span:not(.gallery-zoom-cue) {
  backdrop-filter: blur(6px);
  background: rgba(12, 20, 30, .5);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  max-width: calc(100% - 2.5rem);
  padding: .55rem 1.25rem;
  position: relative;
  text-align: center;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background-color .35s ease;
  z-index: 2;
}

.gallery-placeholder.has-image:hover > span:not(.gallery-zoom-cue),
.gallery-placeholder.has-image:focus-visible > span:not(.gallery-zoom-cue) {
  background: rgba(16, 118, 187, .88);
  transform: translateY(-4px);
}

.gallery-zoom-cue {
  align-items: center;
  background: rgba(255, 255, 255, .95) !important;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15, 23, 34, .28);
  color: var(--oc-blue) !important;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  /* Visible by default (works on touch too), lifts on hover for a pro feel. */
  opacity: .92;
  padding: 0 !important;
  position: absolute;
  right: 1rem;
  top: 1rem;
  transform: translateY(0) scale(1);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
  width: 44px;
  z-index: 2;
}

.gallery-zoom-cue .material-symbols-rounded {
  background: transparent !important;
  border: 0;
  box-shadow: none;
  color: inherit !important;
  font-size: 26px;
  font-variation-settings: 'wght' 600;
  padding: 0;
}

.video-layout {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
}

.video-layout h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: .5rem 0 1rem;
}

.video-layout p {
  color: var(--oc-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.custom-video-player {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 118, 187, .08);
  overflow: hidden;
}

.video-embed-card {
  aspect-ratio: 16 / 9;
}

.video-embed-card iframe,
.video-embed-card video {
  border: 0;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-screen {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #eaf3fb;
  box-sizing: border-box;
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: 100%;
  min-height: 260px;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  width: 100%;
}

.video-screen::after {
  background: var(--oc-blue);
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  width: var(--video-progress, 0%);
}

.video-play-main {
  align-items: center;
  background: var(--oc-blue);
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: clamp(64px, 8vw, 82px);
  justify-content: center;
  width: clamp(64px, 8vw, 82px);
}

.video-play-main:hover,
.video-play-main:focus-visible {
  background: var(--oc-purple);
}

.video-play-main .material-symbols-rounded {
  font-size: 2.4rem;
}

.video-screen-copy {
  display: grid;
  gap: .25rem;
  min-width: 0;
}

.video-screen-copy span {
  color: var(--oc-purple);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-screen-copy strong {
  color: var(--oc-ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.25;
}

.video-screen-copy small {
  color: var(--oc-muted);
  font-weight: 700;
}

.video-controls {
  align-items: center;
  display: grid;
  gap: .7rem;
  grid-template-columns: auto auto minmax(110px, 1fr) auto auto auto;
  padding: .95rem 1rem;
}

.video-control-button {
  align-items: center;
  background: rgba(16, 118, 187, .1);
  border: 1px solid rgba(16, 118, 187, .16);
  border-radius: 999px;
  color: var(--oc-blue);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.video-control-button:hover,
.video-control-button:focus-visible {
  background: var(--oc-blue);
  color: #fff;
}

.video-time {
  color: var(--oc-muted);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.video-timeline {
  display: block;
  margin: 0;
  min-width: 0;
}

.video-timeline input {
  accent-color: var(--oc-purple);
  cursor: pointer;
  display: block;
  width: 100%;
}

.custom-video-player.is-playing .video-play-main,
.custom-video-player.is-playing .video-control-button:first-child {
  background: var(--oc-purple);
  color: #fff;
}

.content-card,
.step-item,
.contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
}

main > section:nth-of-type(even) .content-card,
main > section:nth-of-type(even) .step-item,
main > section:nth-of-type(even) .contact-form,
main > section:nth-of-type(even) .hero-panel {
  background: var(--oc-white);
}

.content-card {
  transition: transform .16s ease, box-shadow .16s ease;
}

.content-card:hover {
  box-shadow: 0 8px 18px rgba(27, 36, 48, .05);
  transform: translateY(-1px);
}

.content-card h2,
.content-card h3,
.step-item h3 {
  font-size: 1.3rem;
  margin: .8rem 0;
}

.content-card .badge {
  align-self: flex-start;
  background: rgb(176, 81, 157) !important;
  border: 1px solid rgb(176, 81, 157);
  color: var(--oc-white) !important;
  display: inline-flex;
  max-width: 100%;
  width: auto;
}

.blog-card-meta {
  align-items: center;
  color: var(--oc-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .86rem;
  gap: .35rem .65rem;
  margin-top: .65rem;
}

.blog-card-meta span {
  align-items: center;
  display: inline-flex;
}

.blog-card-meta span + span::before {
  background: var(--oc-line);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: .35rem;
  margin-right: .65rem;
  width: .35rem;
}

.blog-index-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.blog-post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-index-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.blog-index-card a {
  margin-top: auto;
}

.blog-index-card .stretched-link::after {
  border-radius: 8px;
}

.program-card .stretched-link::after {
  border-radius: var(--oc-radius);
  border: 1px solid #f4f4f4;
}

.blog-active-filter-bar {
  align-items: center;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding: 1rem 1.15rem;
}

.blog-active-filter-bar div {
  display: grid;
  gap: .2rem;
}

.blog-active-filter-bar span {
  color: var(--oc-muted);
  font-size: .92rem;
}

.blog-pagination {
  grid-column: 1 / -1;
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.blog-sidebar-panel {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  padding: 1.25rem;
}

.blog-filter-reset {
  display: grid;
  gap: .85rem;
}

.blog-filter-reset .btn {
  justify-content: center;
}

.blog-sidebar-panel h2,
.blog-sidebar-cta h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.recent-post-list {
  display: grid;
  gap: .95rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recent-post-list li {
  border-bottom: 1px solid var(--oc-line);
  display: grid;
  gap: .3rem;
  padding-bottom: .95rem;
}

.recent-post-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.recent-post-list a {
  color: var(--oc-ink);
  font-weight: 800;
  line-height: 1.35;
}

.recent-post-list a:hover {
  color: var(--oc-purple);
}

.recent-post-list span {
  color: var(--oc-muted);
  font-size: .88rem;
}

.blog-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.blog-pill,
.blog-tag {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1;
  min-height: 2rem;
  padding: .5rem .75rem;
}

.blog-pill {
  background: rgba(176, 81, 157, .1);
  border: 1px solid rgba(176, 81, 157, .22);
  color: var(--oc-purple);
  gap: .45rem;
}

.blog-pill:hover,
.blog-pill.active {
  background: var(--oc-purple);
  border-color: var(--oc-purple);
  color: #fff;
}

.blog-pill small {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: var(--oc-blue);
  display: inline-flex;
  font-size: .72rem;
  height: 1.25rem;
  justify-content: center;
  min-width: 1.25rem;
  padding: 0 .35rem;
}

.blog-tag {
  background: #eaf3fb;
  border: 1px solid rgba(16, 118, 187, .16);
  color: var(--oc-blue);
}

.blog-tag:hover,
.blog-tag.active {
  background: var(--oc-blue);
  border-color: var(--oc-blue);
  color: #fff;
}

.blog-sidebar-cta {
  background: var(--oc-purple);
  border-radius: 8px;
  color: #fff;
  padding: 1.4rem;
}

.blog-sidebar-cta .eyebrow {
  color: #fff;
  opacity: .82;
}

.blog-sidebar-cta p {
  color: rgba(255, 255, 255, .86);
  margin-bottom: 1.1rem;
}

.blog-sidebar-cta .btn {
  color: var(--oc-purple);
}

.blog-detail-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(280px, 330px);
}

.blog-toc {
  background: transparent;
  border: 0;
  min-width: 0;
  padding: 0;
  position: sticky;
  top: 6rem;
}

.blog-toc span {
  color: var(--oc-purple);
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: .75rem;
  text-transform: uppercase;
}

.blog-toc nav {
  display: grid;
  gap: .1rem;
  padding-left: 1rem;
  position: relative;
}

/* Static track line + animated marker that follows the active section. */
.blog-toc nav::before {
  background: var(--oc-line);
  border-radius: 2px;
  bottom: .35rem;
  content: "";
  left: 0;
  position: absolute;
  top: .35rem;
  width: 2px;
}

.blog-toc-marker {
  background: var(--oc-blue);
  border-radius: 2px;
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transition: top .3s cubic-bezier(.4, 0, .2, 1), height .3s cubic-bezier(.4, 0, .2, 1);
  width: 2px;
}

.blog-toc a {
  border-radius: 0;
  color: var(--oc-muted);
  display: block;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.4;
  padding: .42rem 0 .42rem .3rem;
  transition: color .2s ease;
}

.blog-toc a.toc-lvl-1 {
  font-weight: 800;
}

.blog-toc a.toc-lvl-2 {
  font-size: .86rem;
  padding-left: .9rem;
}

.blog-toc a:hover {
  background: transparent;
  color: var(--oc-blue);
}

.blog-toc a.active {
  background: transparent;
  color: var(--oc-blue);
  font-weight: 800;
}

.toc-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 7rem;
}

.blog-detail-article {
  background: transparent;
  border: 0;
  min-width: 0;
  padding: 0;
}

.blog-detail-header {
  border-bottom: 1px solid var(--oc-line);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.blog-detail-header h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin: .45rem 0 1rem;
}

.blog-detail-header p {
  color: var(--oc-muted);
  margin: 0;
}

.blog-detail-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
}

.blog-detail-meta span + span::before {
  background: var(--oc-line);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: .4rem;
  margin-right: .75rem;
  width: .4rem;
}

.blog-rich-copy h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  margin: 2.4rem 0 .9rem;
  scroll-margin-top: 7rem;
}

.blog-rich-copy h2:first-child {
  margin-top: 0;
}

.blog-rich-copy p {
  margin-bottom: 1.2rem;
}

/* ---- Rich content: tables & images (CKEditor output) ------------------- */
.rich-copy figure {
  margin: 1.6rem 0;
}

.rich-copy figure.image,
.rich-copy figure.image-style-block {
  text-align: center;
}

.rich-copy img {
  border-radius: 10px;
  height: auto;
  max-width: 100%;
}

.rich-copy figure.image-style-side {
  float: right;
  margin: .4rem 0 1rem 1.5rem;
  max-width: 45%;
}

.rich-copy figcaption {
  color: var(--oc-muted);
  font-size: .85rem;
  margin-top: .5rem;
  text-align: center;
}

.rich-copy figure.table {
  margin: 1.8rem 0;
  overflow-x: auto;
}

.rich-copy table {
  border: 1px solid var(--oc-line);
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.rich-copy th,
.rich-copy td {
  border: 1px solid var(--oc-line);
  padding: .7rem .9rem;
  text-align: left;
  vertical-align: top;
}

.rich-copy thead th,
.rich-copy table > tr:first-child th {
  background: var(--oc-blue);
  color: #fff;
  font-weight: 700;
}

.rich-copy tbody tr:nth-child(even) {
  background: rgba(16, 118, 187, .04);
}

.rich-copy caption {
  caption-side: bottom;
  color: var(--oc-muted);
  font-size: .85rem;
  padding-top: .5rem;
}

.blog-recommendations-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  outline: 0;
  perspective: 1100px;
}

.team-card-inner {
  border-radius: 8px;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  width: 100%;
}

.team-card:hover .team-card-inner,
.team-card:focus-visible .team-card-inner,
.team-card:focus-within .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-face {
  align-items: flex-start;
  backface-visibility: hidden;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 1.5rem;
  position: absolute;
}

.team-card-front {
  background:
    repeating-linear-gradient(135deg, rgba(16, 118, 187, .12) 0 12px, rgba(255, 255, 255, .3) 12px 24px),
    #eaf3fb;
  justify-content: flex-end;
  padding: 0;
  text-align: left;
}

.team-card-front.has-image {
  background: var(--team-image) center / cover no-repeat;
}

.team-card-front::after {
  background: linear-gradient(180deg, rgba(18, 25, 34, 0) 25%, rgba(18, 25, 34, .78) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.team-card-back {
  background: var(--oc-blue);
  border-color: var(--oc-blue);
  color: #fff;
  transform: rotateY(180deg);
}

.team-image-placeholder {
  align-items: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(16, 118, 187, .16);
  border-radius: 999px;
  color: var(--oc-blue);
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 800;
  height: 5rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 5rem;
}

.team-card-overlay {
  color: #fff;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  position: relative;
  width: 100%;
  z-index: 1;
}

.team-card h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin: 0 0 .55rem;
}

.team-card span {
  color: var(--oc-purple);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.team-card-front h3,
.team-card-front span {
  color: #fff;
}

.team-card-back span,
.team-card-back p {
  color: rgba(255, 255, 255, .86);
}

.team-card p {
  line-height: 1.55;
  margin: .85rem 0 0;
}

.about-profile-layout {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.about-profile-content {
  display: block;
}

.about-carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.about-carousel-track {
  backface-visibility: hidden;
  display: flex;
  gap: 1.25rem;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.about-carousel.is-dragging .about-carousel-track {
  transition: none;
}

.about-slide {
  display: flex;
  /* Two cards visible on desktop; collapses to one on tablet/mobile below. */
  flex: 0 0 calc((100% - 1.25rem) / 2);
  min-width: 0;
}

.about-slide .about-profile-card {
  width: 100%;
}

.about-profile-section .carousel-controls {
  justify-content: center;
  margin-top: 1.25rem;
}

/* ---- Media page ------------------------------------------------------- */
.media-featured {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1.2fr 1fr;
  margin-top: 2rem;
}

.media-featured-player {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 100%;
}

.media-thumb {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #0d2233 center / cover no-repeat;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.media-thumb::after {
  background: linear-gradient(180deg, rgba(11, 27, 51, .05), rgba(11, 27, 51, .45));
  content: "";
  inset: 0;
  position: absolute;
  transition: background .2s ease;
}

.media-card:hover .media-thumb::after,
.media-featured-player:hover .media-thumb::after {
  background: linear-gradient(180deg, rgba(16, 118, 187, .15), rgba(11, 27, 51, .5));
}

.media-play {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  color: var(--oc-blue);
  display: inline-flex;
  height: 62px;
  justify-content: center;
  position: relative;
  transition: transform .2s ease, background-color .2s ease;
  width: 62px;
  z-index: 1;
}

.media-play .material-symbols-rounded {
  font-size: 34px;
}

.media-card:hover .media-play,
.media-featured-player:hover .media-play {
  background: #fff;
  transform: scale(1.08);
}

.media-featured-copy .media-tag {
  align-items: center;
  background: rgba(176, 81, 157, .1);
  border-radius: 999px;
  color: var(--oc-purple);
  display: inline-flex;
  font-size: .74rem;
  font-weight: 800;
  gap: 6px;
  letter-spacing: .04em;
  padding: 6px 12px;
  text-transform: uppercase;
}

.media-featured-copy .media-tag .material-symbols-rounded {
  font-size: 16px;
}

.media-featured-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin: 12px 0 10px;
}

.media-featured-copy p {
  color: var(--oc-muted);
  margin: 0 0 18px;
}

.media-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 2.5rem;
}

.media-card {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.media-card:hover {
  border-color: #b9d7ec;
  box-shadow: 0 14px 30px rgba(16, 118, 187, .1);
  transform: translateY(-2px);
}

.media-card .media-thumb {
  border-radius: 0;
}

.media-card .media-play {
  height: 52px;
  width: 52px;
}

.media-card .media-play .material-symbols-rounded {
  font-size: 28px;
}

.media-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
}

.media-card-body strong {
  color: var(--oc-ink);
  font-size: 1rem;
  line-height: 1.35;
}

.media-card-body small {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--oc-muted);
  display: -webkit-box;
  overflow: hidden;
}

.media-modal-content {
  background: #000;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
}

.media-modal-close {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  padding: 10px;
  position: absolute;
  right: -14px;
  top: -14px;
  z-index: 3;
}

.media-modal .ratio > div {
  height: 100%;
  width: 100%;
}

.media-modal iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.media-empty {
  padding: 40px 0;
  text-align: center;
}

.media-empty .material-symbols-rounded {
  color: var(--oc-blue);
  font-size: 46px;
}

.media-empty h2 {
  font-weight: 800;
  margin: 12px 0 8px;
}

.media-empty p {
  color: var(--oc-muted);
  margin: 0 auto 18px;
  max-width: 460px;
}

@media (max-width: 767.98px) {
  .media-featured {
    grid-template-columns: 1fr;
  }

  .media-modal-close {
    right: 8px;
    top: 8px;
  }
}

.about-profile-card {
  background: var(--oc-soft);
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  padding: 1.35rem;
}

.about-profile-card.featured {
  background: var(--oc-blue);
  border-color: var(--oc-blue);
  color: #fff;
  grid-column: 1 / -1;
}

.about-profile-card span {
  color: var(--oc-purple);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.about-profile-card.featured span,
.about-profile-card.featured p {
  color: rgba(255, 255, 255, .84);
}

.about-profile-card h3 {
  font-size: 1.25rem;
  margin: .55rem 0 .75rem;
}

.about-profile-card p {
  color: var(--oc-muted);
  line-height: 1.65;
  margin: 0;
}

.accreditation-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.accreditation-card {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 1.25rem;
  text-align: center;
}

main > section:nth-of-type(even) .accreditation-card {
  background: var(--oc-soft);
}

.accreditation-card span {
  align-items: center;
  background: #eaf3fb;
  border: 1px solid rgba(16, 118, 187, .16);
  border-radius: 999px;
  color: var(--oc-blue);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  margin-bottom: 1rem;
  min-height: 2rem;
  min-width: 3.5rem;
  padding: .45rem .7rem;
}

.accreditation-logo {
  display: block;
  height: auto;
  margin-bottom: 1rem;
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.accreditation-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.program-carousel,
.blog-carousel,
.team-carousel,
.accreditation-carousel {
  padding-bottom: 4rem;
}

.program-carousel-viewport,
.blog-carousel-viewport,
.team-carousel-viewport,
.accreditation-carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.program-carousel-track,
.blog-carousel-track,
.team-carousel-track,
.accreditation-carousel-track {
  backface-visibility: hidden;
  display: flex;
  gap: 1.5rem;
  margin: 20px 0;;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.program-carousel.is-dragging .program-carousel-track,
.blog-carousel.is-dragging .blog-carousel-track,
.team-carousel.is-dragging .team-carousel-track,
.accreditation-carousel.is-dragging .accreditation-carousel-track {
  transition: none;
}

.program-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

.blog-slide,
.team-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

.accreditation-slide {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: 0;
}

.program-card {
  min-height: 100%;
}

.program-card-category {
  align-self: flex-start;
  background: rgba(16, 118, 187, .1);
  border-radius: 999px;
  color: var(--oc-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: .35rem;
  padding: .28rem .7rem;
  text-transform: uppercase;
}

.program-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pagination-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 2rem;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.pagination-link {
  align-items: center;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 6px;
  color: var(--oc-blue);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  padding: .55rem .85rem;
}

.pagination-link:hover,
.pagination-link.active {
  background: var(--oc-blue);
  border-color: var(--oc-blue);
  color: #fff;
}

.pagination-link.disabled {
  color: #8ca0b3;
  cursor: not-allowed;
  opacity: .65;
  pointer-events: none;
}

.carousel-controls {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.program-carousel .carousel-control-prev,
.program-carousel .carousel-control-next,
.blog-carousel .carousel-control-prev,
.blog-carousel .carousel-control-next,
.team-carousel .carousel-control-prev,
.team-carousel .carousel-control-next,
.accreditation-carousel .carousel-control-prev,
.accreditation-carousel .carousel-control-next,
.about-carousel .carousel-control-prev,
.about-carousel .carousel-control-next {
  align-items: center;
  background: var(--oc-blue);
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  opacity: 1;
  position: static;
  transform: none;
  width: 44px;
}

.program-carousel .carousel-control-prev:hover,
.program-carousel .carousel-control-next:hover,
.blog-carousel .carousel-control-prev:hover,
.blog-carousel .carousel-control-next:hover,
.team-carousel .carousel-control-prev:hover,
.team-carousel .carousel-control-next:hover,
.accreditation-carousel .carousel-control-prev:hover,
.accreditation-carousel .carousel-control-next:hover,
.about-carousel .carousel-control-prev:hover,
.about-carousel .carousel-control-next:hover {
  background: var(--oc-purple);
}

.program-carousel .carousel-control-prev:disabled,
.program-carousel .carousel-control-next:disabled,
.blog-carousel .carousel-control-prev:disabled,
.blog-carousel .carousel-control-next:disabled,
.team-carousel .carousel-control-prev:disabled,
.team-carousel .carousel-control-next:disabled,
.accreditation-carousel .carousel-control-prev:disabled,
.accreditation-carousel .carousel-control-next:disabled,
.about-carousel .carousel-control-prev:disabled,
.about-carousel .carousel-control-next:disabled {
  background: #9eb5c8;
  cursor: not-allowed;
  opacity: .65;
}

.program-carousel .carousel-indicators,
.blog-carousel .carousel-indicators,
.team-carousel .carousel-indicators,
.accreditation-carousel .carousel-indicators,
.about-carousel .carousel-indicators {
  align-items: center;
  display: flex;
  gap: .45rem;
  inset: auto;
  margin: 0;
  position: static;
}

.program-carousel .carousel-indicators button,
.blog-carousel .carousel-indicators button,
.team-carousel .carousel-indicators button,
.accreditation-carousel .carousel-indicators button,
.about-carousel .carousel-indicators button {
  background: var(--oc-blue);
  border: 0;
  border-radius: 999px;
  height: 9px;
  margin: 0;
  opacity: .32;
  text-indent: 0;
  width: 9px;
}

.program-carousel .carousel-indicators button.active,
.blog-carousel .carousel-indicators button.active,
.team-carousel .carousel-indicators button.active,
.accreditation-carousel .carousel-indicators button.active,
.about-carousel .carousel-indicators button.active {
  background: var(--oc-purple);
  opacity: 1;
  width: 26px;
}

.step-item span {
  align-items: center;
  background: var(--oc-blue);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.rich-copy {
  color: #314154;
  font-size: 1.08rem;
  line-height: 1.8;
}

.content-section .rich-copy {
  max-width: 820px;
}

@media (max-width: 1199.98px) {
  .blog-detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  }

  .blog-toc {
    grid-column: 1 / -1;
    position: static;
  }

  .blog-toc nav {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    padding-left: 0;
  }

  .blog-toc nav::before,
  .blog-toc-marker {
    display: none;
  }

  .blog-toc a,
  .blog-toc a.toc-lvl-2 {
    background: #eaf3fb;
    border-radius: 999px;
    padding: .4rem .8rem;
    width: auto;
  }

  .blog-toc a.active {
    background: var(--oc-blue);
    color: #fff;
  }
}

.check-list {
  display: grid;
  gap: .65rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.check-list li {
  border-left: 4px solid var(--oc-purple);
  background: var(--oc-soft);
  padding: .8rem 1rem;
}

.cta-band {
  background: var(--oc-blue) !important;
  color: #fff;
  padding: 3rem 0;
}

.cta-band .container {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.cta-band p,
.cta-band .eyebrow {
  color: #fff;
}

.video-card iframe {
  border: 0;
}

.form-label {
  display: block;
  font-weight: 700;
  width: 100%;
}

.site-footer {
  background: #101821;
  color: #cdd8e4;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.75rem;
}

/* --- Combined CTA ------------------------------------------------------- */
.footer-cta {
  align-items: center;
  background: linear-gradient(120deg, var(--oc-blue) 0%, #0d5e95 100%);
  border-radius: 18px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3.25rem);
}

.footer-cta-copy {
  max-width: 640px;
}

.footer-cta-copy h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 .6rem;
}

.footer-cta-copy p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.02rem;
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-cta-primary {
  background: #fff;
  border: 1px solid #fff;
  color: var(--oc-blue);
  font-weight: 800;
  padding: .7rem 1.6rem;
}

.footer-cta-primary:hover,
.footer-cta-primary:focus-visible {
  background: #eef4fb;
  color: #0d5e95;
}

.footer-cta-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
  font-weight: 800;
  padding: .7rem 1.6rem;
}

.footer-cta-ghost:hover,
.footer-cta-ghost:focus-visible {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

/* --- Newsletter -------------------------------------------------------- */
.footer-newsletter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3rem) 0 1.5rem;
}

.footer-newsletter-copy h2 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 .35rem;
}

.footer-newsletter-copy p {
  color: #9fb0c2;
  margin: 0;
}

.footer-subscribe {
  align-items: center;
  display: flex;
  flex: 0 1 460px;
  gap: .6rem;
}

.footer-subscribe input[type="email"] {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #1b2430;
  flex: 1 1 auto;
  font: inherit;
  min-height: 50px;
  padding: 0 1rem;
}

.footer-subscribe input[type="email"]::placeholder {
  color: #8a98a7;
}

.footer-subscribe input[type="email"]:focus {
  border-color: var(--oc-blue);
  box-shadow: 0 0 0 3px rgba(16, 118, 187, .28);
  outline: none;
}

.footer-subscribe .btn {
  min-height: 50px;
  padding: 0 1.4rem;
  white-space: nowrap;
}

.footer-subscribe-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin: 1.5rem 0;
  opacity: 1;
}

/* --- Link columns ------------------------------------------------------ */
.footer-columns {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.25rem 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  color: #4aa7e8;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 1rem;
  text-transform: none;
}

.footer-col a,
.footer-col-link {
  background: none;
  border: 0;
  color: #9fb0c2;
  font: inherit;
  margin-bottom: .7rem;
  padding: 0;
  text-align: left;
  transition: color .18s ease;
  width: fit-content;
}

.footer-col a:hover,
.footer-col-link:hover,
.footer-col-link:focus-visible {
  color: #fff;
}

.footer-col-link.privacy-choice-link {
  align-items: center;
  color: #9fb0c2;
  display: inline-flex;
  gap: .35rem;
}

.footer-link-badge {
  background: rgba(213, 46, 40, .16);
  border-radius: 999px;
  color: #ff8f8b;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-left: .4rem;
  padding: 2px 7px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* --- Bottom bar -------------------------------------------------------- */
.footer-bottom {
  align-items: center;
  color: #9fb0c2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}

.footer-bottom-brand img {
  filter: brightness(0) invert(1);
  height: 42px;
  opacity: .92;
  width: auto;
}

.footer-bottom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.25rem;
  justify-content: center;
  text-align: center;
}

.footer-bottom-meta span {
  align-items: center;
  display: inline-flex;
  white-space: nowrap;
}

.footer-bottom-meta a {
  color: #cdd8e4;
}

.footer-bottom-meta a:hover {
  color: #fff;
}

.powered-by {
  gap: .3rem;
}

.footer-social-icons {
  display: flex;
  gap: .6rem;
}

.footer-social-icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #cdd8e4;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  width: 40px;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  background: var(--oc-blue);
  border-color: var(--oc-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Floating support dock: back-to-top + support chat ---------------- */
.support-dock {
  align-items: flex-end;
  bottom: clamp(14px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  z-index: 1035;
}

.scroll-top-btn {
  align-items: center;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(24, 44, 68, .16);
  color: var(--oc-blue);
  cursor: pointer;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.9);
  transition: opacity .22s ease, transform .22s ease, background-color .18s ease, color .18s ease;
  width: 46px;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: var(--oc-blue);
  color: #fff;
}

.support-widget {
  position: relative;
}

.support-launcher {
  align-items: center;
  background: linear-gradient(150deg, var(--oc-blue), #0d5e95);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(16, 118, 187, .42);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 62px;
  justify-content: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  width: 62px;
}

.support-launcher:hover {
  box-shadow: 0 18px 38px rgba(16, 118, 187, .5);
  transform: translateY(-2px);
}

.support-launcher::before {
  animation: support-pulse 2.2s ease-out infinite;
  border: 2px solid var(--oc-blue);
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
}

@keyframes support-pulse {
  0% { opacity: .55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

.support-launcher-icon {
  font-size: 28px;
  transition: opacity .2s ease, transform .2s ease;
}

.support-launcher-shut {
  opacity: 0;
  position: absolute;
  transform: rotate(-45deg) scale(.6);
}

.support-widget.is-open .support-launcher-open {
  opacity: 0;
  transform: rotate(45deg) scale(.6);
}

.support-widget.is-open .support-launcher-shut {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.support-widget.is-open .support-launcher::before {
  animation: none;
}

.support-launcher-badge {
  align-items: center;
  background: var(--oc-red);
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  min-width: 20px;
  padding: 0 5px;
  position: absolute;
  right: -2px;
  top: -2px;
}

.support-widget.is-open .support-launcher-badge {
  display: none;
}

.support-teaser {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 16px 16px 4px 16px;
  bottom: calc(100% + 14px);
  box-shadow: 0 18px 40px rgba(24, 44, 68, .18);
  display: flex;
  gap: 10px;
  opacity: 0;
  padding: 14px 16px 14px 14px;
  position: absolute;
  right: 4px;
  transform: translateY(10px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  visibility: hidden;
  width: 260px;
}

.support-teaser.is-shown {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.support-widget.is-open .support-teaser {
  opacity: 0;
  visibility: hidden;
}

.support-teaser-avatar {
  align-items: center;
  background: #e9f5fc;
  border-radius: 50%;
  color: var(--oc-blue);
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.support-teaser p {
  color: var(--oc-ink);
  font-size: .86rem;
  line-height: 1.4;
  margin: 0;
}

.support-teaser-close {
  background: none;
  border: 0;
  color: var(--oc-muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 8px;
  top: 6px;
}

.support-panel {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 18px;
  bottom: calc(100% + 14px);
  box-shadow: 0 26px 60px rgba(24, 44, 68, .24);
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  transform: translateY(14px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .24s ease, transform .24s ease, visibility .24s;
  visibility: hidden;
  width: min(340px, calc(100vw - 28px));
}

.support-widget.is-open .support-panel {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.support-panel-head {
  align-items: center;
  background: linear-gradient(150deg, var(--oc-blue), #0d5e95);
  color: #fff;
  display: flex;
  gap: 12px;
  padding: 16px;
}

.support-panel-avatar {
  align-items: center;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.support-panel-avatar .material-symbols-rounded {
  font-size: 24px;
}

.support-panel-id {
  flex: 1 1 auto;
}

.support-panel-id strong {
  display: block;
  font-size: .98rem;
}

.support-panel-id small {
  align-items: center;
  display: flex;
  font-size: .76rem;
  gap: 6px;
  opacity: .9;
}

.support-online-dot {
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .3);
  display: inline-block;
  height: 8px;
  width: 8px;
}

.support-panel-close {
  align-items: center;
  background: rgba(255, 255, 255, .15);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.support-panel-close .material-symbols-rounded {
  font-size: 18px;
}

.support-panel-body {
  background: #f7f9fb;
  padding: 16px;
}

.support-msg {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 4px 14px 14px 14px;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.support-msg p {
  color: var(--oc-ink);
  font-size: .88rem;
  line-height: 1.5;
  margin: 0;
}

.support-actions {
  display: grid;
  gap: 8px;
}

.support-action {
  align-items: center;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 12px;
  color: var(--oc-ink);
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 11px 12px;
  text-align: left;
  text-decoration: none;
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
  width: 100%;
}

.support-action:hover {
  background: #f2f8fd;
  border-color: #b9d7ec;
  color: var(--oc-ink);
  transform: translateX(2px);
}

.support-action-icon {
  align-items: center;
  background: #e9f5fc;
  border-radius: 10px;
  color: var(--oc-blue);
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.support-action-wa .support-action-icon {
  background: rgba(37, 211, 102, .14);
  color: #1da851;
}

.support-action-text {
  flex: 1 1 auto;
  min-width: 0;
}

.support-action-text strong {
  display: block;
  font-size: .9rem;
}

.support-action-text small {
  color: var(--oc-muted);
  display: block;
  font-size: .78rem;
}

.support-action-go {
  color: #b6c6d4;
  font-size: 1.1rem;
}

.support-panel-foot {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--oc-line);
  color: var(--oc-muted);
  display: flex;
  font-size: .76rem;
  gap: 6px;
  justify-content: center;
  padding: 10px;
}

.support-panel-foot .material-symbols-rounded {
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  .support-launcher::before {
    animation: none;
  }
}

@media (max-width: 480px) {
  .support-teaser {
    width: 220px;
  }
}

.footer-cookie-settings {
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.privacy-choice-link {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  gap: .35rem;
  line-height: 1;
  padding: 0;
  vertical-align: middle;
}

.privacy-choice-link:hover,
.privacy-choice-link:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.privacy-choice-link img {
  display: block;
  filter: none;
  flex: 0 0 auto;
  height: auto;
  margin: 0;
  padding: 0;
  width: 1.6rem;
}

.privacy-choice-backdrop {
  align-items: center;
  background: rgba(18, 25, 34, .68);
  display: flex;
  inset: 0;
  justify-content: center;
  overflow-x: hidden;
  padding: 1rem;
  position: fixed;
  z-index: 1090;
}

.privacy-choice-backdrop[hidden] {
  display: none;
}

.privacy-choice-modal {
  background: #fff;
  border: 1px solid var(--oc-line);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  color: #0f1720;
  max-height: calc(100vh - 2rem);
  max-width: 720px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
  width: min(100%, calc(100vw - 2rem));
}

.privacy-choice-close {
  align-items: center;
  background: #fff;
  border: 2px solid #6b737b;
  border-radius: 999px;
  color: #4b5560;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: .55rem;
  top: .55rem;
  width: 34px;
}

.privacy-choice-modal h2 {
  color: var(--oc-blue);
  font-size: 1.15rem;
  margin: .35rem 0 1rem;
  text-align: center;
}

.privacy-choice-modal p {
  font-size: .9rem;
  line-height: 1.6;
}

.privacy-choice-modal a {
  color: var(--oc-blue);
}

.privacy-choice-list {
  display: grid;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
}

.privacy-choice-card {
  border: 1px solid var(--oc-line);
  border-radius: 4px;
  display: grid;
  gap: .75rem;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 92px;
  min-width: 0;
  padding: .9rem;
}

.privacy-choice-card h3 {
  color: var(--oc-blue);
  font-size: 1rem;
  margin: 0 0 .3rem;
}

.privacy-choice-card p {
  margin: 0;
}

.privacy-switch {
  align-items: center;
  align-self: center;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-self: end;
}

.privacy-switch-input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.privacy-switch-track {
  background: #c3ccd6;
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
  height: 26px;
  position: relative;
  transition: background-color .2s ease;
  width: 46px;
}

.privacy-switch-thumb {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  height: 20px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform .2s ease;
  width: 20px;
}

.privacy-switch-input:checked + .privacy-switch-track {
  background: var(--oc-blue);
}

.privacy-switch-input:checked + .privacy-switch-track .privacy-switch-thumb {
  transform: translateX(20px);
}

.privacy-switch-input:focus-visible + .privacy-switch-track {
  box-shadow: var(--oc-shadow-focus);
}

.privacy-switch-state {
  color: var(--oc-muted);
  font-size: .82rem;
  font-weight: 700;
  min-width: 24px;
}

.privacy-choice-actions {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.privacy-choice-actions .btn {
  font-size: .86rem;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.privacy-choice-footer {
  border-top: 1px solid var(--oc-line);
  margin: 1.25rem -1.5rem -1.5rem;
  padding: .75rem 1.5rem;
}

.cookie-consent {
  align-items: flex-start;
  background: #121922;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  bottom: 1.25rem;
  box-shadow: 0 18px 50px rgba(18, 25, 34, .22);
  color: #dfe8f1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  left: 50%;
  max-height: calc(100vh - 2.5rem);
  max-width: min(760px, calc(100% - 2rem));
  overflow: auto;
  padding: 1.15rem;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1080;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  color: #fff;
  display: block;
  margin-bottom: .35rem;
}

.cookie-consent p {
  margin: 0;
}

.cookie-consent-copy {
  width: 100%;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .45rem !important;
}

.cookie-consent a {
  color: #fff;
  font-weight: 700;
}

.cookie-settings-panel {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}

.cookie-settings-panel[hidden] {
  display: none;
}

.cookie-option {
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0;
  padding: .9rem;
}

.cookie-option strong {
  margin-bottom: .2rem;
}

.cookie-option small {
  color: #b8c7d6;
  display: block;
  line-height: 1.45;
}

.cookie-option input {
  accent-color: var(--oc-purple);
  flex: 0 0 auto;
  height: 1.2rem;
  width: 1.2rem;
}

.cookie-option.is-disabled {
  opacity: .82;
}

.cookie-consent-actions {
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: flex-end;
  padding-top: 1rem;
  width: 100%;
}

.admin-shell {
  background: #f3f5f8;
  min-height: 100vh;
}

.admin-topbar {
  align-items: center;
  background: #202124;
  color: #fff;
  display: flex;
  height: 48px;
  justify-content: space-between;
  left: 0;
  padding: 0 1rem;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1040;
}

.admin-topbar-brand,
.admin-topbar-actions {
  align-items: center;
  display: inline-flex;
  gap: .85rem;
}

.admin-topbar-brand span:last-child {
  color: #b7bdc6;
  font-size: .8rem;
}

.admin-topbar-actions a {
  align-items: center;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  opacity: .82;
  width: 34px;
}

.admin-topbar-actions a:hover {
  opacity: 1;
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: calc(100vh - 48px);
}

.admin-sidebar {
  background: #fff;
  border-right: 1px solid #e4e8ee;
  min-height: calc(100vh - 48px);
  padding: 1rem .85rem;
}

.admin-sidebar a {
  align-items: center;
  border-radius: 6px;
  color: #4f5b67;
  display: flex;
  gap: .65rem;
  font-size: .92rem;
  font-weight: 700;
  margin: .12rem 0;
  padding: .7rem .85rem;
}

.admin-brand-card {
  align-items: center;
  background: #f6f8fb;
  border: 1px solid #e4e8ee;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: .75rem;
}

.admin-nav-label {
  color: #9aa4b2;
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  margin: 1.1rem .85rem .35rem;
  text-transform: uppercase;
}

.admin-sidebar .material-symbols-rounded {
  font-size: 1.2rem;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  background: rgba(176, 81, 157, .1);
  color: var(--oc-purple);
}

.admin-main {
  min-width: 0;
  padding: 1.5rem;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  padding: 1.25rem;
}

.admin-page-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.admin-page-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.admin-page-header p,
.admin-panel-header p {
  color: var(--oc-muted);
  margin: .25rem 0 0;
}

.admin-header-filters {
  display: flex;
  gap: .75rem;
}

.admin-header-filters label {
  color: var(--oc-muted);
  font-size: .78rem;
  font-weight: 800;
}

.admin-kpi-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.admin-kpi-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-left: 4px solid var(--oc-purple);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  min-height: 118px;
  padding: 1.1rem;
}

.admin-kpi-card.blue { border-left-color: var(--oc-blue); }
.admin-kpi-card.gold { border-left-color: #f0b429; }
.admin-kpi-card.green { border-left-color: #35a876; }

.admin-kpi-card strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1.1;
}

.admin-kpi-card span:first-child,
.admin-kpi-card small {
  color: var(--oc-muted);
}

.admin-kpi-card > .material-symbols-rounded {
  align-items: center;
  background: var(--oc-purple);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.admin-kpi-card.blue > .material-symbols-rounded { background: var(--oc-blue); }
.admin-kpi-card.gold > .material-symbols-rounded { background: #f0b429; }
.admin-kpi-card.green > .material-symbols-rounded { background: #35a876; }

.admin-dashboard-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
}

.admin-panel {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 4px;
  padding: 1.25rem;
}

.admin-panel-large {
  grid-column: span 1;
}

.admin-panel-header {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.admin-panel-header h2 {
  font-size: 1.05rem;
  margin: 0;
}

.admin-revenue-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 180px minmax(0, 1fr);
}

.admin-revenue-summary span,
.admin-revenue-summary small {
  color: var(--oc-muted);
  display: block;
}

.admin-revenue-summary strong {
  display: block;
  font-size: 2rem;
  margin: .5rem 0;
}

.admin-bar-chart {
  align-items: end;
  border-bottom: 1px solid var(--oc-line);
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  min-height: 240px;
}

.admin-bar-chart span {
  align-items: end;
  background: var(--oc-purple);
  border-radius: 5px 5px 0 0;
  display: flex;
  height: var(--bar-height);
  justify-content: center;
  min-height: 32px;
  position: relative;
}

.admin-bar-chart small {
  bottom: -1.6rem;
  color: var(--oc-muted);
  font-size: .72rem;
  position: absolute;
}

.admin-donut {
  aspect-ratio: 1;
  background: conic-gradient(var(--oc-purple) 0 42%, #35a876 42% 68%, #f0b429 68% 84%, var(--oc-blue) 84% 100%);
  border-radius: 999px;
  margin: 1rem auto;
  max-width: 230px;
}

.admin-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.admin-legend span {
  align-items: center;
  color: var(--oc-muted);
  display: inline-flex;
  font-size: .82rem;
  gap: .35rem;
}

.admin-legend i {
  border-radius: 999px;
  display: inline-block;
  height: .65rem;
  width: .65rem;
}

.admin-legend .purple { background: var(--oc-purple); }
.admin-legend .blue { background: var(--oc-blue); }
.admin-legend .gold { background: #f0b429; }
.admin-legend .green { background: #35a876; }

.admin-section-matrix {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-section-matrix article {
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  padding: 1rem;
}

.admin-section-matrix header {
  display: grid;
  gap: .15rem;
  margin-bottom: .75rem;
}

.admin-section-matrix small {
  color: var(--oc-muted);
}

.admin-section-matrix article > div {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.admin-section-matrix a,
.admin-empty-chip {
  background: #eaf3fb;
  border: 1px solid rgba(16, 118, 187, .16);
  border-radius: 999px;
  color: var(--oc-blue);
  display: inline-flex;
  flex-direction: column;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.2;
  padding: .5rem .75rem;
}

.admin-section-matrix a.disabled {
  background: #f2f4f6;
  color: #8a95a3;
}

.admin-section-matrix a:hover {
  background: var(--oc-blue);
  color: #fff;
}

.admin-activity-list {
  display: grid;
  gap: .75rem;
}

.admin-activity-list a {
  align-items: center;
  border: 1px solid var(--oc-line);
  border-radius: 8px;
  color: var(--oc-ink);
  display: flex;
  gap: .75rem;
  padding: .75rem;
}

.admin-activity-list .material-symbols-rounded {
  color: var(--oc-purple);
}

.admin-activity-list small {
  color: var(--oc-muted);
  display: block;
}

.admin-section-nav {
  max-height: calc(100vh - 140px);
  overflow: auto;
}

.admin-section-nav-group {
  border-bottom: 1px solid var(--oc-line);
  display: grid;
  gap: .4rem;
  padding: 1rem 0;
}

.admin-section-nav-group:first-child {
  padding-top: 0;
}

.admin-section-nav-group > small,
.admin-section-nav a small,
.admin-edit-heading p {
  color: var(--oc-muted);
}

.admin-section-nav a {
  border-radius: 6px;
  color: var(--oc-ink);
  display: grid;
  padding: .55rem .7rem;
}

.admin-section-nav a.active,
.admin-section-nav a:hover {
  background: rgba(176, 81, 157, .1);
  color: var(--oc-purple);
}

.admin-edit-heading {
  align-items: flex-start;
  border-bottom: 1px solid var(--oc-line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.admin-edit-heading h2 {
  font-size: 1.3rem;
  margin: .35rem 0;
}

.admin-status {
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  padding: .45rem .65rem;
}

.admin-status.enabled {
  background: rgba(53, 168, 118, .12);
  color: #247853;
}

.admin-status.disabled {
  background: #f2f4f6;
  color: #7b8794;
}

.table {
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .admin-brand-card,
  .admin-nav-label {
    grid-column: 1 / -1;
  }

  .admin-kpi-grid,
  .admin-dashboard-grid,
  .admin-section-matrix,
  .admin-revenue-layout {
    grid-template-columns: 1fr;
  }

  .admin-page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-phones {
    justify-content: center;
  }

  .topbar-phone + .topbar-phone::before {
    display: none;
  }

  .program-slide,
  .accreditation-slide {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

  .blog-slide,
  .team-slide {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-recommendations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-profile-layout {
    grid-template-columns: 1fr;
  }

  /* One card per view on tablet and mobile. */
  .about-slide {
    flex-basis: 100%;
  }

  .blog-index-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .accreditation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .gallery-placeholder-large {
    height: auto;
    min-height: clamp(300px, 48vw, 420px);
  }

  .gallery-stack .gallery-placeholder {
    min-height: clamp(190px, 28vw, 240px);
  }

  .video-layout {
    grid-template-columns: 1fr;
  }

  .hero-section.hero-background {
    min-height: auto;
  }

  .hero-section.hero-background::before {
    justify-content: center;
    opacity: .5;
    padding: 0 1.5rem;
  }

  .hero-section.hero-background::after {
    background: rgba(238, 242, 245, .9);
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cookie-consent {
    max-width: min(720px, calc(100% - 2rem));
  }

  .cookie-consent-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 767.98px) {
  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .blog-active-filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-recommendations-grid {
    grid-template-columns: 1fr;
  }

  .privacy-choice-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-choice-actions .btn:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .admin-topbar-brand span:last-child,
  .admin-topbar-brand strong {
    display: none;
  }

  .admin-main {
    padding: 1rem;
  }

  .admin-sidebar,
  .admin-header-filters {
    grid-template-columns: 1fr;
  }

  .admin-header-filters {
    display: grid;
    width: 100%;
  }

  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .admin-bar-chart {
    gap: .35rem;
    min-height: 180px;
  }

  .program-carousel-track,
  .blog-carousel-track,
  .team-carousel-track,
  .accreditation-carousel-track {
    gap: 0;
  }

  .program-slide,
  .blog-slide,
  .team-slide,
  .accreditation-slide {
    flex-basis: 100%;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .about-profile-content {
    grid-template-columns: 1fr;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .accreditation-grid {
    grid-template-columns: 1fr;
  }

  .accreditation-card {
    min-height: 0;
  }

  .gallery-tabs {
    justify-content: flex-start;
  }

  .gallery-stack {
    grid-template-columns: 1fr;
  }

  .gallery-placeholder,
  .gallery-placeholder-large,
  .gallery-stack .gallery-placeholder {
    height: auto;
    min-height: 240px;
  }

  .video-screen {
    align-items: center;
    aspect-ratio: auto;
    flex-direction: column;
    min-height: 260px;
    text-align: center;
  }

  .video-controls {
    grid-template-columns: auto 1fr auto auto;
  }

  .video-timeline {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .video-time[data-video-current],
  .video-time[data-video-total] {
    justify-self: center;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .powered-by {
    align-items: baseline;
    gap: .3rem;
  }

  .cookie-consent {
    bottom: .75rem;
    max-height: calc(100vh - 1.5rem);
    padding: 1rem;
  }

  .cookie-option {
    align-items: flex-start;
  }

  .cookie-consent-actions {
    justify-content: stretch;
    width: 100%;
  }

  .cookie-consent-actions .btn {
    flex: 1 1 calc(50% - .3rem);
  }

  .privacy-choice-modal {
    padding: 1rem;
  }

  .privacy-choice-card {
    grid-template-columns: 1fr;
  }

  .privacy-switch {
    justify-self: start;
  }

  .privacy-choice-actions {
    grid-template-columns: 1fr;
  }

  .privacy-choice-footer {
    margin: 1rem -1rem -1rem;
    padding: .75rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-carousel-track,
  .blog-carousel-track,
  .team-carousel-track,
  .team-card-inner {
    transition: none;
  }
}

/* Shared CMS-style finish for the public website. */
body {
  background: #f4f7fb;
}

.site-header,
.navbar {
  background: #fff;
}

.navbar {
  min-height: 72px;
}

.nav-link {
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: .6rem .78rem !important;
}

.nav-link.active,
.nav-link:hover {
  background: transparent;
  color: var(--oc-blue);
}

.nav-link.active {
  border-bottom-color: var(--oc-blue);
}

.btn,
.form-control,
.form-select,
.input-group,
.modal-content {
  border-radius: 8px;
}

.btn {
  box-shadow: none !important;
}

.section-band {
  background: #fff;
  padding: clamp(3rem, 5.4vw, 5rem) 0;
}

.section-band.soft {
  background: #f4f7fb;
}

.section-band.white {
  background: #fff;
}

.section-band.transparent {
  background: transparent;
}

.gallery-section,
.cta-band {
  background: var(--oc-blue) !important;
}

.hero-panel,
.content-card,
.step-item,
.contact-form,
.program-card,
.blog-index-card,
.blog-detail-card,
.blog-sidebar-panel,
.accreditation-card,
.about-profile-card,
.team-card,
.custom-video-player,
.legal-content,
.cookie-consent,
.privacy-choice-dialog {
  border-radius: 8px;
  box-shadow: none !important;
}

.program-card,
.blog-index-card,
.content-card,
.step-item,
.about-profile-card,
.accreditation-card {
  background: #fff;
}

.program-card:hover,
.blog-index-card:hover,
.content-card:hover {
  box-shadow: 0 10px 24px rgba(16, 118, 187, .06) !important;
  transform: translateY(-1px);
}

.eyebrow,
.section-heading .eyebrow,
.video-screen-copy span {
  color: var(--oc-purple);
  font-weight: 800;
  letter-spacing: .08em;
}

.section-heading h2,
.video-layout h2,
.hero-section h1,
.page-hero h1 {
  color: var(--oc-ink);
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p,
.content-card p,
.step-item p,
.about-profile-card p,
.blog-sidebar-panel p {
  color: var(--oc-muted);
}

.site-footer {
  background: #101821;
}

@media (max-width: 767.98px) {
  .navbar {
    min-height: 64px;
  }

  .nav-link {
    padding: .72rem .9rem !important;
  }

  .section-band {
    padding: 2.75rem 0;
  }

  .footer-cta,
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-subscribe {
    flex: 1 1 auto;
    width: 100%;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    justify-content: center;
    text-align: center;
  }
}

/* Modern public UI refresh. */
:root {
  --oc-radius: 8px;
  --oc-shadow-sm: 0 8px 22px rgba(24, 44, 68, .06);
  --oc-shadow-md: 0 18px 42px rgba(24, 44, 68, .10);
  --oc-shadow-focus: 0 0 0 .22rem rgba(176, 81, 157, .22);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f7fb;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(176, 81, 157, .18);
  color: var(--oc-ink);
}

.topbar {
  box-shadow: inset 0 -1px rgba(255, 255, 255, .12);
  font-weight: 700;
}

.site-header {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(24, 44, 68, .06);
}

.navbar {
  background: transparent !important;
}

.navbar-brand img {
  transition: transform .18s ease;
}

.navbar-brand:hover img {
  transform: translateY(-1px);
}

.nav-link {
  border: 0;
  border-radius: 0;
  position: relative;
  transition: color .18s ease;
}

.navbar .nav-link::before {
  background: var(--oc-blue);
  border-radius: 999px;
  bottom: .28rem;
  content: "";
  height: 2px;
  left: .78rem;
  position: absolute;
  right: .78rem;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease;
}

.nav-link.active,
.nav-link:hover {
  background: transparent;
  color: var(--oc-blue);
}

.navbar .nav-link.active::before,
.navbar .nav-link:hover::before {
  transform: scaleX(1);
}

.mega-nav {
  position: relative;
}

.mega-menu {
  border: 1px solid var(--oc-line);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(24, 44, 68, .18);
  margin-top: .75rem;
  overflow: hidden;
  padding: 0;
  width: min(760px, calc(100vw - 2rem));
}

.mega-menu-grid {
  background: #fff;
  display: grid;
  grid-template-columns: .92fr 1.4fr;
}

.mega-menu-panel {
  background: linear-gradient(160deg, var(--oc-blue) 0%, #0d5e95 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
}

.mega-menu-panel .eyebrow {
  color: rgba(255, 255, 255, .85);
}

.mega-menu-panel h2 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: .5rem 0 .6rem;
}

.mega-menu-panel p {
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  margin-bottom: 1.1rem;
}

.mega-menu-panel .btn {
  align-self: flex-start;
  background: #fff;
  border-color: #fff;
  color: var(--oc-blue);
  font-weight: 800;
}

.mega-menu-panel .btn:hover {
  background: #eef4fb;
  color: #0d5e95;
}

.mega-menu-trust {
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  gap: .5rem;
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 1.1rem 0 0;
}

.mega-menu-trust li {
  align-items: center;
  color: rgba(255, 255, 255, .92);
  display: flex;
  font-size: .84rem;
  font-weight: 600;
  gap: .5rem;
}

.mega-menu-trust .material-symbols-rounded {
  font-size: 1.1rem;
}

.mega-menu-body {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.mega-menu-heading {
  color: var(--oc-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: .85rem;
  text-transform: uppercase;
}

.mega-menu-links {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu-link {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--oc-ink);
  display: flex;
  gap: .75rem;
  padding: .7rem;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.mega-menu-link:hover {
  background: #f2f8fd;
  border-color: #dbeaf6;
  color: var(--oc-blue);
}

.mega-menu-icon {
  align-items: center;
  background: #e9f5fc;
  border-radius: 10px;
  color: var(--oc-blue);
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  transition: background-color .18s ease, color .18s ease;
  width: 40px;
}

.mega-menu-link:hover .mega-menu-icon {
  background: var(--oc-blue);
  color: #fff;
}

.mega-menu-text {
  flex: 1 1 auto;
  min-width: 0;
}

.mega-menu-text strong {
  display: block;
  font-size: .95rem;
}

.mega-menu-text small {
  color: var(--oc-muted);
  display: block;
  font-size: .8rem;
  line-height: 1.35;
  margin-top: .1rem;
}

.mega-menu-arrow {
  color: #b6c6d4;
  flex: 0 0 auto;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease, color .18s ease;
}

.mega-menu-link:hover .mega-menu-arrow {
  color: var(--oc-blue);
  opacity: 1;
  transform: translateX(0);
}

.mega-menu-foot {
  align-items: center;
  border-top: 1px solid var(--oc-line);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
}

.mega-menu-foot-contact {
  align-items: center;
  color: var(--oc-ink);
  display: flex;
  gap: .6rem;
  text-decoration: none;
}

.mega-menu-foot-contact .material-symbols-rounded {
  align-items: center;
  background: #e9f5fc;
  border-radius: 50%;
  color: var(--oc-blue);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.mega-menu-foot-contact small {
  color: var(--oc-muted);
  display: block;
  font-size: .72rem;
}

.mega-menu-foot-contact strong {
  display: block;
  font-size: .95rem;
}

.mega-menu-foot .btn {
  min-height: 40px;
  padding: .45rem 1.1rem;
}

.btn {
  align-items: center;
  border-radius: var(--oc-radius);
  display: inline-flex;
  gap: .45rem;
  justify-content: center;
  min-height: 44px;
  padding: .68rem 1rem;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  box-shadow: 0 10px 22px rgba(16, 118, 187, .18) !important;
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(16, 118, 187, .24) !important;
}

.btn-outline-primary {
  background: #fff;
}

.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.accordion-button:focus-visible,
.privacy-toggle button:focus-visible {
  box-shadow: var(--oc-shadow-focus) !important;
}

.form-control,
.form-select {
  background-color: #fff;
  border: 1px solid #d8e5ee;
  min-height: 46px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--oc-purple);
}

.admissions-form-layout {
  align-items: stretch;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.admissions-form-intro {
  align-self: center;
}

.admissions-form-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: .45rem 0 1rem;
}

.admissions-form-intro p {
  color: var(--oc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.1rem;
}

.admissions-form-note {
  align-items: center;
  background: #e9f5fc;
  border: 1px solid #cfe5f4;
  border-radius: var(--oc-radius);
  color: var(--oc-ink);
  display: inline-flex;
  gap: .65rem;
  padding: .75rem .9rem;
}

.admissions-form-note .material-symbols-rounded {
  color: var(--oc-blue);
}

.admissions-form-card {
  background: #fff;
  padding: clamp(1.15rem, 3vw, 2rem);
}

.admissions-form textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

.recaptcha-wrap {
  align-items: center;
  background: #f8fbfd;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  display: flex;
  min-height: 94px;
  overflow-x: auto;
  padding: .85rem;
}

.recaptcha-local-note {
  background: #e9f5fc;
  border: 1px solid #cfe5f4;
  border-radius: var(--oc-radius);
  color: var(--oc-muted);
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1rem;
}

.section-band {
  border-top: 1px solid rgba(220, 231, 239, .72);
}

.section-band:first-child {
  border-top: 0;
}

.section-heading {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading h2 {
  letter-spacing: 0;
}

.section-heading p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.eyebrow,
.section-heading .eyebrow {
  display: inline-flex;
  margin-bottom: .2rem;
}

.hero-section.hero-background {
  border-bottom: 1px solid rgba(220, 231, 239, .84);
}

.hero-copy .lead {
  color: #596b7f;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  max-width: 720px;
}

.content-card,
.step-item,
.contact-form,
.admissions-form-card,
.program-card,
.blog-index-card,
.blog-detail-card,
.blog-sidebar-panel,
.accreditation-card,
.about-profile-card,
.team-card,
.custom-video-player,
.legal-content,
.blog-active-filter-bar,
.privacy-choice-modal {
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm) !important;
}

.content-card,
.step-item,
.contact-form,
.admissions-form-card,
.program-card,
.blog-index-card,
.blog-detail-card,
.blog-sidebar-panel,
.accreditation-card,
.about-profile-card,
.legal-content {
  background: rgba(255, 255, 255, .98);
}

.content-card,
.program-card,
.blog-index-card,
.step-item,
.accreditation-card,
.about-profile-card {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.content-card:hover,
.program-card:hover,
.blog-index-card:hover,
.step-item:hover,
.accreditation-card:hover,
.about-profile-card:hover {
  box-shadow: var(--oc-shadow-md) !important;
  transform: translateY(-3px);
}

.card-placeholder,
.placeholder-image {
  background-color: #e9f4fb;
  border-color: #c7e0f2;
}

.card-placeholder.has-image {
  background: var(--card-image) center / cover no-repeat;
  border-style: solid;
}

.card-placeholder.has-image::before {
  display: none;
}

.card-placeholder span,
.placeholder-image span {
  background: #fff;
  border: 1px solid #cfe3f2;
  display:inline-flex;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(24, 44, 68, .06);
  color: var(--oc-ink);
}

.gallery-placeholder.has-image {
  background: #dceaf4;
}

/* Zoomable image layer — transform scales smoother than background-size.
   Explicit full size overrides the decorative 6px .placeholder-image::before bar. */
.gallery-placeholder.has-image::before {
  background: var(--gallery-image) center / cover no-repeat;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  width: 100%;
  z-index: 0;
}

/* Gradient scrim keeps the centred caption legible over any image. */
.gallery-placeholder.has-image::after {
  background: linear-gradient(to top, rgba(9, 16, 25, .58) 0%, rgba(9, 16, 25, .05) 45%, rgba(9, 16, 25, .3) 100%);
  content: "";
  inset: 0;
  opacity: .9;
  position: absolute;
  transition: opacity .4s ease;
  z-index: 1;
}

.gallery-placeholder.has-image:hover::before,
.gallery-placeholder.has-image:focus-visible::before {
  transform: scale(1.07);
}

.gallery-placeholder.has-image:hover::after,
.gallery-placeholder.has-image:focus-visible::after {
  opacity: 1;
}

.gallery-placeholder.has-image:hover .gallery-zoom-cue,
.gallery-placeholder.has-image:focus-visible .gallery-zoom-cue {
  background: var(--oc-blue) !important;
  color: #fff !important;
  opacity: 1;
  transform: translateY(0) scale(1.12) rotate(90deg);
}

.gallery-placeholder.has-image:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .55);
  outline-offset: 3px;
}

.gallery-lightbox .modal-content {
  background: #0f1722;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
  overflow: hidden;
  position: relative;
}

.gallery-lightbox img {
  background: #0f1722;
  display: block;
  max-height: 82vh;
  object-fit: contain;
  width: 100%;
}

.gallery-lightbox-close {
  align-items: center;
  background: rgba(255, 255, 255, .95);
  border: 0;
  border-radius: 999px;
  color: var(--oc-ink);
  display: inline-flex;
  font-size: 1.8rem;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: .85rem;
  top: .85rem;
  width: 42px;
  z-index: 3;
}

.gallery-lightbox-caption {
  background: rgba(15, 23, 34, .86);
  bottom: 0;
  color: #fff;
  font-weight: 800;
  left: 0;
  padding: .9rem 1.2rem;
  position: absolute;
  right: 0;
}

.content-card .badge,
.blog-index-card .badge {
  border-radius: 999px;
  box-shadow: none;
  font-weight: 800;
  padding: .42rem .72rem;
}

.step-item span {
  box-shadow: 0 10px 20px rgba(16, 118, 187, .18);
}

.faq-accordion {
  display: grid;
  gap: .9rem;
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-focus-box-shadow: none;
}

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)),
.faq-accordion .accordion-item:hover {
  border-color: #bfd8eb;
  box-shadow: var(--oc-shadow-md);
}

.faq-accordion .accordion-button {
  background: #fff;
  color: var(--oc-ink);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 800;
  line-height: 1.35;
  padding: 1.2rem 4.5rem 1.2rem 1.25rem;
  position: relative;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f4f9fd;
  color: var(--oc-blue);
  box-shadow: inset 0 -1px #d8e5ee;
}

.faq-accordion .accordion-button::after {
  align-items: center;
  background: #eaf3fb;
  background-image: none;
  border: 1px solid #cfe3f2;
  border-radius: 999px;
  color: var(--oc-blue);
  content: "expand_more";
  display: inline-flex;
  flex-shrink: 0;
  font-family: "Material Symbols Rounded";
  font-size: 1.35rem;
  height: 34px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: none;
  translate: 0 -50%;
  width: 34px;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background: var(--oc-blue);
  border-color: var(--oc-blue);
  color: #fff;
  content: "expand_less";
}

.faq-accordion .accordion-body {
  color: #526579;
  font-size: 1rem;
  line-height: 1.8;
  padding: 1.15rem 1.25rem 1.35rem;
}

.blog-sidebar-panel,
.blog-sidebar-cta {
  box-shadow: var(--oc-shadow-sm);
}

.program-detail-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.program-detail-main {
  min-width: 0;
}


.program-detail-faq {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.article-faq-block {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.program-detail-faq .section-heading,
.article-faq-block .section-heading {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.program-detail-faq .section-heading {
  margin-bottom: 1.2rem;
}

.program-detail-faq .section-heading h2::after,
.article-faq-block .section-heading h2::after {
  margin-left: 0;
  margin-right: auto;
}

.program-detail-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.program-sidebar-panel,
.program-sidebar-cta {
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
}

.program-sidebar-panel {
  background: #fff;
  border: 1px solid #d8e5ee;
  padding: 1.2rem;
}

.program-sidebar-panel h2,
.program-sidebar-cta h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.program-share-links {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-share-links a {
  align-items: center;
  background: #f4f9fd;
  border: 1px solid #d4e8f5;
  border-radius: var(--oc-radius);
  color: var(--oc-ink);
  display: inline-flex;
  font-size: .9rem;
  font-weight: 800;
  gap: .45rem;
  justify-content: center;
  min-height: 44px;
  padding: .65rem .75rem;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.program-share-links a:hover,
.program-share-links a:focus-visible {
  background: var(--oc-blue);
  border-color: var(--oc-blue);
  color: #fff;
  transform: translateY(-1px);
}

.program-share-links .material-symbols-rounded {
  font-size: 1.15rem;
}

.program-sidebar-links {
  display: grid;
  gap: .6rem;
}

.program-sidebar-links a {
  background: #fff;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  color: var(--oc-ink);
  display: grid;
  gap: .2rem;
  padding: .85rem .9rem;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.program-sidebar-links a:hover,
.program-sidebar-links a:focus-visible {
  border-color: #bfd8eb;
  color: var(--oc-blue);
  transform: translateY(-1px);
}

.program-sidebar-links a.active {
  background: #eaf4fb;
  border-color: var(--oc-blue);
  color: var(--oc-blue);
}

.program-sidebar-links span {
  font-weight: 800;
  line-height: 1.25;
}

.program-sidebar-all {
  border-top: 1px solid #d8e5ee;
  color: var(--oc-blue);
  display: inline-flex;
  font-weight: 800;
  justify-content: space-between;
  margin-top: .9rem;
  padding-top: .9rem;
  width: 100%;
}

.program-sidebar-all:hover,
.program-sidebar-all:focus-visible {
  color: var(--oc-purple);
}

.program-sidebar-cta {
  background: var(--oc-purple);
  color: #fff;
  padding: 1.35rem;
}

.program-sidebar-cta .eyebrow {
  color: #fff;
  opacity: .82;
}

.program-sidebar-cta p {
  color: rgba(255, 255, 255, .86);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.program-sidebar-cta .btn {
  color: var(--oc-purple);
}

.help-center-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
}

.help-center-main {
  min-width: 0;
}

.help-center-main .section-heading h2::after {
  margin-left: 0;
}

.help-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.help-sidebar-panel,
.help-sidebar-cta {
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
}

.help-sidebar-panel {
  background: #fff;
  border: 1px solid #d8e5ee;
  padding: 1.2rem;
}

.help-sidebar-panel h2,
.help-sidebar-cta h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.help-category-list {
  display: grid;
  gap: .65rem;
}

.help-category-list a {
  align-items: center;
  background: #fff;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  color: var(--oc-ink);
  display: flex;
  font-weight: 800;
  gap: .75rem;
  justify-content: space-between;
  padding: .85rem .9rem;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.help-category-list a:hover,
.help-category-list a:focus-visible {
  background: #eaf4fb;
  border-color: var(--oc-blue);
  color: var(--oc-blue);
  transform: translateY(-1px);
}

.help-category-list small {
  align-items: center;
  background: rgba(176, 81, 157, .1);
  border-radius: 999px;
  color: var(--oc-purple);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .76rem;
  height: 1.55rem;
  justify-content: center;
  min-width: 1.55rem;
  padding: 0 .45rem;
}

.help-sidebar-cta {
  background: var(--oc-purple);
  color: #fff;
  padding: 1.35rem;
}

.help-sidebar-cta .eyebrow {
  color: #fff;
  opacity: .82;
}

.help-sidebar-cta p {
  color: rgba(255, 255, 255, .86);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.help-sidebar-cta .btn {
  color: var(--oc-purple);
}

.help-faq-category {
  color: var(--oc-purple);
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: .25rem;
  text-transform: uppercase;
}

.careers-main {
  min-width: 0;
}

.careers-board-head {
  align-items: flex-end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.careers-board-head h2 {
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: .35rem 0 .65rem;
  max-width: 780px;
}

.careers-board-head h2::after {
  background: var(--oc-blue);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-left: 0;
  margin-top: .8rem;
  width: 86px;
}

.careers-board-head p {
  color: var(--oc-muted);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

.career-filter-bar {
  background: #fff;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
  display: grid;
  gap: .75rem;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 250px) auto;
  margin-bottom: 1.25rem;
  padding: .85rem;
}

.career-search {
  align-items: center;
  background: #f8fbfd;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  color: var(--oc-muted);
  display: flex;
  gap: .6rem;
  min-height: 50px;
  padding: 0 .85rem;
}

.career-search input,
.career-area-filter {
  background: transparent;
  border: 0;
  color: var(--oc-ink);
  font-weight: 700;
  outline: 0;
  width: 100%;
}

.career-search input::placeholder {
  color: #7b8da5;
  font-weight: 700;
}

.career-area-filter {
  appearance: auto;
  background-color: #f8fbfd;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  min-height: 50px;
  padding: 0 .85rem;
}

.career-card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-card {
  background: #fff;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.35rem;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.career-card:hover {
  border-color: #bfd8eb;
  box-shadow: var(--oc-shadow-md);
  transform: translateY(-3px);
}

.career-card-top {
  align-items: flex-start;
  display: flex;
  gap: .75rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.career-card-top span,
.career-card-top small {
  background: rgba(176, 81, 157, .1);
  border: 1px solid rgba(176, 81, 157, .22);
  border-radius: 999px;
  color: var(--oc-purple);
  display: inline-flex;
  font-size: .76rem;
  font-weight: 800;
  padding: .4rem .7rem;
  white-space: nowrap;
}

.career-card-top small {
  background: #eef7fd;
  border-color: #cfe5f6;
  color: var(--oc-blue);
}

.career-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: .8rem;
}

.career-card p {
  color: var(--oc-muted);
  flex: 1;
  line-height: 1.7;
  margin-bottom: 0;
}

.career-apply-link {
  align-items: center;
  border-top: 1px solid #d8e5ee;
  color: var(--oc-blue);
  display: inline-flex;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  text-decoration: none;
}

.career-apply-link:hover {
  color: var(--oc-purple);
}

.career-card-title-link {
  color: inherit;
  text-decoration: none;
}

.career-card-title-link:hover {
  color: var(--oc-blue);
}

/* ---- Career detail page ------------------------------------------------ */
.career-detail-hero .lead {
  max-width: 720px;
}

.career-back-link {
  align-items: center;
  color: var(--oc-blue);
  display: inline-flex;
  font-weight: 800;
  gap: .35rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.career-back-link:hover {
  color: var(--oc-purple);
}

.career-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
}

.career-chip {
  align-items: center;
  background: rgba(16, 118, 187, .08);
  border: 1px solid rgba(16, 118, 187, .16);
  border-radius: 999px;
  color: var(--oc-ink);
  display: inline-flex;
  font-size: .86rem;
  font-weight: 700;
  gap: .4rem;
  padding: .4rem .85rem;
}

.career-chip .material-symbols-rounded {
  color: var(--oc-blue);
  font-size: 1.15rem;
}

.career-detail-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
}

.career-detail-main .section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.career-apply-panel {
  background: #fff;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: sticky;
  top: 1.5rem;
}

.career-apply-panel h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 .35rem;
}

.career-apply-lead {
  color: var(--oc-muted);
  margin-bottom: 1.25rem;
}

.career-apply-form {
  display: grid;
  gap: 1rem;
}

.career-field {
  display: grid;
  gap: .4rem;
}

.career-field label {
  color: var(--oc-ink);
  font-size: .88rem;
  font-weight: 800;
}

.career-field-hint {
  color: var(--oc-muted);
  font-weight: 600;
}

.career-field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.career-honeypot {
  left: -9999px;
  position: absolute;
}

.career-apply-note {
  align-items: center;
  color: var(--oc-muted);
  display: flex;
  font-size: .82rem;
  gap: .4rem;
  margin: 0;
}

.career-apply-note .material-symbols-rounded {
  color: var(--oc-blue);
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .career-detail-layout {
    grid-template-columns: 1fr;
  }

  .career-apply-panel {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .career-field-row {
    grid-template-columns: 1fr;
  }
}

.career-empty-state {
  background: #fff;
  border: 1px solid #d8e5ee;
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
}

.career-empty-state .material-symbols-rounded {
  background: #eef7fd;
  border-radius: 999px;
  color: var(--oc-blue);
  font-size: 2rem;
  margin-bottom: .75rem;
  padding: .75rem;
}

.career-empty-state h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.career-empty-state p {
  color: var(--oc-muted);
  margin: 0;
}

.pagination-link {
  border-radius: var(--oc-radius);
  box-shadow: 0 8px 18px rgba(24, 44, 68, .05);
}

.program-carousel .carousel-control-prev,
.program-carousel .carousel-control-next,
.blog-carousel .carousel-control-prev,
.blog-carousel .carousel-control-next,
.team-carousel .carousel-control-prev,
.team-carousel .carousel-control-next,
.accreditation-carousel .carousel-control-prev,
.accreditation-carousel .carousel-control-next {
  box-shadow: 0 12px 24px rgba(16, 118, 187, .18);
}

.site-footer {
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid var(--oc-line);
    margin-top: .8rem;
    padding-top: .8rem;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: .25rem;
  }

  .nav-item.ms-lg-2 .btn {
    margin-top: .35rem;
    width: 100%;
  }

  .mega-nav {
    position: static;
  }

  .mega-menu {
    box-shadow: none;
    margin: .45rem 0 0;
    width: 100%;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .mega-menu-panel {
    border-right: 0;
    border-bottom: 1px solid var(--oc-line);
  }

  .mega-menu-links {
    grid-template-columns: 1fr;
  }

  .mega-menu-link {
    min-height: auto;
  }

  .admissions-form-layout {
    grid-template-columns: 1fr;
  }

  .admissions-form-intro {
    text-align: center;
  }

  .program-detail-layout {
    grid-template-columns: 1fr;
  }

  .program-detail-sidebar,
  .help-sidebar {
    position: static;
  }

  .help-center-layout {
    grid-template-columns: 1fr;
  }

  .careers-board-head,
  .career-filter-bar {
    grid-template-columns: 1fr;
  }

  .careers-board-head {
    align-items: stretch;
    flex-direction: column;
  }

  .career-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .career-filter-bar {
    padding: .7rem;
  }

  .career-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-section.hero-background {
    min-height: auto;
  }

  .hero-section.hero-background::after {
    background: rgba(244, 247, 251, .9);
  }

  .hero-actions {
    display: grid;
    gap: .75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .faq-accordion .accordion-button {
    padding: 1rem 4rem 1rem 1rem;
  }

  .faq-accordion .accordion-body {
    padding: 1rem;
  }

  .program-detail-main .rich-copy,
  .program-sidebar-panel,
  .program-sidebar-cta,
  .help-sidebar-panel,
  .help-sidebar-cta,
  .careers-sidebar-panel,
  .careers-sidebar-cta,
  .career-card {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .program-share-links {
    grid-template-columns: 1fr;
  }
}

/* ==== App-like bottom navigation (mobile + tablet) ===================== */
.app-bottom-nav {
  display: none;
}

@media (max-width: 991.98px) {
  .app-bottom-nav {
    align-items: stretch;
    background: #fff;
    border-top: 1px solid var(--oc-line);
    bottom: 0;
    box-shadow: 0 -6px 24px rgba(16, 24, 33, .1);
    display: flex;
    justify-content: space-around;
    left: 0;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    position: fixed;
    right: 0;
    z-index: 1035;
  }

  .app-bottom-link {
    align-items: center;
    color: var(--oc-muted);
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: .68rem;
    font-weight: 700;
    gap: 2px;
    justify-content: center;
    min-width: 0;
    padding: 6px 2px;
    text-align: center;
    text-decoration: none;
    transition: color .18s ease;
  }

  .app-bottom-link .material-symbols-rounded {
    font-size: 1.5rem;
  }

  .app-bottom-link.is-active {
    color: var(--oc-blue);
  }

  .app-bottom-link:active {
    color: var(--oc-blue);
  }

  .app-bottom-cta {
    color: #fff;
    position: relative;
  }

  .app-bottom-cta .material-symbols-rounded {
    align-items: center;
    background: linear-gradient(135deg, var(--oc-blue), var(--oc-purple));
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(16, 118, 187, .4);
    color: #fff;
    display: flex;
    height: 46px;
    justify-content: center;
    margin-top: -22px;
    width: 46px;
  }

  .app-bottom-cta {
    color: var(--oc-blue);
  }

  /* Keep page content clear of the fixed bar and lift the support widget. */
  body {
    padding-bottom: 68px;
  }

  .support-launcher {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* Standalone (installed PWA) — hide the "Install" banner if it ever shows. */
@media (display-mode: standalone) {
  .pwa-install-banner { display: none !important; }
}

/* ==== PWA install banner ============================================== */
.pwa-install-banner {
  align-items: center;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 16px;
  bottom: 16px;
  box-shadow: 0 18px 44px rgba(16, 24, 33, .18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  left: 16px;
  padding: 14px 16px;
  position: fixed;
  right: 16px;
  z-index: 1050;
  max-width: 460px;
  margin: 0 auto;
}

.pwa-install-info {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.pwa-install-icon {
  align-items: center;
  background: var(--oc-soft);
  border-radius: 12px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.pwa-install-copy { display: flex; flex-direction: column; line-height: 1.3; }
.pwa-install-copy strong { color: var(--oc-ink); font-size: .95rem; }
.pwa-install-copy small { color: var(--oc-muted); font-size: .8rem; }

.pwa-install-actions { align-items: center; display: flex; gap: 8px; }
.pwa-install-actions .btn { border-radius: 999px; font-weight: 700; padding: .5rem 1.1rem; }

@media (max-width: 991.98px) {
  .pwa-install-banner { bottom: 84px; }
}
