/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.hero-slide-frame {
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0b;
}

/* Hero typewriter / progressive reveal (profile edit) */
.hero-tw-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-tw-reveal.hero-tw-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-tw-cursor::after {
  content: "▍";
  margin-left: 1px;
  animation: hero-tw-blink 1s steps(1) infinite;
  color: #fbbf24;
}

.hero-tw-blink {
  animation: hero-tw-blink 1s steps(1) infinite;
}

@keyframes hero-tw-blink {
  50% {
    opacity: 0;
  }
}

.hero-slide-content {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.hero-slide-content > *:first-child {
  box-sizing: border-box;
}

.hero-slide-content [data-hero-action] {
  cursor: pointer;
}
