@charset "UTF-8";
.wp-block-acf-not-found-bloom,
.wp-block-acf-not-found-bloom > .acf-block-component {
  margin: 0 !important;
  padding: 0 !important;
}

/* React: min-h-[70vh] flex items-center justify-center pt-24 pb-16 px-container */
.bloom-not-found {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--bloom-page-top-spacing, 6rem);
  padding-bottom: 4rem; /* pb-16 */
  overflow: hidden;
  background: #fff;
}

.bloom-not-found__aurora-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

.bloom-not-found__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 36rem; /* max-w-xl */
  margin-inline: auto;
  margin-top: 3rem; /* mt-12 */
  text-align: center;
}

@media (min-width: 768px) {
  .bloom-not-found__content {
    margin-top: 4rem; /* md:mt-16 */
  }
}
.bloom-not-found__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(75, 50, 230, 0.1);
  color: var(--color-primary, #4b32e6);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bloom-not-found__number {
  margin: 0 0 1rem;
  font-size: clamp(4.5rem, 12vw, 8rem); /* text-7xl → md:text-9xl */
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(to right, var(--color-primary, #4b32e6), #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

.bloom-not-found__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem); /* text-2xl → md:text-3xl */
  font-weight: 700 !important;
  font-variation-settings: "wght" 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111827;
}

.bloom-not-found__description {
  margin: 0 0 2rem;
  font-size: 1rem; /* text-base */
  line-height: 1.625;
  color: #4b5563;
}

@media (min-width: 768px) {
  .bloom-not-found__description {
    font-size: 1.125rem; /* md:text-lg */
  }
}
.bloom-not-found__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bloom-not-found__actions {
    flex-direction: row;
  }
}
.bloom-not-found__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

@media (min-width: 640px) {
  .bloom-not-found__btn {
    width: auto;
  }
}
.bloom-not-found__btn:active {
  transform: scale(0.98);
}

.bloom-not-found__btn--primary {
  background: var(--color-primary, #4b32e6);
  color: #fff;
  box-shadow: 0 4px 12px rgba(75, 50, 230, 0.2);
}

.bloom-not-found__btn--primary:hover {
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bloom-not-found__btn--primary i {
  transition: transform 0.2s ease;
}

.bloom-not-found__btn--primary:hover i {
  transform: translateY(-2px);
}

.bloom-not-found__btn--secondary {
  background: #f3f4f6;
  color: #374151;
}

.bloom-not-found__btn--secondary:hover {
  background: #e5e7eb;
}

/*# sourceMappingURL=not-found-bloom.css.map */
