/* ── Images ──────────────────────────────────────────── */

.center {
  display: block;
  margin: 0 auto;
}

/* ── Badges ──────────────────────────────────────────── */

.md-typeset {
  color-adjust: exact;
  font-size: 0.8rem;
  line-height: 1.6;
}

.mdx-badge {
  font-size: 0.85em;
}

.mdx-badge__icon {
  padding: 4px;
  --md-typeset-a-color: #ffffff;
  border-start-start-radius: 2px;
  border-end-start-radius: 2px;
}

.mdx-badge__icon a:link,
.mdx-badge__icon a:visited {
  color: inherit !important;
}

.mdx-badge__icon__min-fl-version {
  background: #568d31;
}

.mdx-badge__icon__min-fl-version:hover {
  background: #094d12;
  color: #72ce7e;
}

.mdx-badge__icon__mdm-add-on {
  background: #9381ff;
}

.mdx-badge__icon__mdm-add-on:hover {
  background: #162057;
  color: #6a79d1;
}

.mdx-badge__icon__paid-mobile-service {
  background: #e63946;
}

.mdx-badge__icon__paid-mobile-service:hover {
  background: #ac2e2e;
  color: #f01313;
}

.mdx-badge__text {
  padding: 4px 6px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 0 0 inset #cccccc, -1px -1px 0 0 inset #cccccc;
}

/* ── Orbit layout ────────────────────────────────────── */

.experience-layout {
  position: relative;
  width: min(680px, calc(100vw - 3rem));
  aspect-ratio: 1;
  margin: 0 auto;
}

.exp-track {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(0, 40, 56, 0.2);
  pointer-events: none;
}

.exp-spokes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.exp-spokes line {
  stroke: rgba(0, 40, 56, 0.15);
  stroke-width: 0.5;
}

.exp-spokes--dashed line {
  stroke-dasharray: 2 2;
}

.exp-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #002838;
  transition: opacity 0.2s ease;
}

.exp-center:hover {
  opacity: 0.75;
}

.exp-center-label {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #002838;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.exp-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #002838;
  transform: translate(-50%, -50%);
  width: 120px;
}

.exp-node-icon {
  width: clamp(86px, 16vw, 116px);
  height: clamp(86px, 16vw, 116px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.exp-node-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.exp-center-icon {
  width: clamp(86px, 16vw, 116px) !important;
  height: clamp(86px, 16vw, 116px) !important;
}

.exp-node-label {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  color: #002838;
  transition: color 0.2s ease;
}

.exp-node:hover .exp-node-icon {
  box-shadow: 0 6px 18px rgba(85, 102, 236, 0.28);
  transform: scale(1.08);
}

.exp-node:hover .exp-node-label {
  color: #5566EC;
}

@media (max-width: 480px) {
  .exp-node-icon {
    width: clamp(56px, 16vw, 86px);
    height: clamp(56px, 16vw, 86px);
  }

  .exp-node {
    width: 80px;
  }

  .exp-node-label {
    font-size: 0.7rem;
  }
}
