.push-panel {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--brand-radius);
  background: linear-gradient(145deg, rgba(24, 40, 58, .8), rgba(18, 32, 49, .98));
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.push-panel-copy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.push-panel-copy strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
}

.push-panel-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.push-panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  background: rgba(212, 175, 55, .1);
  border: 1px solid rgba(212, 175, 55, .22);
  color: var(--gold-bright);
}

.push-panel-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  color: #07131c;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.push-panel-button:hover,
.push-panel-button:focus-visible {
  border-color: var(--blue-bright);
  background: var(--blue-bright);
}

@media (max-width: 700px) {
  .push-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .push-panel-button {
    width: 100%;
  }
}
