/* Public integration shell for independently art-directed premium center pages. */
.pp-release-bar {
  position: relative;
  z-index: 10000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 8px clamp(14px, 3vw, 42px);
  color: #17212b;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(23, 33, 43, .14);
  box-shadow: 0 8px 26px rgba(23, 33, 43, .06);
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.2;
}

.pp-release-bar *,
.pp-release-bar *::before,
.pp-release-bar *::after { box-sizing: border-box; }

.pp-release-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.pp-release-brand svg { flex: 0 0 auto; }
.pp-release-brand em { color: #0e7490; font-style: normal; }

.pp-release-context {
  min-width: 0;
  overflow: hidden;
  color: #66727d;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pp-release-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
}

.pp-release-link,
.pp-release-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #17212b;
  background: #f3f6f7;
  border: 1px solid rgba(23, 33, 43, .13);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.pp-release-link:hover,
.pp-release-action:hover { background: #e7f4f6; border-color: rgba(14, 116, 144, .42); transform: translateY(-1px); }
.pp-release-action.is-fav,
.pp-release-action.is-cmp { color: #fff; background: #0e7490; border-color: #0e7490; }
.pp-release-link:focus-visible,
.pp-release-action:focus-visible,
.pp-release-brand:focus-visible { outline: 3px solid rgba(14, 116, 144, .38); outline-offset: 2px; }

@media (max-width: 920px) {
  .pp-release-bar { grid-template-columns: auto minmax(0, 1fr); gap: 10px; }
  .pp-release-context { text-align: right; }
  .pp-release-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }
}

@media (max-width: 520px) {
  .pp-release-bar { padding: 8px 10px; }
  .pp-release-context { font-size: 11px; }
  .pp-release-link,
  .pp-release-action { min-height: 32px; padding: 6px 10px; font-size: 12px; }
  .pp-release-actions .pp-release-optional { display: none; }
}

