﻿:root {
  --mp-bg: #f3f7f8;
  --mp-card: #ffffff;
  --mp-text: #1f2937;
  --mp-muted: #64748b;
  --mp-line: #d5dde3;
  --mp-accent: #0a6058;
  --mp-accent-2: #084d47;
  --mp-accent-soft: #e0faf5;
  --mp-shadow: 0 8px 24px rgba(8, 77, 71, 0.10);
  --logo-text: #f8fafc;
  --logo-muted: #b6d5dc;
  --logo-grad1: #7dd3fc;
  --logo-grad2: #5eead4;
  --logo-grad3: #34d399;
  --apple-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Inter", "Segoe UI", sans-serif;
}

body.dark {
  --mp-bg: #111819;
  --mp-card: #232829;
  --mp-text: #e5f0f0;
  --mp-muted: #9aaeb0;
  --mp-line: #3b4648;
  --mp-accent: #17b8c8;
  --mp-accent-2: #0f8ea0;
  --mp-accent-soft: rgba(23, 184, 200, 0.12);
  --logo-text: #f0fdfa;
  --logo-muted: #9fc3cc;
  --logo-grad1: #67e8f9;
  --logo-grad2: #38bdf8;
  --logo-grad3: #0ea5e9;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  color-scheme: light;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

body.dark {
  color-scheme: dark;
  scrollbar-color: #555 transparent;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}

body.dark ::-webkit-scrollbar-thumb {
  background: #555;
}

body.dark ::-webkit-scrollbar-thumb:hover {
  background: #777;
}

.mp-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
}

.mp-main-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 11px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
}

.mp-main-nav a:hover,
.mp-main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.mp-main-nav a[aria-current="page"] {
  background: rgba(94, 234, 212, 0.20);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.mp-nav-strip {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(8, 77, 71, 0.12);
  box-shadow: 0 2px 10px rgba(8, 77, 71, 0.08);
}

body.dark .mp-nav-strip {
  background: rgba(24, 32, 35, 0.92);
  border-bottom-color: rgba(94, 234, 212, 0.14);
}

.mp-nav-strip__inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 8px 24px;
}

.mp-nav-strip .mp-main-nav {
  justify-content: flex-start;
  gap: 10px;
}

.mp-nav-strip .mp-main-nav a {
  color: var(--mp-accent-2);
  background: transparent;
  border-color: transparent;
}

.mp-nav-strip .mp-main-nav a:hover,
.mp-nav-strip .mp-main-nav a:focus-visible {
  background: rgba(10, 96, 88, 0.10);
}

.mp-nav-strip .mp-main-nav a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-2));
}

.mp-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    radial-gradient(circle at 18% 0%, rgba(45, 212, 191, 0.16), transparent 34%),
    linear-gradient(135deg, #0a6058 0%, #084d47 45%, #063d38 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 16px rgba(8, 77, 71, 0.16);
}

.mp-site-header__inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.mp-site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.mp-site-brand img {
  width: 178px;
  height: auto;
  display: block;
}

.mp-site-brand__subtitle {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(248, 250, 252, 0.95);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 290px;
}

.mp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.mp-social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 14px rgba(2, 8, 23, 0.18);
}

.mp-social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1) saturate(.2);
}

.mp-theme-toggle {
  width: 64px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #172033;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.mp-theme-toggle svg {
  width: 15px;
  height: 15px;
}

body.dark .mp-theme-toggle {
  background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
  color: #f8fafc;
  border-color: rgba(103, 232, 249, 0.28);
}

