.experiences{
  padding:60px 20px;
}

.experience-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

/* CARD */

.experience-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:all .3s ease;
}

.experience-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGEN */

.experience-img{
  width:100%;
  height:180px;
  background-size:cover;
  background-position:center;
}

/* CONTENT */

.experience-content{
  padding:20px;
}

.experience-content h3{
  font-size:18px;
  margin-bottom:8px;
}

.experience-content p{
  font-size:14px;
  color:#666;
  margin-bottom:10px;
  line-height:1.5;
}

.experience-content ul{
  list-style:none;
  padding:0;
  margin-bottom:10px;
}

.experience-content li{
  font-size:14px;
  padding:4px 0;
  color:#8b6b35;
}

/* LINK */

.experience-link{
  display:inline-block;
  margin-top:8px;
  font-size:14px;
  color:#8b6b35;
  text-decoration:none;
  font-weight:500;
}

.experience-link:hover{
  text-decoration:underline;
}

/* ===== CARRUSEL ===== */

.experience-carousel{
  position:relative;
  overflow:hidden;
}

.carousel-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.carousel-track::-webkit-scrollbar{
  display:none;
}

/* ITEM */

.carousel-item{
  min-width:100%;
  height:220px;
  position:relative;
  background-size:cover;
  background-position:center;
  scroll-snap-align:start;
  flex-shrink:0;
}

/* DOTS */

.carousel-dots{
  position:absolute;
  bottom:10px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:6px;
}

.dot{
  width:6px;
  height:6px;
  background:rgba(255,255,255,0.5);
  border-radius:50%;
  transition:all .3s;
}

.dot.active{
  background:#fff;
  width:10px;
}