/* ─────────────────────────────
   Experience Slider: Container, Wrapper & Track
───────────────────────────── */


.experience-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 25px;
  padding-top: 30px;
}

.experience-slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* ─────────────────────────────
   Navigation Arrows (Top Right)
───────────────────────────── */
.experience-nav {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.experience-nav button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin: 0 1.5rem;
  color: #9f9f9f;
  transition: color 0.3s ease;
}

.experience-nav button:hover {
  color: var(--secondary-color);
}
/* ─────────────────────────────
   Ordered List for Skill Slider
───────────────────────────── */
.skill-left ol {
  padding-left: 1.25rem;
  margin: 1rem 0;
  list-style: decimal inside;
  counter-reset: skill-counter;
}

.skill-left ol li {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ar-body-text);
  border-bottom: 1px solid #e5e5e5;
}

.skill-left ol li:last-child {
  border-bottom: none;
}

/* ─────────────────────────────
   Slide Group & Slide Box
───────────────────────────── */
.experience-slide-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 100%;
}

.experience-slide {
  padding: 1.75rem;
  border-radius: 12px;
}

/* ─────────────────────────────
   Slide Grid Layout
───────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.exp-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

.exp-left {
  grid-column: 1;
}

.exp-right {
  grid-column: 2 / 4;
}

/* ─────────────────────────────
   Slide Content Styles
───────────────────────────── */
.exp-years {
  font-size: 0.95rem;
  font-weight: 600;
  color: #9b9b9b;
  line-height: 1.9;
}

.exp-company {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.2;
}

.exp-role {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--ar-dark-accent);
  line-height: 1.9;
}

.exp-desc {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--ar-body-text);
  line-height: 1.9;
}

/* ─────────────────────────────
   Responsive
───────────────────────────── */
@media (max-width: 768px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-right {
    grid-column: auto;
  }

  .experience-nav {
    top: -40px;
    right: 10px;
  }
}
