/* ============================================================
   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(120px, 22vw, 360px);
  display: flex;
  align-items: center;
  padding: clamp(32px, 4.17vw, 60px) clamp(24px, 3.54vw, 51px)
           clamp(32px, 4.17vw, 60px);
}

/* ---------- 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);
  text-align: center;
  align-items: center;
}

/* ---------- 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, 3.75vw, 54px);
  line-height: 1.3;
  letter-spacing: 0;
}

.bs-awards__heading-line-green {
  display: block;
  color: #b0f288;
  font-size: clamp(38px, 4.44vw, 64px);
  line-height: 1.2;
  letter-spacing: 0;
}

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

/* ---------- Right column (image) ---------- */
.bs-awards__media {
  flex: 0 0 auto;
  width: min(48%, 660px);
  position: relative;
  align-self: stretch;
}

/* Green circle — only one to position, image circle lives inside */
.bs-awards__circle-bg {
  position: absolute;
  width: clamp(380px, 50vw, 670px);
  aspect-ratio: 1 / 1;
  background: #b0f288;
  border-radius: 50%;
  top: 0;
  right: -5%;
  z-index: 0;
}

/* Trophy image circle — sits inside green circle, shifted slightly down */
.bs-awards__trophy-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  top: 8%;
  left: 0;
  z-index: 1;
}

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

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

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

  .bs-awards__content {
    width: 100%;
    max-width: 640px;
    text-align: center;
    align-items: center;
  }

  .bs-awards__media {
    display: none;
  }

  .bs-awards__circle-bg {
    display: none;
  }
}

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

  .bs-awards__heading-line-white {
    font-size: clamp(22px, 7vw, 36px);
  }

  .bs-awards__heading-line-green {
    font-size: clamp(30px, 10vw, 48px);
  }

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