:root {
  --ocg-blue-50: #eff6ff;
  --ocg-blue-100: #dbeafe;
  --ocg-blue-200: #bfdbfe;
  --ocg-blue-300: #93c5fd;
  --ocg-blue-400: #60a5fa;
  --ocg-blue-500: #3b82f6;
  --ocg-blue-600: #2563eb;
  --ocg-blue-700: #1d4ed8;
  --ocg-blue-800: #1e40af;
  --ocg-blue-900: #1e3a8a;
  --ocg-blue-950: #172554;
  --ocg-accent: var(--ocg-blue-700);
  --ocg-accent-strong: var(--ocg-blue-800);
  --ocg-accent-soft: var(--ocg-blue-50);
  --ocg-accent-soft-border: var(--ocg-blue-200);
  --ocg-accent-focus: var(--ocg-blue-700);
  --ocg-accent-ink: var(--ocg-blue-950);
  --ocg-accent-contrast: #ffffff;
  --ocg-surface: #ffffff;
  --ocg-surface-muted: #f8fafc;
  --ocg-text: #0f172a;
  --ocg-text-muted: #334155;
  --ocg-border: #cbd5e1;
  --ocg-link: var(--ocg-accent);
  --ocg-success: #166534;
  --ocg-success-bg: #dcfce7;
  --ocg-error: #991b1b;
  --ocg-error-bg: #fee2e2;
  --ocg-container-max: 1440px;
  --ocg-radius: 12px;
  --ocg-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  --ocg-space-1: 0.375rem;
  --ocg-space-2: 0.625rem;
  --ocg-space-3: 1rem;
  --ocg-space-4: 1.5rem;
  --ocg-space-5: 2rem;
  --ocg-space-6: 3rem;
  --ocg-entry-header-soft-bg: #f6f9ff;
  --ocg-entry-header-soft-border: #d9e4f3;
  --ocg-entry-header-soft-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  --ocg-entry-header-soft-pad-y: clamp(0.85rem, 1.2vw, 1.15rem);
  --ocg-entry-header-soft-pad-x: clamp(0.95rem, 1.8vw, 1.4rem);
  --ocg-entry-title-single-size: clamp(1.45rem, 1.15rem + 1vw, 1.95rem);
  --ocg-entry-title-single-size-mobile: clamp(1.25rem, 1.05rem + 1vw, 1.45rem);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ocg-text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #eef4ff 100%);
  font-family: "Noto Sans", "Noto Sans Greek", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ocg-link);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--ocg-accent-strong);
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-main {
  min-height: 52vh;
}

.ocg-container {
  width: min(var(--ocg-container-max), calc(100% - 2rem));
  margin-inline: auto;
}

.ocg-content-wrap {
  padding-block: var(--ocg-space-5);
}

.ocg-content-wrap--fullwidth {
  width: min(100%, calc(100% - 2rem));
}

.ocg-layout {
  display: grid;
  gap: var(--ocg-space-5);
}

.ocg-layout--sidebar-right {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: start;
}

.ocg-layout__content {
  min-width: 0;
}

@media (max-width: 991px) {
  .ocg-layout--sidebar-right {
    grid-template-columns: 1fr;
  }
}

.ocg-entry,
.ocg-post-card,
.ocg-empty-state,
.ocg-sidebar .widget,
.ocg-consent__content,
.ocg-consent-modal__panel {
  border: 1px solid var(--ocg-border);
  border-radius: var(--ocg-radius);
  background: var(--ocg-surface);
  box-shadow: var(--ocg-shadow);
}

.ocg-entry {
  padding: clamp(1rem, 2vw, 2rem);
}

