/* Main Container */
.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  background-color: var(--banner-bg);
  /* Gradient from SCSS */
  position: relative;
  overflow: hidden;
}

/* Banner */
.cs-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  gap: 0; /* Layout handled by flex justify-between */
  position: relative;
  min-height: calc(100vh - var(--header-height, 0px));
  background-image: url('../assets/banner.png');
  background-image: image-set(
    url('../assets/banner.webp') type('image/webp'),
    url('../assets/banner.png') type('image/png')
  );
  background-size: cover;
  background-position: center;
  background-size: cover;
}

.cs-banner__left {
  max-width: fit-content; /* From SCSS .mainHeading width approx */
}

.cs-banner__text-group {
  width: fit-content;
}

.cs-banner__headline {
 font-family: "Host Grotesk";
  font-size: clamp(28px, calc(3.333vw + 16px), 80px);
  font-weight: 700;
  line-height: clamp(32px, calc(3.59vw + 19.08px), 88px);
  letter-spacing: clamp(-0.88px, calc(-0.0385vw - 0.142px), -0.28px);
  margin: 0;
  width: 100%;
  max-width: 720px;
  color: #fff;
}

.cs-banner__headline span {
   color: var(--Brand-Secondary, #0486FE);
}

.cs-banner__subhead {
  color: #FFF;
  font-family: Figtree;
  font-weight: 400;
  font-size: clamp(14px, calc(0.641vw + 11.69px), 24px);
  line-height: clamp(20px, calc(0.769vw + 17.23px), 32px);
  margin: clamp(12px, calc(3.077vw + 0.92px), 60px) 0;
}


.cs-banner__actions {
  display: flex;
  gap: 20px; /* From SCSS .buttonsContainer column-gap */
  align-items: flex-start;
  flex-wrap: wrap;
}

.cs-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-family: Figtree;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 12px clamp(16px, calc(0.833vw + 14px), 30px);
  max-height: 52px;
}

.cs-banner__btn--primary {
  background-color: #0486FE;
  color: #fff;
}

.cs-banner__btn--secondary {
  background-color: #fff;
  color: #002657;
}

@media (max-width: 1200px) {
.cs-banner__actions {
  gap: 15px; /* From SCSS .buttonsContainer column-gap */
}
}


@media (max-width: 1024px) {

.cs-banner__btn {
  max-height: 44px;
}
}

@media (max-width: 768px) {

  .cs-banner__actions {
  gap: 12px; /* From SCSS .buttonsContainer column-gap */
  align-items: center;
  justify-content: center;
}

.cs-banner {
  background-image: url('../assets/banner-mobile.png');
  background-image: image-set(
    url('../assets/banner-mobile.webp') type('image/webp'),
    url('../assets/banner-mobile.png') type('image/png')
  );
    align-items: start;
  justify-content: center;
  padding-top: 30px;
}

.cs-banner .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cs-banner__actions {
  flex-direction: column;
  width: 100%;
}

}



