.release-update {
  position: relative;
  z-index: 45;
  min-height: 50px;
  padding: 8px clamp(12px, 2vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: color-mix(in oklch, var(--amber) 12%, var(--bg-2));
  border-bottom: 1px solid color-mix(in oklch, var(--amber) 38%, var(--line));
  color: var(--ink);
}

.release-update__message {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.release-update__message > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.release-update__message strong,
.release-update__message small {
  overflow-wrap: anywhere;
}

.release-update__message strong {
  font-size: 12px;
  line-height: 1.35;
}

.release-update__message small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.release-update__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--amber);
  background: color-mix(in oklch, var(--amber) 14%, transparent);
  border: 1px solid color-mix(in oklch, var(--amber) 34%, transparent);
}

.release-update__action {
  min-height: 34px;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .release-update {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .release-update__action {
    width: 100%;
  }
}