.ocg-entry__title {
  margin: 0;
  color: var(--ocg-blue-950);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ocg-entry__meta {
  margin-bottom: 0.75rem;
  color: var(--ocg-text-muted);
  font-size: 0.9375rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.ocg-entry__featured {
  margin: 1.25rem 0;
  border-radius: calc(var(--ocg-radius) - 2px);
  overflow: hidden;
}

.ocg-entry__content > *:first-child {
  margin-top: 0;
}

.ocg-entry__content > *:last-child {
  margin-bottom: 0;
}

.ocg-entry__content ul,
.ocg-entry__content ol {
  padding-inline-start: 1.25rem;
}

.ocg-entry__content blockquote {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-inline-start: 4px solid var(--ocg-blue-500);
  background: var(--ocg-blue-50);
}

.ocg-entry-heading-card {
  padding: var(--ocg-entry-header-soft-pad-y) var(--ocg-entry-header-soft-pad-x);
  border: 1px solid var(--ocg-entry-header-soft-border);
  border-radius: calc(var(--ocg-radius) - 2px);
  background: var(--ocg-entry-header-soft-bg);
  box-shadow: var(--ocg-entry-header-soft-shadow);
}

.ocg-entry-heading-card .ocg-entry__meta {
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  gap: 0.35rem;
  line-height: 1.35;
}

.ocg-entry-heading-card .ocg-entry__title {
  font-size: var(--ocg-entry-title-single-size);
  line-height: 1.15;
  text-wrap: pretty;
}

.ocg-entry-heading-card + .ocg-entry__featured,
.ocg-entry-heading-card + .ocg-entry__content {
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .ocg-entry-heading-card {
    padding: 0.8rem 0.9rem;
  }

  .ocg-entry-heading-card .ocg-entry__meta {
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .ocg-entry-heading-card .ocg-entry__title {
    font-size: var(--ocg-entry-title-single-size-mobile);
    line-height: 1.2;
  }
}

.ocg-page-header {
  margin-bottom: 1.5rem;
}

.ocg-page-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--ocg-blue-950);
}

.ocg-page-header p {
  margin: 0.65rem 0 0;
  color: var(--ocg-text-muted);
}

.ocg-breadcrumb {
  margin-bottom: 1rem;
}

.ocg-breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  color: var(--ocg-text-muted);
  font-size: 0.875rem;
}

.ocg-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ocg-breadcrumb__item a {
  color: var(--ocg-text-muted);
}

.ocg-breadcrumb__item a:hover,
.ocg-breadcrumb__item a:focus-visible {
  color: var(--ocg-accent-strong);
}

.ocg-breadcrumb__separator {
  color: #64748b;
  font-weight: 600;
}

.ocg-breadcrumb__current {
  color: var(--ocg-blue-950);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.16em;
}

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

@media (max-width: 1024px) {
  .ocg-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.ocg-post-card {
  position: relative;
  overflow: clip;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ocg-post-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocg-accent) 0%, var(--ocg-accent-strong) 100%);
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 1;
}

.ocg-post-card:hover,
.ocg-post-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--ocg-accent);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.ocg-post-card:focus-within {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2), 0 0 0 3px rgba(29, 78, 216, 0.32);
}

.ocg-post-card:hover::before,
.ocg-post-card:focus-within::before {
  opacity: 1;
}

.ocg-post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ocg-post-card__body {
  padding: 1rem 1rem 1.2rem;
  position: relative;
  z-index: 1;
}

.ocg-post-card__meta {
  margin: 0;
  color: var(--ocg-text-muted);
  font-size: 0.85rem;
}

.ocg-post-card__title {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ocg-blue-950);
}

.ocg-post-card__title-link {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ocg-post-card__title-link:hover,
.ocg-post-card__title-link:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.ocg-post-card__excerpt {
  margin: 0;
  color: var(--ocg-text-muted);
  font-size: 0.95rem;
}

.ocg-related-posts {
  margin-top: 2.5rem;
}

.ocg-related-posts h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  color: var(--ocg-blue-950);
}

