.smart-crud-dialog {
  --bs-modal-width: min(1120px, calc(100vw - 48px));
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.smart-crud-modal {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}

.smart-crud-header,
.smart-crud-footer {
  background: var(--bs-body-bg);
  z-index: 3;
}

.smart-crud-header {
  background: linear-gradient(90deg, var(--bs-primary-bg-subtle), var(--bs-body-bg));
  border-bottom: 1px solid var(--bs-border-color);
  padding: 18px 22px;
}

.smart-crud-footer {
  border-top: 1px solid var(--bs-border-color);
  padding: 14px 22px;
}

.smart-crud-body {
  background: var(--bs-light);
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  padding: 18px;
}

.smart-form-section {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-left: 4px solid var(--bs-primary);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(12, 23, 54, 0.04);
}

.smart-form-section + .smart-form-section {
  margin-top: 14px;
}

.smart-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
}

.smart-field-full {
  grid-column: 1 / -1;
}

.smart-field label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.smart-field .form-control,
.smart-field .form-select {
  min-height: 42px;
  background-color: var(--bs-body-bg);
}

.smart-field textarea.form-control {
  min-height: 86px;
}

.smart-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Editor teks berformat (Quill) di dalam modal CRUD. */
.smart-richtext {
  background: var(--bs-body-bg);
  min-height: 220px;
  max-height: 380px;
  overflow-y: auto;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.js-richtext-field .ql-toolbar {
  background: var(--bs-body-bg);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.js-richtext-field .ql-editor {
  font-size: .95rem;
  line-height: 1.7;
  min-height: 200px;
}

.js-richtext-field .ql-editor.ql-blank::before {
  font-style: normal;
  color: var(--bs-gray-400);
}

.smart-detail-item {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-left: 4px solid var(--bs-primary);
  border-radius: 8px;
  padding: 12px 14px;
}

@media (max-width: 991.98px) {
  .smart-form-grid,
  .smart-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .smart-crud-dialog {
    --bs-modal-width: calc(100vw - 16px);
    margin: 8px auto;
  }

  .smart-crud-body {
    max-height: calc(100vh - 180px);
    padding: 12px;
  }

  .smart-form-grid,
  .smart-detail-grid {
    grid-template-columns: 1fr;
  }
}

.smart-public-page {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.smart-public-page *,
.smart-public-page *::before,
.smart-public-page *::after {
  box-sizing: border-box;
}

.smart-public-page img,
.smart-public-page video,
.smart-public-page iframe {
  max-width: 100%;
  height: auto;
}

.smart-public-page section {
  scroll-margin-top: 86px;
}

.smart-public-header {
  z-index: 1030;
  transition: box-shadow .25s ease, transform .25s ease;
}

.smart-public-header .navbar {
  transition: background-color .25s ease, min-height .25s ease, padding .25s ease, box-shadow .25s ease;
}

.smart-public-header .navbar {
  min-height: 76px;
}

.smart-public-header.is-scrolled .navbar {
  box-shadow: 0 12px 34px rgba(12, 23, 54, .11);
}

.smart-public-header .nav-link {
  position: relative;
  isolation: isolate;
  border-radius: 999px;
  transition: color .25s ease, transform .25s ease;
}

.smart-public-header .nav-link::before {
  content: "";
  position: absolute;
  inset: .42rem .16rem;
  z-index: -1;
  border-radius: 999px;
  background: rgba(var(--bs-primary-rgb), .08);
  opacity: 0;
  transform: translateY(5px) scale(.86);
  transition: opacity .25s ease, transform .25s ease;
}

.smart-public-header .nav-link::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .35rem;
  height: 2px;
  background: var(--bs-primary);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px) scaleX(.45);
  transform-origin: center;
  transition: opacity .25s ease, transform .25s ease;
}

.smart-public-header .nav-link:hover,
.smart-public-header .nav-link:focus {
  color: var(--bs-primary) !important;
  transform: translateY(-1px);
}

.smart-public-header .nav-link:hover::before,
.smart-public-header .nav-link:focus::before,
.smart-public-header .nav-link.active::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.smart-public-header .nav-link:hover::after,
.smart-public-header .nav-link:focus::after {
  opacity: .75;
  transform: translateY(0) scaleX(.76);
}

.smart-public-header .nav-link.active,
.smart-mobile-menu a.active {
  color: var(--bs-primary) !important;
}

.smart-public-header .nav-link.active::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.smart-hero {
  padding-top: 76px;
}

.smart-hero-slide {
  min-height: min(820px, calc(100vh - 76px));
  background-size: cover;
  background-position: center;
  overflow: hidden;
  animation: smartHeroZoom 8s ease both;
}

.smart-hero-row {
  min-height: min(820px, calc(100vh - 76px));
  padding: 72px 0;
}

.carousel-item.active .smart-hero-kicker,
.carousel-item.active .smart-hero-title,
.carousel-item.active .smart-hero-subtitle,
.carousel-item.active .smart-hero-actions {
  animation: smartFadeUp .78s ease both;
}

.carousel-item.active .smart-hero-title {
  animation-delay: .08s;
}

.carousel-item.active .smart-hero-subtitle {
  animation-delay: .18s;
}

.carousel-item.active .smart-hero-actions {
  animation-delay: .28s;
}

.smart-hero .carousel-indicators {
  bottom: 28px;
}

.smart-hero .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  opacity: .55;
  transition: width .25s ease, opacity .25s ease;
}