.theme-toggle {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  cursor: pointer;
  width: 70px;
  height: 36px;
  position: relative;
  flex: 0 0 70px;
  padding: 0 7px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.theme-toggle svg {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  filter: none;
  transition: opacity 0.25s ease, color 0.25s ease, fill 0.25s ease;
}

.theme-toggle .light-icon {
  left: 9px;
  opacity: 1;
}

.theme-toggle .dark-icon {
  right: 9px;
  opacity: 0.42;
}

.theme-toggle .thumb {
  position: absolute;
  left: 2px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 4px 10px rgba(15, 23, 42, 0.22),
    0 1px 2px rgba(15, 23, 42, 0.18);
  transition: left 0.28s ease-out, background 0.25s ease, box-shadow 0.25s ease;
  z-index: 1;
}

body.dark .theme-toggle {
  background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
  border-color: rgba(103, 232, 249, 0.28);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.dark .theme-toggle .thumb {
  left: calc(100% - 34px);
  background: #f8fafc;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.32),
    0 0 14px rgba(103, 232, 249, 0.18);
}

body.dark .theme-toggle .light-icon {
  opacity: 0.55;
  filter: none;
}

body.dark .theme-toggle .dark-icon {
  opacity: 1;
}

/* Header pattern from index.html */
.container {
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  width: 100%;
  background:
    radial-gradient(circle at 18% 0%, rgba(45, 212, 191, 0.16), transparent 34%),
    linear-gradient(135deg, #0a6058 0%, #084d47 45%, #063d38 100%);
  padding: 0;
  margin: 0;
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.header-container {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
}

.app-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
  overflow: visible;
  filter:
    saturate(1.16)
    brightness(1.02)
    contrast(1.08)
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.10));
}

.brand-logo path,
.brand-logo stop {
  transition: fill 0.25s ease, stroke 0.25s ease, stop-color 0.25s ease;
}

.brand-copy {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: 18px;
  margin-left: 2px;
  margin-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.brand-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.005em;
  white-space: nowrap;
  color: #f1fffd;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.social-link {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 14px rgba(2, 8, 23, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.48);
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1) saturate(.2);
}

body.dark .app-header {
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.13), transparent 34%),
    linear-gradient(90deg, #06282d 0%, #073940 44%, #041f24 100%);
  border-bottom: 1px solid rgba(94, 234, 212, 0.20);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.44);
}

body.dark .brand-logo {
  filter:
    saturate(1.05)
    brightness(1.18)
    contrast(1.08)
    drop-shadow(0 0 20px rgba(34, 211, 238, 0.12));
}

body.dark .brand-copy {
  border-left-color: rgba(94, 234, 212, 0.18);
}

body.dark .brand-subtitle {
  color: rgba(240, 253, 250, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

body.dark .social-link {
  background: rgba(6, 182, 212, 0.14);
  border-color: rgba(94, 234, 212, 0.36);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

body.dark .social-link:hover {
  background: rgba(6, 182, 212, 0.22);
  border-color: rgba(94, 234, 212, 0.52);
}

body.dark .social-link img {
  filter: brightness(0) invert(1) saturate(0.35);
}

.mp-page {
  min-height: 100vh;
  margin: 0;
  font-family: var(--apple-font);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--mp-text);
  background:
    radial-gradient(circle at 50% -10%, rgba(8, 77, 71, 0.08), transparent 34%),
    linear-gradient(180deg, #f5f9fb 0%, #e9f1f6 100%);
}

body.dark.mp-page {
  background:
    radial-gradient(circle at 50% -10%, rgba(23, 184, 200, 0.10), transparent 32%),
    linear-gradient(180deg, #111819 0%, #171d1f 100%);
}

.mp-page-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 24px 56px;
}

.mp-hero {
  margin-bottom: 24px;
}

.mp-hero h1 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.1;
  color: var(--mp-text);
}

.mp-hero p {
  max-width: 850px;
  margin: 0 0 12px;
  color: var(--mp-muted);
  font-size: 17px;
  line-height: 1.65;
}

.mp-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-2));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(8, 77, 71, 0.18);
}

.mp-inline-cta:hover,
.mp-inline-cta:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.mp-card,
.mp-step-card,
.mp-feature-card,
.mp-cta {
  background: var(--mp-card);
  border: 1px solid var(--mp-line);
  border-radius: 14px;
  box-shadow: var(--mp-shadow);
}

.mp-card {
  padding: 24px;
  margin: 18px 0;
}

