/* paladien-banner.css – in your devpack CSS */

.pal-banner {
  background: #e3e7ea;          /* Default: Fern Gray vibe */
  color: #1e252a;               /* Forged Charcoal */
  padding: 0.75rem 1.25rem;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;             /* helps shimmer look clean at edges */
}

.pal-banner__inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.pal-banner__label {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.90rem;
  color: #8ba6c5;               /* Frost Blue-ish accent */
}

.pal-banner__text {
  font-weight: 500;
  font-size: 1.0rem;
}

/* === Tone variants === */

/* Fern: soft neutral, default */
.pal-banner--fern {
  background: #8C957C;
  color: #1e252a;
}

/* Frost: cooler blue background */
.pal-banner--frost {
  background: #dde7f2;
  color: #4c5a73;
}

/* Charcoal: dark, high-contrast */
.pal-banner--charcoal {
  background: #1E1F22;
  color: #f5f6f7;
}

/* === Paladien shimmer variant === */

.pal-banner--shimmer {
  /* Use a Paladien-ish metallic gradient – tweak colors to exact hexes from your guide */
  background: linear-gradient(
    90deg,
    #1E1F22,   /* Forged Charcoal-ish */
    #8C957C,   /* Fern Gray / Brushed Silver */
    #4C5A73,   /* Frost Blue */
    #e3e7ea,
    #1e252a
  );
  background-size: 200% 100%;
  animation: palBannerShimmer 6s ease-in-out infinite;
  color: #ffffff;
}

@keyframes palBannerShimmer {
  0% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}