@charset "UTF-8";
/* Terras homepage hero — compiled from css/_hero.scss. Keep in sync by hand. */
.terras-hero {
  max-width: 1350px;
  margin: 20px auto 0;
  display: flex;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .terras-hero {
    flex-direction: column;
    gap: 10px;
  }
}
.terras-hero__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .terras-hero__col {
    flex: 0 0 auto;
    width: 100%;
    gap: 10px;
  }
}
.terras-hero__intro {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  background: #f2f2f2;
  padding: 34px 36px;
}
@media (max-width: 767px) {
  .terras-hero__intro {
    flex: 0 0 auto;
    padding: 20px 22px;
  }
}
.terras-hero__heading {
  flex: 1 1 auto;
  margin: 0;
  color: #333;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(26px, 3.2vw, 46px);
}
.terras-hero__heading span {
  font-weight: 800;
}
.terras-hero__intro-img {
  flex: 0 0 auto;
  align-self: flex-end;
  display: block;
  width: auto;
  max-width: 130px;
  height: auto;
}
@media (max-width: 767px) {
  .terras-hero__intro-img {
    max-width: 90px;
  }
}
.terras-hero__cards {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 767px) {
  .terras-hero__cards {
    gap: 10px;
  }
}
.terras-hero__card {
  position: relative;
  flex: 1 1 0;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .terras-hero__card {
    min-height: 180px;
  }
}
.terras-hero__card-label {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.75);
  color: #333333;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .terras-hero__card-label {
    bottom: 10px;
    padding: 6px 10px;
    font-size: 13px;
  }
}
.terras-hero__carousel {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .terras-hero__carousel {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .terras-hero__carousel .terras-hero__track {
    position: absolute;
    inset: 0;
  }
}
.terras-hero__carousel:focus {
  outline: none;
}
.terras-hero__track {
  display: flex;
  height: 100%;
  transition: transform var(--terras-transition-speed, 0.4s) ease;
}
@media (max-width: 767px) {
  .terras-hero__track {
    height: auto;
  }
}
.terras-hero__slide {
  flex: 0 0 100%;
}
.terras-hero__slide-link {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
}
@media (max-width: 767px) {
  .terras-hero__slide-link {
    height: auto;
  }
}
.terras-hero__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .terras-hero__slide-img {
    height: auto;
    aspect-ratio: 16/10;
  }
}
.terras-hero__slide-cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .terras-hero__slide-cta {
    right: 10px;
    bottom: 10px;
  }
}
.terras-hero__slide-badge {
  display: inline-block;
  background: #2b6ca3;
  color: #fff;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.1;
  padding: 8px 18px;
}
@media (max-width: 767px) {
  .terras-hero__slide-badge {
    padding: 6px 12px;
  }
}
.terras-hero__slide-btn {
  display: inline-block;
  background: #fff;
  color: #000 !important;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.1;
  padding: 12px 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.terras-hero__slide-btn:hover {
  background: #f0f0f0;
  color: #000;
}
@media (max-width: 767px) {
  .terras-hero__slide-btn {
    padding: 8px 14px;
  }
}
.terras-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.terras-hero__arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.terras-hero__arrow[disabled] {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.terras-hero__arrow--prev {
  left: 10px;
}
.terras-hero__arrow--next {
  right: 10px;
}
