.edprav-sp {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  width: 340px;
  max-width: calc(100vw - 40px);
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e6e8ec;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(20, 30, 60, 0.16);
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .45s ease;
}
.edprav-sp[hidden] { display: none; }
.edprav-sp--visible { transform: translateX(0); opacity: 1; }

.edprav-sp__close {
  position: absolute; top: 8px; right: 10px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 22px; line-height: 1; color: #9aa1ad;
}
.edprav-sp__close:hover { color: #51565f; }

.edprav-sp__media { flex: 0 0 auto; }
.edprav-sp__img { width: 56px; height: 56px; object-fit: contain; border-radius: 10px; }
.edprav-sp__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 10px;
  background: #e8f1fd; color: #1f6fd6;
}

.edprav-sp__body { flex: 1; min-width: 0; }
.edprav-sp__title { margin: 0 18px 4px 0; font-size: 15px; font-weight: 600; line-height: 1.35; color: #1a1f29; }
.edprav-sp__subtitle { margin: 0 0 8px; font-size: 13px; line-height: 1.45; color: #5b626d; }
.edprav-sp__meta { margin: 0 0 10px; font-size: 12px; color: #8a9099; }
.edprav-sp__btn {
  display: inline-block; width: 100%; box-sizing: border-box;
  text-align: center; text-decoration: none;
  background: #1f6fd6; color: #fff;
  font-size: 14px; font-weight: 600; padding: 10px 14px; border-radius: 9px;
}
.edprav-sp__btn:hover { background: #1a5fb8; }

@media (max-width: 560px) {
  .edprav-sp {
    top: auto; bottom: 16px; right: 16px; left: 16px;
    width: auto; max-width: none;
    transform: translateY(140%);
  }
  .edprav-sp--visible { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .edprav-sp { transition: opacity .3s ease; transform: none; }
}
