/* ============== Base ============== */
:root {
  --navy: #202C39;
  --beige: #B8B08D;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #e9e9ec;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

/* ============== Language Switch ============== */
.lang-switch {
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.lang-switch a {
  color: #cfd2d6;
  text-decoration: none;
  margin: 0 4px;
  font-weight: 600;
}
.lang-switch a.active { color: #fff; text-decoration: underline; }
.lang-switch span { color: #6f7884; }

/* ============== Slide (mimics PowerPoint slide canvas) ============== */
.slide {
  width: 100%;
  max-width: 900px;
  margin: 32px auto;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  /* PPTX aspect ratio ~ 6858 x 9906 (portrait) — keep it portrait-ish */
}

/* ============== Header bar ============== */
.slide-header {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  align-items: center;
  padding: 22px 26px;
  gap: 12px;
  position: relative;
}

.slide-header h1 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.slide-header .years {
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #e7e7e7;
}

.slide-header .role {
  margin: 0;
  text-align: left;
  font-size: 12.5px;
  font-style: italic;
  color: #f1f1f1;
}

.header-badge {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-badge img {
  height: 30px;
  width: auto;
  display: block;
}

.header-contact {
  text-align: right;
  font-size: 12.5px;
}
.header-contact p { margin: 2px 0; }

/* ============== Body two-column layout ============== */
.slide-body {
  display: grid;
  grid-template-columns: 36% 64%;
  min-height: 1100px;
}

/* Sidebar (beige column) */
.sidebar {
  background: var(--beige);
  color: var(--ink);
  padding: 22px 20px;
}

.sidebar h2 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 18px 0 8px;
  text-transform: uppercase;
  color: #1c1c1c;
}
.sidebar h2:first-child { margin-top: 4px; }

.sidebar p {
  margin: 4px 0 6px;
  font-size: 13px;
  line-height: 1.5;
}

.sidebar em {
  font-style: italic;
  font-weight: 600;
}

/* Main column (right, white) */
.main-col {
  background: #fff;
  padding: 24px 26px 28px;
}

.main-col h2 {
  margin: 4px 0 16px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 6px;
}

.job {
  margin-bottom: 16px;
  page-break-inside: avoid;
}

.job h3 {
  margin: 0;
  font-size: 13.5px;
  font-weight: 800;
  color: #111;
}

.job .role-line {
  margin: 2px 0 6px;
  font-style: italic;
  font-size: 12.5px;
  color: var(--muted);
}

.job ul {
  margin: 4px 0 0;
  padding-left: 18px;
}

.job li {
  font-size: 12.5px;
  line-height: 1.5;
  margin-bottom: 2px;
}

/* ============== Responsive ============== */
@media (max-width: 720px) {
  .slide-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .header-contact { text-align: center; }
  .header-badge { justify-self: center; }

  .slide-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

/* ============== Print ============== */
@media print {
  body { background: #fff; }
  .lang-switch { display: none; }
  .slide {
    box-shadow: none;
    margin: 0 auto;
    max-width: 100%;
  }
}