.smart-hero .carousel-indicators .active {
  width: 28px;
  opacity: 1;
}

.smart-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.smart-gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}

.smart-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--bs-gray-700);
}

.smart-check-list li::before {
  content: "\ea5e";
  font-family: "tabler-icons";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--bs-success);
}

.smart-mobile-menu a:not(.btn) {
  position: relative;
  display: block;
  color: var(--bs-dark);
  font-weight: 600;
  padding: 10px 0 10px 18px;
  text-decoration: none;
  border-bottom: 1px solid var(--bs-border-color);
  transition: color .25s ease, padding-left .25s ease, background-color .25s ease;
}

.smart-mobile-menu a:not(.btn)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bs-primary);
  opacity: .25;
  transform: translateY(-50%) scale(.7);
  transition: opacity .25s ease, transform .25s ease;
}

.smart-mobile-menu a:not(.btn):hover,
.smart-mobile-menu a:not(.btn):focus,
.smart-mobile-menu a:not(.btn).active {
  padding-left: 24px;
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), .04);
}

.smart-mobile-menu a:not(.btn):hover::before,
.smart-mobile-menu a:not(.btn):focus::before,
.smart-mobile-menu a:not(.btn).active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.smart-public-preloader {
  display: grid;
  place-items: center;
  background: var(--bs-body-bg);
  transition: opacity .3s ease, visibility .3s ease;
}

.smart-public-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.smart-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .62s ease, transform .62s ease;
  transition-delay: var(--smart-delay, 0ms);
}

.smart-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.smart-hover-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}

.smart-hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(12, 23, 54, .12) !important;
  border-color: rgba(var(--bs-primary-rgb), .28) !important;
}

.smart-hover-card i {
  transition: transform .28s ease;
}

.smart-hover-card:hover i {
  transform: scale(1.08);
}

.smart-img-wrap {
  overflow: hidden;
}

.smart-news-card .smart-card-img {
  transition: transform .35s ease;
}

.smart-news-card:hover .smart-card-img,
.smart-gallery-card:hover .smart-gallery-img {
  transform: scale(1.06);
}

.smart-btn {
  transition: transform .25s ease, box-shadow .25s ease;
}

.smart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 23, 54, .16);
}

.smart-btn-icon {
  display: inline-block;
  transition: transform .25s ease;
}

.smart-btn-arrow:hover .smart-btn-icon {
  transform: translateX(4px);
}

.smart-agenda-list {
  position: relative;
}

.smart-agenda-list::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--bs-border-color);
}

.smart-agenda-card {
  position: relative;
  background: var(--bs-body-bg);
}

.smart-gallery-card {
  cursor: pointer;
}

.smart-gallery-overlay {
  background: linear-gradient(180deg, rgba(12, 23, 54, 0), rgba(12, 23, 54, .82));
  opacity: .9;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease;
}

.smart-gallery-card:hover .smart-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.smart-gallery-item.is-hidden {
  display: none;
}

.smart-ppdb-card {
  background-image: radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 34%);
}

.smart-ppdb-modal {
  --bs-modal-margin: 1rem;
}

.smart-ppdb-modal .smart-ppdb-dialog {
  align-items: flex-start;
  height: calc(100dvh - 2rem);
  margin-bottom: 1rem;
  margin-top: 1rem;
  max-width: min(1040px, calc(100vw - 24px));
}

.smart-ppdb-modal .modal-content {
  border: 0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(12, 23, 54, .2);
}

.smart-ppdb-modal .modal-header {
  background-image: radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 38%);
  flex: 0 0 auto;
  padding: 1.15rem 1.35rem;
}

