.wrapper {
  padding: 0 4rem;
  width: 100%;
  box-sizing: border-box;
}

main {
  margin-top: 6rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 0;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-block-start: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-family: 'Georgia', serif;
}

.intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 4rem;
}

section {
  margin-bottom: 4rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Georgia', serif;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gear-card {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.gear-card:hover {
  transform: translateY(-4px);
  background: rgba(26, 26, 26, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
}

.gear-content {
  padding: 2rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  color: #fff;
}

h3 a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

h3 a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.9);
}

.description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.specs {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.specs li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 1.5rem;
  }

  main {
    margin-top: 6rem;
    padding: 1.5rem 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  .gear-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 0 1rem;
  }

  main {
    margin-top: 5rem;
    padding: 1rem 0;
  }

  .gear-content {
    padding: 1.5rem;
  }
}
