/**
 * Bilgi / uyarı kartı — cards/info_alert_card/card.css
 */

.pb-info-alert-card {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: calc(.875rem + 1px);
  line-height: 1.55;
}
.pb-info-alert-card__title {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pb-info-alert-card__body {
  margin: 0;
}
.pb-info-alert-card__text {
  margin: 0;
}
.pb-info-alert-card__text + .pb-info-alert-card__text {
  margin-top: .45rem;
}
.pb-info-alert-card--site {
  background: var(--primary-surface-10);
  border-color: var(--primary-surface-18);
  color: color-mix(in srgb, var(--primary) 72%, var(--text));
}
.pb-info-alert-card--site .pb-info-alert-card__title {
  color: var(--secondary);
}
.pb-info-alert-card--info {
  background: #e8f4fc;
  border-color: #b8d9f0;
  color: #1a4f73;
}
.pb-info-alert-card--info .pb-info-alert-card__title {
  color: #1a5f8a;
}
.pb-info-alert-card--danger {
  background: #fdecec;
  border-color: #f5c2c2;
  color: #7a2424;
}
.pb-info-alert-card--danger .pb-info-alert-card__title {
  color: #9b2c2c;
}
.pb-info-alert-card--warning {
  background: #fff8e6;
  border-color: #f0dfa0;
  color: #6b5312;
}
.pb-info-alert-card--warning .pb-info-alert-card__title {
  color: #8a6d1a;
}
.pb-info-alert-card--safe {
  background: #e8f7ef;
  border-color: #b8e6cb;
  color: #1d5c36;
}
.pb-info-alert-card--safe .pb-info-alert-card__title {
  color: #1d6b3a;
}
