.gph-service-banner {
  background-color: #FFFBEE;
  border: 1px solid #FCC871;
  border-left: 4px solid #FCC871;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  animation: gph-banner-slide-in 0.3s ease-out;
}

@keyframes gph-banner-slide-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gph-service-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
}

.gph-service-banner__icon {
  flex-shrink: 0;
  color: #E09600;
  margin-top: 2px;
}

.gph-service-banner__content {
  flex: 1;
  min-width: 0;
}

.gph-service-banner__title {
  display: block;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #734C00;
  margin-bottom: 4px;
}

.gph-service-banner__message {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #734C00;
  margin: 0;
}

.gph-service-banner__message + .gph-service-banner__message {
  margin-top: 2px;
}

.gph-service-banner__close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #734C00;
  border-radius: 4px;
  transition: background-color 0.15s ease;
  line-height: 0;
}

.gph-service-banner__close:hover {
  background-color: rgba(115, 76, 0, 0.1);
}

.gph-service-banner__close:focus-visible {
  outline: 2px solid #373E89;
  outline-offset: 2px;
}

.gph-service-banner--hidden {
  display: none;
}

/* Responsive */
@media (max-width: 640px) {
  .gph-service-banner__inner {
    padding: 12px 16px;
    gap: 10px;
  }

  .gph-service-banner__title {
    font-size: 0.9375rem;
  }

  .gph-service-banner__message {
    font-size: 0.8125rem;
  }
}