.mp-about-page {
  max-width: 920px;
}

.mp-about-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mp-about-card {
  margin: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-about-card--wide {
  padding: 24px;
}

.mp-about-card h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.mp-about-card p {
  margin: 0;
  color: var(--mp-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mp-about-card p + p {
  margin-top: 3px;
}

.mp-about-card strong {
  color: var(--mp-accent-2);
  font-weight: 800;
}

body.dark .mp-about-card strong {
  color: #d6f8fb;
}

.mp-card h2,
.mp-section-title {
  margin: 0 0 14px;
  color: var(--mp-accent-2);
  font-size: 24px;
}

body.dark .mp-card h2,
body.dark .mp-section-title {
  color: #d6f8fb;
}

.mp-card p,
.mp-card li,
.mp-step-card p,
.mp-feature-card p,
.mp-cta p {
  color: var(--mp-text);
  line-height: 1.65;
}

.mp-emphasis {
  font-weight: 700;
  color: var(--mp-accent-2);
}

.mp-muted {
  color: var(--mp-muted) !important;
}

.mp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mp-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mp-section-gap-top {
  margin-top: 28px;
}

.mp-step-card,
.mp-feature-card {
  padding: 20px;
}

.mp-step-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.mp-number,
.mp-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--mp-accent-soft);
  color: var(--mp-accent-2);
  font-weight: 800;
}

.mp-step-card h3,
.mp-feature-card h3 {
  margin: 0;
  color: var(--mp-text);
  font-size: 18px;
}

.mp-illustration {
  min-height: 140px;
  margin: 14px 0 0;
  border: 1px dashed rgba(10, 96, 88, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(224, 250, 245, 0.78), rgba(255, 255, 255, 0.72));
  color: var(--mp-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
}

body.dark .mp-illustration {
  background: rgba(23, 184, 200, 0.08);
  border-color: rgba(94, 234, 212, 0.20);
}

.mp-checklist {
  padding-left: 0;
  list-style: none;
}

.mp-checklist li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}

.mp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mp-accent);
}

.mp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--mp-accent);
  background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-2));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.mp-btn.secondary {
  background: transparent;
  color: var(--mp-accent-2);
  border-color: rgba(10, 96, 88, 0.26);
}

body.dark .mp-btn.secondary {
  color: #d6f8fb;
}

.mp-cta {
  padding: 26px;
  margin-top: 26px;
}

.mp-cta h2 {
  margin: 0 0 10px;
}

.intro-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.intro-card h1 {
  margin: 0 0 8px;
  color: var(--accent, var(--mp-accent-2));
  font-size: 24px;
}

.intro-card p {
  margin: 0 0 9px;
  color: var(--text, var(--mp-text));
  line-height: 1.55;
}

.intro-card p:last-child {
  margin-bottom: 0;
}

