/* ==========================================================
   THREADS OF CULTURE
========================================================== */

.threads-hero {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(210, 222, 204, 0.8),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      var(--cream),
      var(--ivory)
    );
}


/* ICONS */

.threads-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin: 20px 0 18px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.7);

  font-size: 1.1rem;
}


/* MACHINE SECTION */

.threads-machine-section {
  background: var(--sage);
}


/* SWAPSHOP */

.swapshop-section {
  background:
    linear-gradient(
      135deg,
      var(--cream),
      var(--clay)
    );
}


/* FASHION SHOW */

.fashion-show-section {
  background:
    linear-gradient(
      135deg,
      var(--lavender),
      var(--cream)
    );
}


/* PRIVACY */

.form-privacy {
  margin-top: 15px;

  font-size: 0.78rem;

  line-height: 1.6;

  color: var(--taupe);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 860px) {

  .threads-machine-section .equipment-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

}