/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/components/fundrasing/TitleSection.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* gradient text titlu */
.title-gradient {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(174, 234, 226, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* marquee gradient */
.marquee-gradient-left {
  background: linear-gradient(
    90deg,
    rgba(9, 12, 12, 1) 5%,
    rgba(8, 13, 14, 0) 100%
  );
}
.marquee-gradient-right {
  background: linear-gradient(
    90deg,
    rgba(8, 13, 14, 0) 0%,
    rgba(9, 12, 12, 1) 95%
  );
}

/* gradient pe RedTag */
.red-tag-gradient {
  background: linear-gradient(
    180deg,
    rgba(150, 64, 64, 1) 0%,
    rgba(64, 43, 43, 1) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* media queries pentru titlu responsive */
@media (max-width: 768px) {
  .title-gradient {
    background: radial-gradient(
      closest-side,
      rgba(226, 249, 254, 1) 0%,
      rgba(201, 243, 253, 1) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

