/* diaspora.ro — practical information hub banner */
.diaspora-info-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 24px;
  padding: 20px 24px;
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 22px;
  overflow: hidden;
  color: #102a52;
  text-decoration: none;
  background:
    radial-gradient(circle at 2% 0%, rgba(255,255,255,.88), transparent 34%),
    linear-gradient(115deg, #eaf4ff 0%, #eef5ff 53%, #f4efff 100%);
  box-shadow: 0 12px 30px rgba(37, 78, 140, .10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.diaspora-info-banner::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  right: 13%;
  top: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  pointer-events: none;
}
.diaspora-info-banner:hover,
.diaspora-info-banner:focus-visible {
  border-color: rgba(37, 99, 235, .46);
  box-shadow: 0 16px 34px rgba(37, 78, 140, .16);
  transform: translateY(-2px);
  outline: none;
}
.diaspora-info-banner__copy,
.diaspora-info-banner__cta { position: relative; z-index: 1; }
.diaspora-info-banner__copy { min-width: 0; text-align: center; }
.diaspora-info-banner__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #3569b7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.diaspora-info-banner__title {
  display: block;
  color: #6d28d9;
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  text-align: center;
}
.diaspora-info-banner__title-main { color: #0f172a; }
.diaspora-info-banner__title-accent { color: #6d28d9; }
.diaspora-info-banner__text {
  display: block;
  max-width: 760px;
  margin-top: 7px;
  color: #536b8b;
  font-size: 12px;
  line-height: 1.45;
}
.diaspora-info-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 12px;
  color: #fff;
  background: #2457a6;
  box-shadow: 0 8px 16px rgba(36, 87, 166, .20);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.diaspora-info-banner__cta b { margin-left: 8px; font-size: 18px; line-height: 1; }
html[data-theme="dark"] .diaspora-info-banner {
  border-color: rgba(147, 197, 253, .28);
  color: #e6f0ff;
  background: linear-gradient(115deg, #142b4b 0%, #172e52 54%, #2b2352 100%);
}
html[data-theme="dark"] .diaspora-info-banner__eyebrow { color: #a8c8ff; }
html[data-theme="dark"] .diaspora-info-banner__title { color: #f4f8ff; }
html[data-theme="dark"] .diaspora-info-banner__title-main { color: #f4f8ff; }
html[data-theme="dark"] .diaspora-info-banner__title-accent { color: #c4b5fd; }
html[data-theme="dark"] .diaspora-info-banner__text { color: #c5d4e9; }
@media (max-width: 640px) {
  .diaspora-info-banner {
    display: block;
    margin: 0 0 20px;
    padding: 18px 16px 16px;
    border-radius: 18px;
  }
  .diaspora-info-banner__title { font-size: 21px; }
  .diaspora-info-banner__text { font-size: 11px; }
  .diaspora-info-banner__cta { width: 100%; margin-top: 14px; }
}
