.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 0px;
  gap: 64px;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0;
  width: 100%;
  max-width: 1280px;
  gap: 21px;
}

.about h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-12);
  line-height: 1.4;
}

.about p {
  font-size: 21px;
  font-weight: 500;
  text-align: left;
  color: var(--gray-11);
  max-width: 1000px;
  line-height: 1.4;
}

.about-scroll-container {
  display: flex;
  width: 100%;
  height: auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 24px;
}

.about-scroll-container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 600px) {
  .about-scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 1rem;
  }
}

.about-box {
  min-width: 320px;
  height: 384px;
  background-color: var(--gray-3);
  display: flex;
  justify-content: start;
  align-items: start;
  border-radius: 28px;
}

.about-box-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 24px;
  gap: 8px;
}

.about-box-text h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-11);
  line-height: 1.4;
}

.about-box-text p {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-12);
  line-height: 1.4;
}

.about-button {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 24px;
  width: 100%;
  max-width: 1280px;
  gap: 16px;
}

.about-button button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gray-12);
  background: var(--gray-3);
  border: none;
  outline: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.about-button button:hover {
  background: var(--gray-4);
}

.about-button button:active {
  background: var(--gray-5);
}

.about-button button svg {
  width: 28px;
  height: 28px;
}