.intro-icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: var(--accent-soft, var(--mp-accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-icon img {
  width: 78px;
  height: auto;
}

/* Smaller typography for institutional subpages only (home is not .mp-page) */
.mp-page .mp-hero h1 {
  font-size: 34px;
}

.mp-page .mp-hero p {
  font-size: 16px;
}

.mp-page .mp-card h2,
.mp-page .mp-section-title,
.mp-page .mp-cta h2,
.mp-page .intro-card h1 {
  font-size: 22px;
}

.mp-page .mp-step-card h3,
.mp-page .mp-feature-card h3 {
  font-size: 16px;
}

.mp-page .mp-card p,
.mp-page .mp-card li,
.mp-page .mp-step-card p,
.mp-page .mp-feature-card p,
.mp-page .mp-cta p,
.mp-page .intro-card p {
  font-size: 15px;
  line-height: 1.6;
}

.mp-page .mp-btn {
  font-size: 14px;
}

.mp-page .mp-footer-grid h3 {
  font-size: 13px;
}

.mp-page .mp-footer-grid p {
  font-size: 11px;
  line-height: 1.6;
}

.mp-page .mp-footer-grid a,
.mp-page .mp-footer-bottom a {
  font-size: 12px;
}

.mp-page .mp-footer-bottom {
  font-size: 11px;
}

.mp-site-footer {
  border-top: 1px solid rgba(8, 77, 71, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--mp-text);
  box-shadow: 0 -8px 24px rgba(8, 77, 71, 0.06);
}

body.dark .mp-site-footer {
  background: rgba(24, 32, 35, 0.86);
  border-top-color: rgba(94, 234, 212, 0.12);
}

.mp-site-footer__inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 28px 24px 18px;
}

.mp-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.mp-footer-brand img {
  width: 170px;
  max-width: 100%;
}

.mp-footer-grid h3 {
  margin: 0 0 8px;
  color: #4f6473;
  font-size: 14px;
  font-weight: 700;
}

body.dark .mp-footer-grid h3 {
  color: #9cb3bf;
}

.mp-footer-grid p {
  margin: 0 0 8px;
  color: #73879a;
  line-height: 1.45;
  font-size: 12px;
}

.mp-footer-grid a,
.mp-footer-bottom a {
  color: var(--mp-accent-2);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

body.dark .mp-footer-grid a,
body.dark .mp-footer-bottom a {
  color: #9ff4ec;
}

.mp-footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--mp-line);
  display: grid;
  gap: 8px;
  color: #8a9bab;
  font-size: 12px;
}

.mp-footer-bottom__links,
.mp-footer-bottom__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.mp-footer-bottom__meta {
  color: #95a6b6;
}

@media (max-width: 1100px) {
  .mp-site-header__inner {
    flex-wrap: wrap;
  }

  .mp-nav-strip .mp-main-nav {
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

@media (max-width: 760px) {
  .mp-site-header__inner {
    padding: 10px 16px;
  }

  .mp-site-brand {
    flex-wrap: wrap;
  }

  .mp-site-brand img {
    width: 156px;
  }

  .mp-site-brand__subtitle {
    border-left: 0;
    padding-left: 0;
    font-size: 13px;
  }

  .mp-main-nav a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .mp-nav-strip__inner {
    padding: 8px 16px;
  }

  .mp-page-main {
    padding: 30px 16px 42px;
  }

  .mp-hero h1 {
    font-size: 30px;
  }

  .mp-page .mp-hero h1 {
    font-size: 27px;
  }

  .mp-page .mp-hero p {
    font-size: 15px;
  }

  .mp-grid,
  .mp-steps,
  .mp-footer-grid {
    grid-template-columns: 1fr;
  }

  .mp-about-card,
  .mp-about-card--wide {
    padding: 20px;
  }

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

  .intro-icon {
    width: 78px;
    height: 78px;
  }

  .mp-social-link {
    display: none;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-copy {
    display: none;
  }

  .brand-logo {
    height: 44px;
  }

  .header-actions .social-link {
    display: none;
  }
}

/* Keep header/nav paddings pixel-identical to index across public pages */
.app-header {
  padding: 0 !important;
  margin: 0 !important;
}

.header-container {
  padding-top: 12px !important;
  padding-right: 24px !important;
  padding-bottom: 12px !important;
  padding-left: 24px !important;
}

.brand-copy {
  padding-left: 18px !important;
}

.brand-subtitle {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.mp-nav-strip__inner {
  padding: 8px 24px !important;
}

.mp-main-nav a {
  padding: 11px 16px !important;
}

@media (max-width: 700px) {
  .header-container {
    padding-top: 10px !important;
    padding-right: 16px !important;
    padding-bottom: 10px !important;
    padding-left: 16px !important;
  }

  .brand-logo {
    height: 44px !important;
  }
}

.mp-illustration-media {
  padding: 8px;
  overflow: hidden;
}

.mp-illustration-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(10, 96, 88, 0.16);
  background: #ffffff;
}

body.dark .mp-illustration-media img {
  border-color: rgba(94, 234, 212, 0.18);
  background: rgba(17, 24, 25, 0.65);
}
