/* TextPressure CSS */

.text-pressure {
  position: relative;
  cursor: default;
  will-change: transform;
  font-size: 1.1rem !important;
  letter-spacing: 0.05em;
  word-spacing: 0.5em;
}

.text-pressure span {
  will-change: font-variation-settings, opacity;
  transition: font-variation-settings 0.1s ease-out;
}

/* Ensure text pressure works on all section titles */
.section-title.text-pressure {
  display: inline-block;
  width: auto;
  max-width: 100%;
}

/* Responsive sizing */
@media (min-width: 768px) {
  .text-pressure {
    font-size: 1.3rem !important;
  }
}

@media (min-width: 1024px) {
  .text-pressure {
    font-size: 1.5rem !important;
  }
}
