/* ── Inline Objects Carousel (lives inside the mindmap layer) ── */

.inline-carousel {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 10;
}

.inline-carousel.visible {
  opacity: 1;
  pointer-events: auto;
}

.inline-carousel-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ic-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: rgba(0,0,0,0.38);
  padding: 2px 5px;
  font-family: 'CreatoDisplay', sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s, transform 0.15s;
  user-select: none;
  flex-shrink: 0;
}

.ic-arrow:hover {
  color: rgba(0,0,0,0.85);
  transform: scale(1.2);
}

.ic-arrow:disabled {
  opacity: 0.15;
  cursor: default;
  transform: none;
}

.ic-track {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ic-inner {
  display: flex;
  gap: 5px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ic-item {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s;
}

.ic-item:hover {
  opacity: 0.85;
}

.ic-item .ic-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ic-item .ic-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.12);
  transition: background 0.2s;
}

.ic-item:hover .ic-placeholder {
  background: rgba(0,0,0,0.14);
}

.ic-label {
  font-family: 'CreatoDisplay', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  text-align: center;
  min-height: 14px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.ic-label strong {
  font-weight: 900;
  color: rgba(0,0,0,0.65);
}
