/* ThinkarHouse — interactive carousel & hover enhancements */

:root {
  --th-accent: #00c896;
  --th-accent-hover: #00e5b0;
  --th-accent-deep: #009970;
  --th-accent-muted: rgba(0, 200, 150, 0.14);
  --th-accent-glow: rgba(0, 200, 150, 0.35);
  --th-dark: #1a1a1a;
  --carousel-height: 720px;
  --page-banner-height: 380px;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— Inner page theme banners ——— */

.page-banner-wrap {
  border-bottom: 0;
  padding: 0;
  overflow: hidden;
}
.page-banner-wrap .page-content-holder {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px !important;
}
.page-banner {
  position: relative;
  min-height: var(--page-banner-height);
  height: var(--page-banner-height);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-banner__bg {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.1);
  transition: transform 0.15s ease-out;
  animation: bannerKenBurns 14s ease-in-out infinite alternate;
}
.page-banner.is-hover .page-banner__bg {
  animation-duration: 8s;
}
.page-banner.is-ready .page-banner__bg {
  animation-play-state: running;
}
@keyframes bannerKenBurns {
  0% {
    transform: scale(1.12) translate(0, 0);
  }
  100% {
    transform: scale(1.05) translate(-2%, -1.5%);
  }
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(224, 64, 29, 0.35) 100%
  );
  animation: bannerOverlayPulse 8s ease-in-out infinite alternate;
}
@keyframes bannerOverlayPulse {
  0% {
    opacity: 0.92;
  }
  100% {
    opacity: 1;
  }
}
.page-banner__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: bannerShine 6s ease-in-out infinite;
}
@keyframes bannerShine {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -80% 0;
  }
}
.page-banner .page-content-holder {
  position: relative;
  z-index: 3;
  width: 100%;
}
.page-title--banner {
  padding: 64px 0 52px;
  width: 100%;
  position: relative;
}
.page-title--banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 0;
  height: 3px;
  background: var(--th-accent);
  animation: bannerAccentLine 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.page-banner.is-ready .page-title--banner::before {
  width: 72px;
}
@keyframes bannerAccentLine {
  to {
    width: 72px;
  }
}
.page-banner__title {
  color: #fff !important;
  font-size: 38px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(28px);
}
.page-banner.is-ready .page-banner__title {
  animation: bannerTitleIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes bannerTitleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-banner__breadcrumb {
  position: static !important;
  float: none !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.page-banner__crumb {
  opacity: 0;
  transform: translateX(-12px);
}
.page-banner.is-ready .page-banner__crumb {
  animation: bannerCrumbIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.45s + var(--crumb-i, 0) * 0.1s);
}
@keyframes bannerCrumbIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.page-banner__breadcrumb > li,
.page-banner__crumb {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.page-banner__crumb + .page-banner__crumb::before {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
  padding: 0 8px;
}
.page-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}
.page-banner__breadcrumb a:hover {
  color: var(--th-accent);
  transform: translateX(3px);
}
.page-banner__breadcrumb .active,
.page-banner__breadcrumb span.active {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 991px) {
  :root {
    --page-banner-height: 320px;
  }
  .page-banner__title {
    font-size: 30px !important;
  }
  .page-title--banner {
    padding: 48px 0 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --page-banner-height: 260px;
  }
  .page-banner__bg {
    animation: bannerKenBurnsMobile 12s ease-in-out infinite alternate;
  }
  @keyframes bannerKenBurnsMobile {
    0% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1.02);
    }
  }
  .page-title--banner {
    padding: 40px 0 32px;
  }
  .page-banner__title {
    font-size: 26px !important;
  }
  .page-banner__breadcrumb > li,
  .page-banner__crumb {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner__bg,
  .page-banner__overlay,
  .page-banner__shine,
  .page-banner__title,
  .page-banner__crumb {
    animation: none !important;
  }
  .page-banner__title,
  .page-banner__crumb {
    opacity: 1;
    transform: none;
  }
  .page-title--banner::before {
    width: 72px;
  }
}

/* Contain floats so sections below carousel are not clipped */
.page-container .page-content {
  display: flow-root;
  overflow: visible;
  width: 100%;
}

/* Visible before scroll animation runs */
@media (max-width: 767px) {
  .page-container .page-content .this-animate {
    opacity: 1;
  }
  .page-container .page-content .this-animate:not(.this-animated) {
    opacity: 1;
  }
}

/* ThinkarHouse logo */
.page-container .page-header .page-header-holder .logo a.site-logo-link {
  font-size: 0;
  background: none !important;
  width: auto;
  height: auto;
  text-indent: 0;
  display: block;
  line-height: 0;
}
.site-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-logo-link:hover .site-logo {
  opacity: 0.88;
  transform: scale(1.02);
}

