/* Step 26: Kuban24 local news widget after weather */
.nikmed-kuban24-widget {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 12%, rgba(14, 165, 233, 0.18), transparent 36%),
    radial-gradient(circle at 88% 0%, rgba(59, 130, 246, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 58px -40px rgba(15, 23, 42, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}
.nikmed-kuban24-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.48), transparent 44%, rgba(255,255,255,.24));
}
.nikmed-kuban24-widget__head,
.nikmed-kuban24-widget__status,
.nikmed-kuban24-widget__list {
  position: relative;
  z-index: 1;
}
.nikmed-kuban24-widget__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.nikmed-kuban24-widget__eyebrow {
  margin: 0 0 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0284c7;
}
.nikmed-kuban24-widget__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 900;
  color: #0f172a;
}
.nikmed-kuban24-widget__source {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.72);
  background: rgba(240, 249, 255, 0.78);
  color: #0369a1;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.nikmed-kuban24-widget__source:hover {
  background: rgba(224, 242, 254, 0.94);
  transform: translateY(-1px);
}
.nikmed-kuban24-widget__status {
  margin: 12px 0 14px;
  font-size: 11px;
  font-weight: 750;
  color: #64748b;
}
.nikmed-kuban24-widget__list {
  display: grid;
  gap: 10px;
}
.nikmed-kuban24-widget__item {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 14px 34px -30px rgba(15, 23, 42, 0.42), inset 0 1px 0 rgba(255,255,255,.75);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.nikmed-kuban24-widget__item:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.62);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 42px -32px rgba(14, 116, 144, 0.48), inset 0 1px 0 rgba(255,255,255,.86);
}
.nikmed-kuban24-widget__item strong {
  display: block;
  min-width: 0;
  font-size: 13px;
  line-height: 1.28;
  font-weight: 900;
  color: #0f172a;
}
.nikmed-kuban24-widget__item p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
  color: #64748b;
}
.nikmed-kuban24-widget__badge {
  justify-self: start;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(219, 234, 254, .88);
  color: #0369a1;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nikmed-kuban24-widget__meta {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
}
.nikmed-kuban24-widget__skeleton {
  height: 92px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(241,245,249,.75), rgba(255,255,255,.9), rgba(241,245,249,.75));
  background-size: 220% 100%;
  animation: nikmedKuban24Skeleton 1.25s ease-in-out infinite;
}
.nikmed-kuban24-widget__empty {
  padding: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(125, 211, 252, .78);
  background: rgba(240, 249, 255, .72);
  color: #475569;
}
.nikmed-kuban24-widget__empty span { font-size: 24px; }
.nikmed-kuban24-widget__empty strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
}
.nikmed-kuban24-widget__empty p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.45;
}
@keyframes nikmedKuban24Skeleton {
  from { background-position: 100% 0; }
  to { background-position: -120% 0; }
}
@media (max-width: 760px) {
  .nikmed-kuban24-widget { padding: 16px; }
  .nikmed-kuban24-widget__head { flex-direction: column; }
}
