/* Highlight Card
  --------------
   Single presentational card used inside Canvas Bootstrap columns.
*/

.highlight-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  background-color: var(--ra-white, #ffffff);
  border-radius: 0.625rem;
  padding: 2.1875rem 2.5rem;
  min-height: 12.5rem;
  height: 100%;
  min-width: 0;
}

.highlight-card__title {
  margin: 0;
  color: #333333;
  font-size: 1.3125rem;
  line-height: 1.1;
  font-weight: 300;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.highlight-card__percentage {
  color: #00cccc;
  font-weight: 300;
  margin-right: 0.15em;
}

.highlight-card__sticker {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  display: inline-block;
  background-color: var(--ra-accent-2, #0eab9e);
  color: var(--ra-white, #ffffff);
  border-radius: 0.125rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2)
}

.highlight-card--empty {
  border: 1px dashed var(--ra-muted, #6b7a86);
}

@media (max-width: 767.98px) {
  .highlight-card {
    padding: 2.1875rem 2.5rem;
  }

  .highlight-card__title {
    font-size: 1.5rem;
    line-height: 1.1;
  }
}
