/* --- Bannière discrète --- */
.intranet-banner {
  width: 100%;
  background: #e70a0a;
  border-bottom: 1px solid #d3e3f5;
  padding: 8px 16px;
  font-size: 14px;
  color: #f6f8f9;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  z-index: 1000;
}

.intranet-banner .icon {
  font-size: 18px;
  flex-shrink: 0;
}

.intranet-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}

.intranet-banner-title {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intranet-banner-message {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 40px;
  line-height: 1.4;
}

/* ensure banner does not cover fixed header (adjust if needed) */
body.has-intranet-banner header, body.has-intranet-banner .site-header {
  margin-top: 44px;
}
