/* The Entourage – Urgency Box */

.te-urgency,
.te-urgency * {
  box-sizing: border-box;
}

.te-urgency {
  width: 100%;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.te-urgency__pill {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.te-urgency__bold {
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: 0.005em;
}

.te-urgency__desc {
  font-weight: 400;
  line-height: 1.4;
}

/* Older-browser fallback when color-mix() isn't supported: the pill
   just uses the base color at full opacity instead of being invisible. */
@supports not (background: color-mix(in srgb, #000 50%, transparent)) {
  .te-urgency__pill {
    background: rgba(217, 217, 217, 0.15) !important;
  }
}
