.release-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(126, 207, 154, 0.65);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
  gap: 12px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.release-banner-content {
  display: flex;
  gap: 12px;
  flex: 1;
  align-items: center;
  min-width: 0;
}

.release-banner-image {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  display: none;
}

.release-banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.release-banner-header {
  flex: 1;
  min-width: 0;
}

.release-banner-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-bg-darkest);
  display: inline;
}

.release-banner-body {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-bg-darkest);
  opacity: 0.9;
  display: inline;
  margin-left: 4px;
}

.release-banner-link {
  font-size: 0.8rem;
  color: var(--color-bg-darkest);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.release-banner-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.release-banner-dismiss {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 8px;
  color: var(--color-bg-darkest);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.release-banner-dismiss:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .release-banner {
    padding: 10px 16px;
  }

  .release-banner-title {
    font-size: 0.85rem;
  }

  .release-banner-body {
    font-size: 0.75rem;
  }

  .release-banner-link {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .release-banner-body {
    display: none;
  }
}
