:root {
  --hero-width: 760px;
  --hover-shift: 2px;
  --hover-shift-neg: -2px;
  color-scheme: light;
}

.theme-dark {
  --bg: #060708;
  --bg-soft: #0b0c12;
  --bg-softer: #111421;
  --text: #f8fafc;
  --muted: #9fa6b8;
  --border-subtle: #1f222d;
  --accent-line: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.18);
  --nav-bg: rgba(6, 7, 8, 0.92);
}

.theme-light {
  --bg: #f7f9fc;
  --bg-soft: #eef2f8;
  --bg-softer: #e6ecf5;
  --text: #0b1020;
  --muted: #4b5568;
  --border-subtle: #d4d9e2;
  --accent-line: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.16);
  --nav-bg: rgba(247, 249, 252, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

html,
body {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 20;
  background: var(--accent-line);
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  outline: 3px solid #fff;
  outline-offset: 4px;
}

body {
  min-height: 100vh;
  color: var(--text);
  background-color: transparent;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

a:hover {
  opacity: 0.85;
}

.page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 80px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.page.lang-switching {
  opacity: 0.35;
  transform: translateY(6px);
}

@media (min-width: 960px) {
  .page {
    padding-top: 36px;
  }
}

/* top nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding: 18px 0 18px;
  min-height: 64px;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.nav-left {
  font-weight: 600;
  color: var(--text);
}

.nav-right {
  display: flex;
  gap: 22px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.theme-toggle,
.nav-cv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
  min-height: 34px;
}

.lang-toggle:hover,
.theme-toggle:hover,
.nav-cv:hover {
  border-color: var(--accent-line);
}

.lang-toggle {
  background: var(--bg-soft);
}

.theme-toggle {
  padding: 8px 10px;
  min-width: 40px;
}

.theme-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  line-height: 0;
}

.nav-right a {
  position: relative;
  padding-bottom: 4px;
  transition: color 160ms ease;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-line);
  transition: width 180ms ease-out;
}

.nav-right a:hover::after {
  width: 100%;
}

/* shared column positioning */
.column {
  max-width: var(--hero-width);
  margin: 0 auto;
}

/* hero */
.hero {
  padding: 24px 0 24px;
  border-top: none;
  scroll-margin-top: 120px;
  position: relative;
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-line {
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.22;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-line .accent {
  color: var(--accent-line);
}

.hero-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 160ms ease, transform 160ms ease;
}

.hero-body + .hero-body {
  margin-top: 8px;
}

.hero-body:hover,
.hero-body:active {
  background: var(--accent-soft);
  transform: translateX(var(--hover-shift));
}

.hero-links {
  display: flex;
  gap: 14px;
  font-size: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0 4px;
  position: relative;
  border-bottom: none;
  line-height: 1;
  transition: color 160ms ease;
}

.hero-links a:hover {
  color: var(--accent-line);
}

.hero-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-line);
  transition: width 180ms ease-out;
  transform: translateZ(0);
}

.hero-links a:hover::after,
.hero-links a:active::after {
  width: 100%;
}

.icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 16px;
  flex-shrink: 0;
}

.symbol svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* sections */
section {
  padding: 52px 0;
  border-top: 1px solid var(--border-subtle);
  scroll-margin-top: 100px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

/* MY WORK */
.work-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.work-item {
  position: relative;
  padding: 10px 12px 12px 20px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: auto;
  border-radius: 12px;
  transition: background 160ms ease, transform 160ms ease, color 150ms ease;
}

.work-item:last-child {
  border-bottom: none;
}

.work-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 24px;
  background: var(--accent-line);
  border-radius: 999px;
  opacity: 0.85;
  transition: height 180ms ease, opacity 160ms ease, transform 160ms ease;
}

.work-item:hover,
.work-item:active {
  background: var(--accent-soft);
  transform: translateX(var(--hover-shift));
}

.work-item:hover::before,
.work-item:active::before {
  height: 44px;
  opacity: 1;
  transform: translateX(var(--hover-shift-neg));
}

.work-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.work-title {
  font-size: 16px;
  font-weight: 700;
}

.work-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-brief {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.work-details {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
}

.work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  margin-top: 6px;
  position: relative;
  padding-bottom: 2px;
  transition: color 160ms ease;
}

.work-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-line);
  transition: width 180ms ease;
}

.work-link:hover,
.work-link:active {
  color: var(--accent-line);
}

.work-link:hover::after,
.work-link:active::after {
  width: 100%;
}

/* EXPERIENCE TIMELINE */
.timeline {
  position: relative;
  padding-left: 0;
  margin-top: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}