.smart-ppdb-modal .modal-header .badge {
  margin-bottom: .35rem !important;
}

.smart-ppdb-modal .modal-title {
  font-size: 1.1rem;
}

.smart-ppdb-modal form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.smart-ppdb-modal .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem !important;
}

.smart-ppdb-modal .form-label {
  font-weight: 700;
  margin-bottom: .35rem;
}

.smart-ppdb-modal .form-control,
.smart-ppdb-modal .form-select {
  min-height: 46px;
}

.smart-ppdb-modal textarea.form-control {
  min-height: 92px;
}

.smart-ppdb-modal .modal-footer {
  flex: 0 0 auto;
  padding: .9rem 1.25rem;
}

.smart-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(12, 23, 54, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.smart-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes smartFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes smartHeroZoom {
  from {
    background-size: 104%;
  }
  to {
    background-size: 108%;
  }
}

@media (max-width: 991.98px) {
  .smart-public-header .navbar {
    min-height: 68px;
  }

  .smart-hero {
    padding-top: 68px;
  }

  .smart-hero-slide {
    min-height: 70vh;
  }

  .smart-hero-row {
    min-height: 70vh;
    padding: 72px 0 56px;
  }

  .smart-hero .display-4 {
    font-size: 2.45rem;
  }
}

@media (max-width: 575.98px) {
  .smart-public-page section {
    scroll-margin-top: 74px;
  }

  .smart-hero-slide {
    min-height: auto;
  }

  .smart-hero-row {
    min-height: auto;
    padding: 70px 0 86px;
  }

  .smart-hero .display-4 {
    font-size: 1.95rem;
    line-height: 1.14;
  }

  .smart-hero .fs-5,
  .smart-public-page .fs-4 {
    font-size: 1rem !important;
  }

  .smart-hero .btn-lg {
    width: 100%;
  }

  .smart-hero .carousel-control-prev,
  .smart-hero .carousel-control-next {
    display: none;
  }

  .smart-card-img {
    height: 160px;
  }

  .smart-agenda-list::before {
    display: none;
  }

  .smart-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   Halaman publik berdiri sendiri: berita, agenda, galeri, 404
   ========================================================================== */

.smart-public-main {
  padding-top: 76px;
}

.smart-public-nav .nav-link {
  color: var(--bs-dark);
  padding-inline: .85rem;
}

.smart-page-hero {
  background: linear-gradient(180deg, var(--bs-primary-bg-subtle), var(--bs-body-bg));
  padding: 48px 0 40px;
}

.smart-page-title {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.6rem);
  line-height: 1.18;
  margin-bottom: .75rem;
}

.smart-page-lead {
  max-width: 62ch;
}

.smart-breadcrumb {
  --bs-breadcrumb-divider: "/";
  font-size: .875rem;
  margin-bottom: 0;
}

.smart-breadcrumb a {
  color: var(--bs-primary);
  text-decoration: none;
}

.smart-breadcrumb .breadcrumb-item.active {
  color: var(--bs-gray-500);
}

/* Judul & ringkasan kartu dipotong supaya tinggi kartu tetap seragam. */
.smart-clamp-2,
.smart-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.smart-clamp-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.smart-clamp-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.smart-read-more {
  font-size: .9rem;
}

.smart-news-card:hover .smart-read-more i {
  transform: translateX(4px);
}

.smart-read-more i {
  transition: transform .25s ease;
}

.smart-search-form .form-control {
  min-height: 42px;
}

.smart-empty-state {
  background: var(--bs-body-bg);
  border: 1px dashed var(--bs-border-color);
  border-radius: 14px;
}

.smart-empty-state > i {
  font-size: 2.75rem;
  color: var(--bs-gray-400);
}

/* --- Kartu agenda --------------------------------------------------------- */

.smart-date-badge {
  display: grid;
  place-items: center;
  width: 62px;
  padding: 8px 4px;
  border-radius: 12px;
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  line-height: 1.1;
}

.smart-date-day {
  font-size: 1.5rem;
  font-weight: 700;
}

.smart-date-month {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.smart-date-year {
  font-size: .72rem;
  opacity: .75;
}

/* --- Detail berita -------------------------------------------------------- */

.smart-article-cover {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 14px;
}

.smart-article-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  padding-left: 16px;
  border-left: 4px solid var(--bs-primary);
}

.smart-article-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--bs-gray-700);
}

.smart-article-body p {
  margin-bottom: 1.1rem;
}

.smart-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.smart-sidebar-card {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 96px;
}

.smart-related-item {
  align-items: flex-start;
}

