/* ===================================================================
   Section Title — Elementor Widget Frontend CSS
   Animated heading with scale/blur entrance + decorative bottom line
   =================================================================== */

/* ===== Wrapper ===== */
.st-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}

/* ===== Title ===== */
.st-title {
  font-size: 36px;
  color: #000;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

/* ===== Subtitle ===== */
.st-subtitle {
  font-size: 28px;
  color: #000;
  display: block;
  padding-bottom: 20px;
  line-height: 1.4;
}

/* ===== Decorative Line ===== */
.st-line-wrap {
  display: flex;
}

.st-line {
  width: 450px;
  max-width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

/* ===== Entrance Animation ===== */
.st-anim {
  transform: scale(1.2) translateY(20px);
  transition: all 1.3s cubic-bezier(0.7, 0.01, 0.3, 1);
  filter: blur(3px);
  opacity: 0;
  transform-origin: 90% 50%;
}

.st-anim.st-visible {
  transform: scale(1) translateY(0);
  opacity: 1;
  filter: blur(0px);
}

/* ===== Accessibility: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .st-anim {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* ===== Responsive ===== */

/* Large Desktop ≤ 1440px */
@media screen and (max-width: 1440px) {
  .st-line {
    max-width: 400px;
  }
}

/* Small Desktop ≤ 1280px */
@media screen and (max-width: 1280px) {
  .st-title {
    font-size: 34px;
  }
  .st-subtitle {
    font-size: 26px;
  }
  .st-line {
    max-width: 350px;
  }
}

/* Tablet Landscape ≤ 1024px */
@media screen and (max-width: 1024px) {
  .st-title {
    font-size: 30px;
  }
  .st-subtitle {
    font-size: 24px;
  }
  .st-line {
    max-width: 300px;
  }
}

/* Tablet Portrait ≤ 800px */
@media screen and (max-width: 800px) {
  .st-title {
    font-size: 28px;
  }
  .st-subtitle {
    font-size: 22px;
    padding-bottom: 16px;
  }
  .st-line {
    max-width: 250px;
  }
}

/* Large Phone ≤ 640px */
@media screen and (max-width: 640px) {
  .st-title {
    font-size: 26px;
  }
  .st-subtitle {
    font-size: 20px;
    padding-bottom: 14px;
  }
  .st-line {
    max-width: 200px;
  }
}

/* Phone ≤ 480px */
@media screen and (max-width: 480px) {
  .st-title {
    font-size: 22px;
  }
  .st-subtitle {
    font-size: 18px;
    padding-bottom: 12px;
  }
  .st-line {
    max-width: 160px;
  }
}

/* Small Phone ≤ 375px */
@media screen and (max-width: 375px) {
  .st-title {
    font-size: 20px;
  }
  .st-subtitle {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .st-line {
    max-width: 120px;
  }
}