.button,
button,
input[type="submit"],
input[type="button"] {
  appearance: none;
  border: 1px solid var(--ocg-accent);
  border-radius: calc(var(--ocg-radius) * 0.75);
  background: var(--ocg-accent);
  color: var(--ocg-accent-contrast);
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: var(--ocg-accent-strong);
  border-color: var(--ocg-accent-strong);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: translateY(1px);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.2);
}

.ocg-header-cta,
[data-ocg-header-cta] {
  border-radius: 999px;
  padding-inline: 1.15rem;
  min-height: 2.5rem;
}

.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ocg-accent-focus);
  outline-offset: 3px;
}

.site-footer {
  position: relative;
  margin-top: var(--ocg-space-6);
  border-top: 1px solid rgba(30, 58, 138, 0.16);
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.34) 0%, #f8fafc 52%, #f1f5f9 100%);
  overflow: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto -16% -42% auto;
  width: min(38rem, 78vw);
  height: min(38rem, 78vw);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 72%);
  pointer-events: none;
}

.ocg-footer-shell {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(1.1rem, 2vw, 1.8rem);
}

.ocg-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(1.1rem, 3.2vw, 2.4rem);
  align-items: start;
}

.ocg-footer-top.is-no-newsletter {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
}

.ocg-footer-top.is-no-links {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.ocg-footer-top.is-no-links.is-no-newsletter {
  grid-template-columns: 1fr;
}

.ocg-footer-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ocg-blue-950);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.ocg-footer-brand__link:hover,
.ocg-footer-brand__link:focus-visible {
  color: var(--ocg-accent-strong);
  text-decoration: none;
}

.ocg-footer-brand__logo {
  width: auto;
  max-height: 2.6rem;
  border-radius: calc(var(--ocg-radius) * 0.55);
}

.ocg-footer-brand__mark {
  display: grid;
  place-items: center;
  min-width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--ocg-accent) 0%, var(--ocg-accent-strong) 100%);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
}

.ocg-footer-brand__name {
  font-size: clamp(1.03rem, 1rem + 0.2vw, 1.2rem);
  line-height: 1.2;
}

.ocg-footer-brand__description {
  margin: 1rem 0 0;
  max-width: 38ch;
  color: var(--ocg-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ocg-footer-contact {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ocg-footer-contact a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(30, 58, 138, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ocg-blue-900);
  padding: 0.34rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
}

.ocg-footer-contact a:hover,
.ocg-footer-contact a:focus-visible {
  border-color: rgba(29, 78, 216, 0.34);
  color: var(--ocg-accent-strong);
  background: #fff;
  text-decoration: none;
}

.ocg-footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.3vw, 1.7rem);
}

.ocg-footer-links-wrap.is-single {
  grid-template-columns: 1fr;
}

