.crafts-page {
  padding: 22px 0 116px;
}

.crafts-page h1 {
  margin-bottom: 72px;
  text-align: center;
  font-size: clamp(3.8rem, 8vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.crafts-accordion {
  display: grid;
  gap: 18px;
}

.craft-panel {
  border-radius: 24px;
  overflow: hidden;
  background: #09a53e;
}

.craft-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  cursor: pointer;
  text-align: left;
}

.craft-toggle span:first-child {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.craft-plus {
  position: relative;
  width: 38px;
  height: 38px;
}

.craft-plus::before,
.craft-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: #111111;
  transform: translate(-50%, -50%);
}

.craft-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.35s ease;
}

.craft-panel.is-open .craft-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.craft-panel-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.craft-panel-copy {
  padding: 0 32px 28px;
}

.craft-panel-body p {
  max-width: 62ch;
  color: #111111;
  font-size: 1.06rem;
  line-height: 1.28;
}

@media (max-width: 760px) {
  .craft-toggle {
    padding: 22px 20px;
    grid-template-columns: 1fr 34px;
  }

  .craft-panel-copy {
    padding: 0 20px 22px;
  }

  .craft-plus {
    width: 30px;
    height: 30px;
  }

  .craft-plus::before,
  .craft-plus::after {
    width: 22px;
  }
}
