/* ─── ISO 14001 Page — New Standard Banner ──────────────────────────── */

/* Entry animation */
@keyframes bannerSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Arrow pulse */
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}

/* NEW pill breathing */
@keyframes pillBreath {
  0%   { box-shadow: 0 0 0 0   rgba(237, 28, 36, 0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(237, 28, 36, 0); }
  100% { box-shadow: 0 0 0 0   rgba(237, 28, 36, 0); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .new-standard-banner,
  .new-standard-banner__arrow,
  .new-standard-banner__pill {
    animation: none !important;
    transition: none !important;
  }
}

/* Banner wrapper — full-width <a> */
.new-standard-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #f4f4f4;
  border-left: 3px solid #ED1C24;
  border-radius: 4px;
  padding: 14px 24px;
  margin-bottom: 24px;
  text-decoration: none;
  transition: background 0.25s, border-left-width 0.25s, box-shadow 0.25s;

  /* slide-down on load */
  animation: bannerSlideDown 400ms ease-out 200ms both;
}

.new-standard-banner:hover {
  background: #ffffff;
  border-left-width: 5px;
  box-shadow: 0 4px 12px rgba(237, 28, 36, 0.08);
}

.new-standard-banner:focus-visible {
  outline: 2px solid #ED1C24;
  outline-offset: 2px;
}

/* Left cluster: pill + headline + subtext */
.new-standard-banner__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

/* NEW pill */
.new-standard-banner__pill {
  flex-shrink: 0;
  background: #ED1C24;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 10pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 20px;
  line-height: 1.6;
  animation: pillBreath 2s infinite;
}

/* Text block */
.new-standard-banner__text {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.new-standard-banner__headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16pt;
  color: #2A2E3A;
  line-height: 1.2;
  white-space: nowrap;
}

.new-standard-banner__sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14pt;
  color: #5a6478;
  line-height: 1.2;
}

/* CTA on right */
.new-standard-banner__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13pt;
  color: #ED1C24;
  white-space: nowrap;
}

.new-standard-banner__arrow {
  display: inline-block;
  animation: arrowPulse 1.8s ease-in-out infinite;
}

.new-standard-banner:hover .new-standard-banner__arrow {
  animation: none;
  transform: translateX(6px);
  transition: transform 0.25s;
}

/* ─── Mobile (<768px) ────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .new-standard-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 16px;
    gap: 10px;
  }

  .new-standard-banner__left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .new-standard-banner__text {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .new-standard-banner__headline {
    font-size: 14pt;
    white-space: normal;
  }

  .new-standard-banner__cta {
    font-size: 13pt;
  }
}
