.completion-thumb {
  display: block;
  width: 100%;
  height: auto;
  object-fit: fill;
  border-radius: 0.5rem;

  background: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  box-shadow: 0 2px 8px rgba(var(--shadow-rgb), 0.2);
}

/* ─────── Highlight Grid (Top 3 / Bottom 3) ─────── */
.highlight-grid {
  display: grid;
  /* make each column 180px wide instead of 120px */
  grid-template-columns: repeat(3, 180px);
  gap: 1rem;              /* a bit more breathing room */
  margin-bottom: 1rem;
  justify-content: start; /* left-align, don't stretch */
}

/* ─────── Highlight Card Styling ─────── */
.highlight-card {
  position: relative;
  width: 100%;               /* fills that 180px column */
  background-color: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}

/* badge in the corner */
.highlight-card .badge {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  font-size: 0.75rem;
}

/* ─ image fixed at 120×120 ─ */
.highlight-card img {
  width: 120px;
  height: 120px;
  object-fit: fill;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
}

/* ─ title truncated with ellipsis ─ */
.highlight-card h6 {
  margin: 0;
  font-size: 0.8rem;

  display: block;           /* ensure block layout */
  width: 100%;              /* fill card width */

  white-space: nowrap;      /* single line only */
  overflow: hidden;         /* clip overflow */
  text-overflow: ellipsis;  /* show “…” */
}

/* ─────── Completion View Grid ─────── */
.completion-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.completion-item {
    background: var(--card-bg-color);
    color: var(--card-text-color);
    border: 1px solid var(--card-border-color);
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,.08);
}

#completion-grid .tierdrop-card {
  border-radius: 0;  /* matches your original style */
  margin-bottom: 0.5rem;
}
#completion-grid .tierdrop-card .row.g-0 {
  align-items: center;
}
#completion-grid .tierdrop-card .col-auto img {
  width: 60px;
  height: 60px;
  object-fit: fill;
}
