/* ============================================================
   BuddieSpace — Awards Section
   Figma node: 1:927
   ============================================================ */

/* ---------- Section wrapper ---------- */
.bs-awards {
  position: relative;
  overflow: hidden;
  background: #ffffff; /* white strip at bottom */
}

/* ---------- Navy background panel ---------- */
.bs-awards__panel {
  position: relative;
  background: #21254a;
  border-top-right-radius: clamp(60px, 11.18vw, 161px);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 60.7vw, 874px);
  padding: clamp(48px, 11.5vw, 166px) clamp(24px, 3.54vw, 51px)
           clamp(48px, 6.9vw, 100px);
}

/* ---------- Inner layout ---------- */
.bs-awards__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: clamp(32px, 4.4vw, 64px);
}

/* ---------- Left column (text) ---------- */
.bs-awards__content {
  flex: 0 0 auto;
  width: min(51.6%, 742px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.15vw, 31px);
}

/* ---------- Headline ---------- */
.bs-awards__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.bs-awards__heading-line-white {
  display: block;
  color: #ffffff;
  font-size: clamp(28px, 5.2vw, 75px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.bs-awards__heading-line-green {
  display: block;
  color: #b0f288;
  font-size: clamp(44px, 8.83vw, 127px);
  line-height: 0.886;
  letter-spacing: -0.02em;
}

/* ---------- Body text ---------- */
.bs-awards__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 2.29vw, 33px);
  line-height: 1.45;
  color: #ffffff;
  margin: 0;
  max-width: 58ch;
}

/* ---------- Right column (image) ---------- */
.bs-awards__media {
  flex: 0 0 auto;
  width: min(44%, 636px);
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Green circle backdrop */
.bs-awards__circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #b0f288;
  opacity: 1;
  /* Positioned to bleed off right/top like Figma */
  right: -12%;
  top: -6%;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  z-index: 0;
}

.bs-awards__circle-bg {
  position: absolute;
  top: -6%;
  right: -12%;
  width: 110%;
  height: 110%;
  background: #b0f288;
  border-radius: 50%;
  z-index: 0;
}

/* Trophy image container */
.bs-awards__trophy-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 914 / 795;
  border-radius: 50%;
  overflow: hidden;
}

.bs-awards__trophy {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Tablet — max 1023px
   ============================================================ */
@media (max-width: 1023px) {
  .bs-awards__panel {
    padding: 60px 32px 60px;
    border-top-right-radius: clamp(40px, 8vw, 100px);
  }

  .bs-awards__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .bs-awards__content {
    width: 100%;
    max-width: 640px;
  }

  .bs-awards__media {
    width: min(80%, 480px);
    align-self: center;
    margin: 0 auto;
  }
}

/* ============================================================
   Mobile — max 599px
   ============================================================ */
@media (max-width: 599px) {
  .bs-awards__panel {
    padding: 48px 20px 48px;
    border-top-right-radius: 40px;
  }

  .bs-awards__heading-line-white {
    font-size: clamp(24px, 8.5vw, 40px);
  }

  .bs-awards__heading-line-green {
    font-size: clamp(38px, 14vw, 64px);
  }

  .bs-awards__body {
    font-size: clamp(14px, 4vw, 18px);
  }

  .bs-awards__media {
    width: 90%;
  }
}