.smart-related-thumb {
  width: 76px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.smart-related-item:hover h3 {
  color: var(--bs-primary) !important;
}

/* --- Footer publik -------------------------------------------------------- */

.smart-public-footer a:hover {
  color: #fff !important;
  opacity: 1;
}

/* ==========================================================================
   Halaman login
   ========================================================================== */

.smart-login {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bs-body-bg);
}

.smart-login-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (min-width: 992px) {
  .smart-login-grid {
    grid-template-columns: 1.05fr 1fr;
  }
}

.smart-login-brand {
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(32px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .16), transparent 42%),
    linear-gradient(150deg, var(--bs-primary), #0b3f00);
  overflow: hidden;
}

.smart-login-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 30rem;
}

.smart-login-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: rgba(255, 255, 255, .88);
}

.smart-login-points i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .14);
  flex-shrink: 0;
}

.smart-login-back {
  position: absolute;
  left: clamp(32px, 5vw, 72px);
  bottom: 40px;
  text-decoration: none;
  font-size: .9rem;
}

.smart-login-back:hover {
  color: #fff !important;
}

/* --- Logo sekolah (hasil unggahan Pengaturan Sekolah) --------------------- */

/* Lockup identitas: logo persegi + nama sekolah. Logo sekolah umumnya berupa
   lambang/stempel (rasio 1:1), jadi dikunci persegi supaya tidak gepeng. */
.smart-brand {
  min-width: 0;
  color: inherit;
}

.smart-brand-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.smart-brand-logo-sm {
  height: 38px;
  width: 38px;
}

.smart-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}

.smart-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.smart-public-footer .smart-brand-name {
  color: #fff;
}

.smart-brand-sub {
  font-size: .74rem;
  font-weight: 500;
  color: var(--bs-gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Layar sempit: nama dipendekkan agar tombol menu tetap muat. */
@media (max-width: 991.98px) {
  .smart-brand-logo {
    height: 40px;
    width: 40px;
  }

  .smart-brand-name {
    font-size: .9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .smart-brand-sub {
    display: none;
  }
}

@media (max-width: 400px) {
  .smart-brand-name {
    font-size: .8rem;
  }
}

.smart-sidebar-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.smart-sidebar-brand {
  font-size: .95rem;
  line-height: 1.15;
  color: var(--bs-dark);
}

.smart-logo-preview {
  height: 84px;
  width: 84px;
  object-fit: contain;
  background: var(--bs-light);
  border: 1px solid var(--bs-border-color);
  border-radius: 12px;
  padding: 6px;
}

.smart-login-logo {
  height: 72px;
  width: 72px;
  object-fit: contain;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  padding: 5px;
  flex-shrink: 0;
}

.smart-login-brand-name {
  font-size: 1.05rem;
  line-height: 1.3;
}

.smart-login-logo-sm {
  height: 44px;
  width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.smart-login-panel {
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.smart-login-form {
  width: 100%;
  max-width: 26rem;
}

.smart-input-group .input-group-text {
  background: var(--bs-body-bg);
  border-right: 0;
  color: var(--bs-gray-500);
}

.smart-input-group .form-control {
  border-left: 0;
  min-height: 46px;
}

.smart-input-group .form-control:focus {
  border-left: 0;
  box-shadow: none;
}

/* Fokus digambar pada seluruh grup supaya border kiri/kanan tidak terputus. */
.smart-input-group:focus-within {
  border-radius: var(--bs-border-radius);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .18);
}

.smart-input-group:focus-within .input-group-text,
.smart-input-group:focus-within .form-control {
  border-color: rgba(var(--bs-primary-rgb), .55);
}

@media (max-width: 991.98px) {
  .smart-public-main {
    padding-top: 68px;
  }

  .smart-page-hero {
    padding: 34px 0 30px;
  }

  .smart-sidebar-card {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .smart-page-hero {
    padding: 26px 0 24px;
  }

  .smart-page-lead {
    font-size: 1rem !important;
  }

  .smart-article-lead {
    font-size: 1rem;
  }

  .smart-article-body {
    font-size: .98rem;
    line-height: 1.75;
  }

  .smart-date-badge {
    width: 54px;
  }

  .smart-related-thumb {
    width: 64px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .smart-reveal,
  .smart-hover-card,
  .smart-btn,
  .smart-gallery-img,
  .smart-card-img,
  .smart-hero-slide,
  .carousel-item.active .smart-hero-kicker,
  .carousel-item.active .smart-hero-title,
  .carousel-item.active .smart-hero-subtitle,
  .carousel-item.active .smart-hero-actions {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
