/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@15.5.7_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/.pnpm/next@15.5.7_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/development/development.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.section {
  min-height: max(100vh, 700px);
  position: relative;
}

@media (max-width: 1024px) {
  .section {
    min-height: max(100vh, 900px);
  }
}

.content-wrapper {
  gap: 36px;
  width: min(95vw, 1200px);
  padding: 10px;
  height: 100%;
}

@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
    width: min(95vw, 800px);
    padding: 10px 32px;
    gap: 36px;
    height: 734px;
  }

  .text-content {
    align-items: center;
    text-align: center;
  }

  .image-container {
    width: 100%;
  }

  .title {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: 10px 16px;
    width: min(95vw, 360px);
  }

  .title {
    letter-spacing: -0.07em;
  }

  .description {
    padding: 0;
  }
}

/* Description responsive padding */
@media (max-width: 1024px) {
  .description {
    padding: 0 clamp(0px, 5vw, 120px);
  }
}

/* Image rules */
.image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Keyframes + animation helper */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Small helpers kept to match original typography behaviour */
.title {
  /* other styles (font-family, gradient text, clamp font-size) are inlined in JSX */
  margin: 0;
}

.description {
  margin: 0;
}