/* Nav dropdown + hover — ThinkarHouse green */
.navigation > li.has-children {
  position: relative;
}
.navigation > li.has-children > a::after {
  content: "\f107";
  font-family: FontAwesome;
  margin-left: 6px;
  font-size: 11px;
  color: var(--th-accent);
  transition: color 0.2s ease, transform 0.2s ease;
}
.navigation > li.has-children:hover > a::after,
.navigation > li.has-children.active > a::after {
  color: var(--th-accent-hover);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 153, 112, 0.12), 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-top: 3px solid var(--th-accent);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.navigation > li.has-children:hover .nav-dropdown {
  display: block;
  animation: navDrop 0.25s ease;
}
@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-dropdown li a {
  display: block;
  padding: 11px 18px 11px 22px;
  color: #3d4a45;
  border-left: 3px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    padding-left 0.2s ease;
}
.nav-dropdown li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--th-accent-muted);
  vertical-align: middle;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nav-dropdown li a:hover {
  background: var(--th-accent-muted);
  color: var(--th-accent-deep);
  border-left-color: var(--th-accent);
  padding-left: 26px;
}
.nav-dropdown li a:hover::before {
  background: var(--th-accent);
  box-shadow: 0 0 8px var(--th-accent-glow);
}
.navigation > li > a {
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    text-shadow 0.25s ease;
}
.navigation > li.active > a,
.navigation > li > a:hover {
  color: var(--th-accent);
}
.navigation > li.has-children:hover > a {
  color: var(--th-accent);
}