.ocg-footer-kicker {
  margin: 0 0 0.5rem;
  color: var(--ocg-text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.ocg-footer-links-col__title,
.ocg-footer-newsletter__title {
  margin: 0;
  color: var(--ocg-blue-950);
  font-size: 1.03rem;
  line-height: 1.3;
}

.ocg-footer-links {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.ocg-footer-links a {
  color: var(--ocg-text-muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.ocg-footer-links a:hover,
.ocg-footer-links a:focus-visible {
  color: var(--ocg-accent-strong);
  text-decoration: none;
}

.ocg-footer-newsletter {
  position: relative;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  border: 1px solid rgba(30, 58, 138, 0.18);
  border-radius: calc(var(--ocg-radius) + 8px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.92) 100%);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
}

.ocg-footer-newsletter__text {
  margin: 0.7rem 0 0;
  color: var(--ocg-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ocg-footer-newsletter__notice {
  margin: 0.85rem 0 0;
  padding: 0.5rem 0.65rem;
  border-radius: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.ocg-footer-newsletter__notice--success {
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
  background: #ecfdf3;
}

.ocg-footer-newsletter__notice--error {
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #991b1b;
  background: #fef2f2;
}

.ocg-footer-newsletter__form {
  margin: 0.85rem 0 0;
}

.ocg-footer-newsletter__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ocg-footer-newsletter__field-row {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid rgba(30, 58, 138, 0.22);
  border-radius: 999px;
  background: #fff;
  padding: 0.32rem;
}

.ocg-footer-newsletter__field-row input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ocg-text);
  min-height: 2.2rem;
  padding: 0 0.65rem;
  font-size: 0.9rem;
}

.ocg-footer-newsletter__field-row input:focus {
  outline: none;
}

.ocg-footer-newsletter__field-row:focus-within {
  border-color: var(--ocg-accent);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

.ocg-footer-newsletter__submit {
  width: 2.35rem;
  min-width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.ocg-footer-newsletter__meta {
  margin: 0.65rem 0 0;
  color: var(--ocg-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.ocg-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 2.8vw, 2.2rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 58, 138, 0.16);
}

.ocg-footer-copy {
  margin: 0;
  color: var(--ocg-text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.ocg-footer-bottom__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.ocg-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ocg-text-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ocg-footer-status a {
  color: inherit;
  text-decoration: none;
}

.ocg-footer-status a:hover,
.ocg-footer-status a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}


.ocg-footer-status__dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: ocg-footer-pulse 2.4s ease-out infinite;
}

@keyframes ocg-footer-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (max-width: 1100px) {
  .ocg-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ocg-footer-top.is-no-newsletter,
  .ocg-footer-top.is-no-links {
    grid-template-columns: 1fr;
  }

  .ocg-footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .ocg-footer-shell {
    padding-top: 2.2rem;
  }

  .ocg-footer-top {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

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

@media (max-width: 620px) {
  .ocg-footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .ocg-footer-newsletter__field-row {
    border-radius: calc(var(--ocg-radius) + 6px);
  }

  .ocg-footer-bottom {
    align-items: flex-start;
  }
}

.widget-title {
  margin-top: 0;
  color: var(--ocg-blue-900);
}

.ocg-sidebar .widget {
  margin-bottom: 1rem;
  padding: 1rem;
}

.ocg-empty-state {
  text-align: center;
  padding: 2rem;
}

.ocg-empty-state h1,
.ocg-empty-state h2 {
  margin-top: 0;
  color: var(--ocg-blue-950);
}

.ocg-empty-state p {
  color: var(--ocg-text-muted);
}

body.error404 {
  background: var(--ocg-surface-muted);
}

.error404 .site-main {
  min-height: auto;
}

.ocg-404 {
  min-height: auto;
}

.ocg-404__layout {
  min-height: clamp(34rem, 80vh, 58rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--ocg-surface-muted);
}

.ocg-404__panel--content {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  padding: clamp(1.5rem, 2.4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  border-inline-end: 1px solid rgba(148, 163, 184, 0.35);
}

.ocg-404__body {
  max-width: 38rem;
  padding-top: clamp(3.5rem, 10vh, 8.5rem);
}

.ocg-404__code {
  margin: 0;
  color: var(--ocg-accent);
  font-size: clamp(1.45rem, 2.7vw, 1.95rem);
  font-weight: 700;
  line-height: 1.1;
}

.ocg-404__title {
  margin: 1.15rem 0 0;
  color: var(--ocg-blue-950);
  font-size: clamp(2.2rem, 5.9vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.ocg-404__description {
  margin: 1.3rem 0 0;
  max-width: 28rem;
  color: var(--ocg-text-muted);
  font-size: clamp(1rem, 1.8vw, 1.9rem);
  line-height: 1.5;
}

.ocg-404__action {
  margin: 2.7rem 0 0;
}

.ocg-404__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ocg-accent);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.ocg-404__back-link:hover,
.ocg-404__back-link:focus-visible {
  color: var(--ocg-accent-strong);
  text-decoration: none;
}

.ocg-404__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--ocg-text-muted);
}

.ocg-404__footer a {
  color: inherit;
  text-decoration: none;
}

.ocg-404__footer a:hover,
.ocg-404__footer a:focus-visible {
  color: var(--ocg-accent-strong);
  text-decoration: none;
}

.ocg-404__separator {
  color: #94a3b8;
}

.ocg-404__panel--media {
  min-width: 0;
}

.ocg-404__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .ocg-404__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ocg-404__panel--content {
    min-height: auto;
    border-inline-end: 0;
  }

  .ocg-404__body {
    padding-top: clamp(2rem, 7vw, 4rem);
  }

  .ocg-404__title {
    max-width: 24rem;
  }

  .ocg-404__panel--media {
    display: block;
    min-height: clamp(220px, 42vh, 380px);
    border-top: 1px solid rgba(148, 163, 184, 0.35);
  }
}

@media (max-width: 640px) {
  .ocg-404__panel--content {
    padding: 1.25rem 1rem;
  }

  .ocg-404__title {
    line-height: 1.08;
  }

  .ocg-404__description {
    font-size: 1rem;
  }

  .ocg-404__back-link {
    font-size: 1.05rem;
  }
}

.ocg-split-hero {
  margin-bottom: 2rem;
  position: relative;
  min-height: min(52rem, calc(100vh - 5.5rem));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: calc(var(--ocg-radius) + 16px);
  padding-block: clamp(2.25rem, 5vw, 4.25rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(203, 213, 225, 0.65);
}

.ocg-split-hero__bg-panel {
  position: absolute;
  inset: 0 -8% 0 auto;
  width: 48%;
  background: linear-gradient(145deg, rgba(148, 163, 184, 0.08), rgba(59, 130, 246, 0.2));
  transform: skewX(-12deg);
  z-index: 0;
}

.ocg-split-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.ocg-split-hero__content {
  max-width: 39rem;
}

.ocg-split-hero__title {
  margin: 0;
  color: var(--ocg-blue-950);
  font-size: clamp(2.2rem, 5.75vw, 4.05rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-wrap: balance;
}

.ocg-split-hero__title-emphasis {
  color: var(--ocg-accent);
  font-style: italic;
}

.ocg-split-hero__description {
  margin: 1.2rem 0 0;
  color: var(--ocg-text-muted);
  max-width: 34rem;
  font-size: clamp(0.93rem, 1.8vw, 1.05rem);
}

.ocg-split-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.ocg-split-hero__button {
  min-height: 3.4rem;
  padding: 0.9rem 1.6rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0.11em;
  font-size: 0.675rem;
  font-weight: 900;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.ocg-split-hero__button:hover,
.ocg-split-hero__button:focus-visible {
  text-decoration: none;
}

.ocg-split-hero__button--primary {
  color: #ffffff;
  background: var(--ocg-blue-950);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.28);
}

.ocg-split-hero__button--primary:hover,
.ocg-split-hero__button--primary:focus-visible {
  transform: translateY(-1px);
  color: #ffffff;
  background: #020617;
}

.ocg-split-hero__button-icon,
.ocg-split-hero__button-icon-svg {
  width: 1rem;
  height: 1rem;
  line-height: 1;
}

.ocg-split-hero__trust {
  margin-top: 1.9rem;
  margin-bottom: 0;
  font-size: clamp(0.87rem, 1.6vw, 0.98rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ocg-text-muted);
  max-width: 34rem;
}

.ocg-split-hero__media {
  position: relative;
}

.ocg-split-hero__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 2.2rem;
  border: 4px solid #ffffff;
  box-shadow: 0 30px 64px rgba(15, 23, 42, 0.34);
}

.ocg-split-hero__image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.ocg-split-hero__glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
}

.ocg-split-hero__glow--top {
  width: 9rem;
  height: 9rem;
  top: -2.5rem;
  right: -2.5rem;
  background: rgba(59, 130, 246, 0.25);
  filter: blur(48px);
}

.ocg-split-hero__glow--bottom {
  width: 13rem;
  height: 13rem;
  left: -3.5rem;
  bottom: -3.5rem;
  background: rgba(30, 64, 175, 0.2);
  filter: blur(62px);
}

@media (max-width: 1100px) {
  .ocg-split-hero {
    min-height: auto;
  }

  .ocg-split-hero__inner {
    gap: 1.4rem;
  }
}

@media (max-width: 991px) {
  .ocg-split-hero {
    padding-block: 2.3rem;
  }

  .ocg-split-hero__bg-panel {
    display: none;
  }

  .ocg-split-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ocg-split-hero__content {
    max-width: none;
    margin-inline: auto;
  }

  .ocg-split-hero__description {
    margin-inline: auto;
  }

  .ocg-split-hero__actions {
    justify-content: center;
  }

  .ocg-split-hero__trust {
    margin-inline: auto;
  }

  .ocg-split-hero__media {
    margin-top: 0.25rem;
  }

  .ocg-split-hero__frame {
    border-width: 2px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.24);
  }

  .ocg-split-hero__glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .ocg-split-hero {
    border-radius: calc(var(--ocg-radius) + 8px);
    padding-block: 1.9rem;
  }

  .ocg-split-hero__button {
    width: 100%;
    min-height: 3.15rem;
  }
}

.ocg-section {
  padding-block: 2.5rem;
}

.ocg-section + .ocg-section {
  border-top: 1px solid var(--ocg-accent-soft-border);
}

.ocg-section__header {
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--ocg-accent-soft-border);
}

.ocg-section__header h2 {
  margin: 0;
  color: var(--ocg-accent-ink);
}

.ocg-pagination {
  margin-top: 1.5rem;
  display: flex;
  width: 100%;
  justify-content: center;
}

.ocg-pagination__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.ocg-pagination__item {
  display: flex;
}

.ocg-pagination__link,
.ocg-pagination__ellipsis {
  min-width: 2.25rem;
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  padding: 0 0.7rem;
  background: transparent;
  color: var(--ocg-text);
  line-height: 1;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ocg-pagination__link:hover,
.ocg-pagination__link:focus-visible {
  border-color: var(--ocg-border);
  background: #fff;
  color: var(--ocg-text);
  text-decoration: none;
}

.ocg-pagination__link:focus-visible {
  outline: 2px solid var(--ocg-accent-focus);
  outline-offset: 2px;
}

.ocg-pagination__link.is-active {
  border-color: var(--ocg-border);
  background: #fff;
  color: var(--ocg-text);
  font-weight: 600;
}

.ocg-pagination__link--control {
  padding-inline: 0.75rem;
}

.ocg-pagination__link.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.ocg-pagination__label {
  white-space: nowrap;
}

.ocg-pagination__icon {
  line-height: 1;
  font-size: 1rem;
}

.ocg-pagination__ellipsis {
  border-color: transparent;
  color: var(--ocg-text-muted);
  cursor: default;
  pointer-events: none;
  padding: 0;
}

@media (max-width: 640px) {
  .ocg-pagination__link--control .ocg-pagination__label {
    display: none;
  }

  .ocg-pagination__link--control {
    min-width: 2.25rem;
    padding: 0 0.5rem;
  }
}

.pagination,
.nav-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pagination .page-numbers,
.nav-links .page-numbers {
  border: 1px solid var(--ocg-border);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--ocg-text);
  padding: 0.35rem 0.65rem;
}

.pagination .current,
.nav-links .current {
  border-color: var(--ocg-accent);
  background: var(--ocg-accent);
  color: #fff;
}

.skip-link {
  position: absolute;
  top: -9999px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 10000;
}

.skip-link:focus {
  top: 10px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  color: #000;
  display: block;
  font-size: 0.85rem;
  height: auto;
  left: 0.5rem;
  line-height: normal;
  padding: 0.85rem;
  text-decoration: none;
  top: 0.5rem;
  width: auto;
  z-index: 100001;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