.timeline-item {
  position: relative;
  margin-bottom: 22px;
  padding: 14px 12px 14px 48px;
  cursor: auto;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.work-item a,
.timeline-item a {
  cursor: pointer;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent-line);
  flex-shrink: 0;
  background: var(--bg);
  box-shadow: 0 0 0 6px var(--bg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.timeline-item:hover,
.timeline-item:active {
  background: var(--accent-soft);
  transform: translateX(var(--hover-shift));
}

.timeline-item:hover::before,
.timeline-item:active::before {
  transform: translateX(var(--hover-shift-neg)) scale(1.12);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
}

.timeline-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.timeline-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
}

.timeline-details {
  margin-top: 6px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-top: 0;
}

.timeline-points {
  margin: 8px 0 0 0;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

/* EDUCATION / SKILLS simple lists */
.edu-item {
  font-size: 14px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 160ms ease, transform 160ms ease;
}

.edu-item:hover,
.edu-item:active {
  background: var(--accent-soft);
  transform: translateX(var(--hover-shift));
}

.edu-title {
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.edu-meta {
  color: var(--muted);
  font-size: 13px;
}

.skills-group {
  font-size: 14px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 160ms ease, transform 160ms ease;
}

.skills-group:hover,
.skills-group:active {
  background: var(--accent-soft);
  transform: translateX(var(--hover-shift));
}

.skills-label {
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.skills-text {
  color: var(--muted);
}

/* contact */
.contact-card {
  margin-top: 10px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 14px;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

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

.contact-card::after {
  display: none;
}

.contact-main {
  padding: 12px;
  border-radius: 12px;
  transition: background 160ms ease, transform 160ms ease;
  background: transparent;
}

.contact-main:hover,
.contact-main:active {
  background: var(--accent-soft);
  transform: translateX(var(--hover-shift));
}

.contact-line {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-email {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-email a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--text);
  border: 1px solid var(--border-subtle);
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
}

.contact-email a:hover,
.contact-email a:active {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.contact-social-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  font-size: 14px;
  align-items: center;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  color: var(--text);
  line-height: 1;
  position: relative;
  transition: color 140ms ease;
}

.contact-social-links a:hover,
.contact-social-links a:active {
  color: var(--accent-line);
}

.contact-social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent-line);
  transition: width 140ms ease;
}

.contact-social-links a:hover::after,
.contact-social-links a:active::after {
  width: 100%;
}

.footer {
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* reveal helpers */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 240ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-right {
    display: flex;
    gap: 12px;
  }
  .nav-right a:not(:first-child):not(:last-child) {
    display: none;
  }
  .lang-toggle,
  .nav-cv {
    font-size: 11px;
    padding: 8px 10px;
  }
}

/* Blog layout */
.blog-banner {
  padding: 32px 0 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-title {
  font-size: 26px;
  margin: 0;
  letter-spacing: -0.01em;
}

.blog-sub {
  color: var(--muted);
  margin-top: 4px;
}

.blog-container {
  padding: 28px 0 48px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-list .work-item {
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.blog-list .work-item:hover,
.blog-list .work-item:active {
  background: var(--accent-soft);
  transform: translateX(var(--hover-shift));
}

.blog-list .work-meta {
  letter-spacing: 0.08em;
}

.blog-list .work-brief {
  font-size: 13px;
}

.blog-list .pill {
  margin-top: 6px;
}

.blog-empty {
  padding: 16px 12px;
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--border-subtle);
}

.blog-post-hero {
  padding: 36px 0 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.blog-post-meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-post-title {
  font-size: clamp(28px, 5vw, 36px);
  margin: 0 0 12px;
}

.blog-post-body {
  padding: 12px 0 24px;
  line-height: 1.75;
}

.blog-post-body p {
  margin-top: 0;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.pager button {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
}

.pager button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.load-more-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.view-shell {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.view-shell.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade {
  transition: opacity 180ms ease, transform 180ms ease, max-height 200ms ease;
  opacity: 0;
  transform: translateY(6px);
  max-height: 0;
  overflow: hidden;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
}

.muted {
  color: var(--muted);
}

.code-block {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  overflow-x: auto;
}

/* CV modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  opacity: 0;
  transition: opacity 180ms ease;
}

.modal-overlay.show {
  opacity: 1;
}

.modal {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 16px;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 200ms ease, transform 200ms ease;
}

.modal h3 {
  margin: 0 0 10px;
}

.modal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* admin */
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.file-input {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.file-input input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.list-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 8px 0 12px;
}

.main-tabs,
.lang-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 4px 0 12px;
}

.tab {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--bg-soft);
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
}

.tab:hover,
.tab:focus-visible {
  border-color: var(--accent-line);
  background: var(--bg-soft);
}

.tab.active {
  border-color: var(--accent-line);
  background: var(--bg-soft);
}

.field-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.field-row:last-child {
  border-bottom: none;
}

.field-label {
  min-width: 160px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  padding-top: 10px;
}

.field-input {
  flex: 1;
  min-width: 220px;
}

.field-input input,
.field-input textarea,
.field-input select {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
}

.field-input textarea {
  min-height: 90px;
  resize: vertical;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.line-item {
  padding: 8px 6px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 160ms ease, background 160ms ease;
}

.line-item:hover,
.line-item:focus-within {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.item-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.badge.strong {
  border-color: var(--accent-line);
  color: var(--text);
}

.lang-chip {
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.lang-chip.active {
  border-color: var(--accent-line);
}

.switch-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

code {
  background: none;
  padding: 0;
}

details {
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  margin: 0 0 10px;
  padding: 0 6px 6px;
  }

details summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
  padding: 10px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

details summary::marker,
details summary::-webkit-details-marker {
  display: none;
}

details[open] summary .badge {
  border-color: var(--accent-line);
}

.collapse-body {
  padding: 0 4px 10px;
}

.wysiwyg {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
}

.wysiwyg-toolbar {
  display: flex;
  gap: 6px;
  padding: 6px;
  flex-wrap: wrap;
}

.wysiwyg-toolbar button {
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text);
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
}

.wysiwyg-area {
  min-height: 120px;
  padding: 10px 12px;
  outline: none;
}

.admin-page .hero-body:hover,
.admin-page .hero-body:active {
  background: transparent;
  transform: none;
}

.admin-page .hero-body {
  background: transparent;
  padding: 0;
}

.admin-page .line-item:hover,
.admin-page .line-item:active {
  background: transparent;
  transform: none;
}

.admin-page .work-item:hover,
.admin-page .timeline-item:hover,
.admin-page .skills-group:hover,
.admin-page .edu-item:hover {
  background: transparent;
  transform: none;
}

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