/* ——— Hero carousel ——— */
.hero-carousel-wrapper {
  float: left;
  width: 100%;
  clear: both;
  position: relative;
  z-index: 2;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: var(--carousel-height);
  min-height: var(--carousel-height);
  overflow: hidden;
  background: var(--th-dark);
}
.hero-carousel.is-paused .hero-carousel__progress-bar {
  animation-play-state: paused;
}
.hero-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s;
  z-index: 1;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide__bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-slide.is-active .hero-slide__bg {
  transform: scale(1);
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.hero-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.hero-slide--thinkerp .hero-slide__overlay {
  background: linear-gradient(
    105deg,
    rgba(12, 35, 72, 0.94) 0%,
    rgba(12, 35, 72, 0.78) 38%,
    rgba(0, 0, 0, 0.45) 72%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-slide--thinkerp .hero-slide__bg {
  background-position: center top;
  background-size: cover;
}

.hero-slide__brand-logo {
  display: block;
  height: 88px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.hero-slide--thinkerp .hero-slide__eyebrow {
  color: #9ad42a;
}

.hero-slide--thinkerp .hero-slide__btn--primary {
  background: #7cb518;
  color: #0a0a0a !important;
}

.hero-slide--thinkerp .hero-slide__btn--ghost {
  border-color: rgba(154, 212, 42, 0.55);
  color: #c8e86a !important;
}
.hero-slide__content {
  position: absolute;
  z-index: 4;
  max-width: 520px;
  perspective: 800px;
  transition: transform 0.12s ease-out;
  will-change: transform;
}
.hero-slide__content--align-right {
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}
.hero-slide__content--align-left {
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}
.hero-slide__content--align-center {
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 640px;
}
.hero-slide__content--align-bottom {
  left: 7%;
  right: 7%;
  bottom: 14%;
  top: auto;
  transform: none;
  max-width: 560px;
  text-align: left;
}
.hero-slide__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--th-accent);
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 12px;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(-16px);
}
.hero-slide.is-active .hero-slide__eyebrow.animate-in {
  animation: slideEyebrowIn 0.55s ease forwards;
}
@keyframes slideEyebrowIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-slide__title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0 0 20px;
  line-height: 1.2;
}
.hero-slide__tags {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-slide__tag {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(calc(28px * var(--tag-from, 1))) translateY(8px) scale(0.96);
}
.hero-slide__content--align-left .hero-slide__tag {
  transform: translateX(calc(-28px * var(--tag-from, 1))) translateY(8px) scale(0.96);
}
.hero-slide__content--align-center .hero-slide__tag {
  transform: translateY(22px) scale(0.94);
  display: inline-block;
  margin: 0 5px 8px;
}
.hero-slide__content--align-center .hero-slide__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.hero-slide__content--align-bottom .hero-slide__tag {
  transform: translateY(24px) scale(0.95);
}
.hero-slide.is-active .hero-slide__tag.animate-in {
  animation: slideTagIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--tag-delay, 0.2s);
}
.hero-slide.is-active .hero-slide__title.animate-in {
  animation:
    slideTitleIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    titleGlow 4s ease-in-out 1.2s infinite alternate;
}
@keyframes titleGlow {
  from {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  to {
    text-shadow: 2px 4px 18px rgba(0, 0, 0, 0.85), 0 0 24px rgba(224, 64, 29, 0.25);
  }
}
.hero-slide__tag span {
  display: inline-block;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 14px;
  font-size: 15px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s;
  cursor: default;
}
.hero-slide__tag span:hover {
  transform: translateX(6px) scale(1.02);
  background: var(--th-accent);
  box-shadow: 0 4px 16px rgba(224, 64, 29, 0.45);
}
.hero-slide__accent {
  margin-top: 16px;
  color: #ffd700;
  font-size: 17px;
  font-weight: 700;
  opacity: 0;
}
.hero-slide.is-active .hero-slide__accent.animate-in {
  animation: slideTagIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--tag-delay, 0.85s);
}
.hero-slide__content--align-center .hero-slide.is-active .hero-slide__title.animate-in {
  animation-name: slideTitleCenter;
}
@keyframes slideTitleIn {
  from {
    opacity: 0;
    transform: translateY(28px) rotateX(14deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}
@keyframes slideTitleCenter {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideTagIn {
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

/* Carousel controls — hidden until carousel hover */
.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.3s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
}
.hero-carousel:hover .hero-carousel__arrow {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.hero-carousel__arrow:hover {
  background: var(--th-accent);
  border-color: var(--th-accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(224, 64, 29, 0.5);
}
.hero-carousel__arrow--prev {
  left: 24px;
}
.hero-carousel__arrow--next {
  right: 24px;
}
.hero-carousel__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, width 0.3s;
}
.hero-carousel__dot:hover,
.hero-carousel__dot.is-active {
  background: var(--th-accent);
  border-color: var(--th-accent);
  transform: scale(1.2);
}
.hero-carousel__dot.is-active {
  width: 28px;
  border-radius: 6px;
}
.hero-carousel__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 9;
}
.hero-carousel__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--th-accent);
  animation: carouselProgress 7s linear infinite;
}
@keyframes carouselProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* ——— Hover cards & images ——— */
.hover-card {
  padding: 24px 16px;
  border-radius: 4px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    background 0.35s ease;
}
.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.bg-light .hover-card:hover,
.page-content-wrap.bg-light .hover-card:hover {
  background: #fff;
}
.hover-card__icon {
  transition: transform 0.4s ease, color 0.3s ease;
}
.hover-card:hover .hover-card__icon {
  transform: scale(1.15) rotate(-5deg);
  color: var(--th-accent);
}
.hover-card__icon .fa {
  transition: color 0.3s;
}
.hover-card--team .hover-card__avatar img {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  border: 4px solid transparent;
}
.hover-card--team:hover .hover-card__avatar img {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(224, 64, 29, 0.35);
  border-color: var(--th-accent);
}
.hover-card__link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, color 0.2s;
}
.hover-card:hover .hover-card__link {
  opacity: 1;
  transform: translateY(0);
}
.hover-image {
  overflow: hidden;
  border-radius: 4px;
}
.hover-image img {
  transition: transform 0.6s ease;
}
.hover-image:hover img {
  transform: scale(1.04);
}
.hover-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}
.hover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 64, 29, 0.35);
}
.hover-lift {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s;
}
.hover-lift:hover {
  transform: translateY(-4px);
  color: var(--th-accent) !important;
}
.list-links a {
  transition: padding-left 0.25s ease, color 0.25s ease;
}
.list-links a:hover {
  padding-left: 8px;
  color: var(--th-accent);
}
.form-control {
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:hover {
  border-color: #ccc;
}
.form-control:focus {
  border-color: var(--th-accent);
  box-shadow: 0 0 0 3px rgba(224, 64, 29, 0.15);
}

@media (max-width: 991px) {
  .site-logo {
    height: 40px;
    max-width: 200px;
  }
  .navigation.open {
    display: block !important;
  }
  :root {
    --carousel-height: 580px;
  }
  .hero-carousel__arrow {
    width: 44px;
    height: 44px;
  }
}

/* Mobile: stack overlay at bottom so center/left/right layouts stay visible */
@media (max-width: 767px) {
  :root {
    --carousel-height: 520px;
  }

  .hero-slide__overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.15) 100%
    ) !important;
  }

  .hero-slide__content,
  .hero-slide__content--align-right,
  .hero-slide__content--align-left,
  .hero-slide__content--align-center,
  .hero-slide__content--align-bottom {
    left: 12px !important;
    right: 12px !important;
    top: auto !important;
    bottom: 52px !important;
    transform: none !important;
    max-width: none !important;
    width: auto;
    max-height: 62%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
    padding-right: 4px;
  }

  .hero-slide__title {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero-slide__eyebrow {
    font-size: 10px;
    padding: 4px 8px;
    margin-bottom: 8px;
  }

  .hero-slide__tags {
    display: block !important;
    padding: 0;
  }

  .hero-slide__content--align-center .hero-slide__tags {
    display: block !important;
    justify-content: flex-start;
  }

  .hero-slide__tag {
    display: block !important;
    margin: 0 0 6px !important;
    opacity: 1;
    transform: none !important;
  }

  .hero-slide.is-active .hero-slide__tag.animate-in {
    animation: slideTagInMobile 0.45s ease forwards;
  }

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

  .hero-slide__tag span {
    font-size: 11px;
    padding: 5px 10px;
    display: block;
    width: fit-content;
    max-width: 100%;
  }

  .hero-slide__accent {
    font-size: 13px;
    margin-top: 8px;
  }

  .hero-carousel__dots {
    bottom: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --carousel-height: 460px;
  }

  .hero-slide__title {
    font-size: 18px;
  }
}
