.rodda-hero-wrap {
  width: 100%;
  max-width: 1920px;
}

.rodda-hero {
  position: relative;
  height: var(--wedev-hero-height, 760px);
  border-radius: 24px;
  overflow: hidden;

}

.rodda-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
}

.rodda-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center right;
}

.rodda-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(90deg, rgba(0,63,54,0) 0%, rgba(0,63,54,.69) 69%);
}

.rodda-content {
  position: absolute;
  left: 54px;
  bottom: 40px;
  z-index: 2;
  max-width: 740px;
  color: #fff;
}

.rodda-content.is-centered {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}



.rodda-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 106px;
}

.rodda-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.rodda-cta .btn-solid {
  background: #004036;
  color: #fff;
}

.rodda-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.rodda-cta .btn-ghost span {
  margin-left: 8px;
}

.rodda-points {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.rodda-points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #e8f3ee;
}

.rodda-points li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c9ecd8;
  color: #005e50;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rodda-dots {
  position: absolute;
  right: 100px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rodda-dots button:hover{
  background: #c9ecd8;
}

.rodda-dots button {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: #92d4b0;
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.rodda-dots button.is-on {
  width: 44px;
  background: #004036;
}

@media (max-width: 1024px) {
  .rodda-hero {
    height: 500px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .rodda-content {
    left: 34px;
    bottom: 26px;
    max-width: 500px;
  }

  .rodda-content.is-centered {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .rodda-content h1 {
    font-size: 54px;
  }

  .rodda-content p {
    font-size: 16px;
  }

  .rodda-cta {
    margin-bottom: 72px;
  }

  .rodda-points {
    gap: 14px;
    flex-wrap: wrap;
  }

  .rodda-points li {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .rodda-hero {
    height: 430px;
    border-radius: 18px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .rodda-overlay {
    background: linear-gradient(180deg, rgba(14, 74, 64, 0.64), rgba(14, 74, 64, 0.35));
  }

  .rodda-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }

  .rodda-content.is-centered {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .rodda-content h1 {
    font-size: 40px;
  }

  .rodda-content p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .rodda-cta {
    margin-bottom: 16px;
    gap: 8px;
  }

  .rodda-cta .btn {
    height: 40px;
    padding: 12px 22px 10px 22px;
    font-size: 13px;
  }

  .rodda-points {
    display: none;
  }

  .rodda-dots {
    right: 18px;
    bottom: 14px;
  }
}



