/* My Gears Section */
#my-gears {
  text-align: center;
  padding: 50px 20px;
}

#my-gears h2 {
  color: gold;
  font-size: 28px;
}

#my-gears h3 {
  color: #ffd700;
}

.gears-container {
  padding-top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: auto;
}

.gear-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  border-bottom: 2px solid rgba(255, 215, 0, 0.5);
  padding-bottom: 15px;
}

.gear-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: grey;
}

.gear-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .gear-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gear-image {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gear-image {
    width: 160px;
    height: 160px;
  }
}
