@charset "UTF-8";
/**
 * SAF-372 — Styles for [dash_latest_updates].
 *
 * Independent from the shared assets/css/educator-dashboard.css and every
 * other component in this module — everything here is scoped under
 * .edash-eui-wrapper so it can't leak onto anything else.
 *
 * No build tool exists in this repo, so this .css and its .scss twin must
 * be kept byte-identical on every edit.
 */
.edash-eui-wrapper {
  width: 100%;
}

.edash-eui-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.edash-eui-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 56px 20px 20px;
  background: #fff;
  border: 1px solid #E4E7EC;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.edash-eui-card:hover {
  border-color: #8BC251;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Optional scroll-reveal: assets/js/updates-insights.js adds
   --observe at runtime (feature-detected), so cards stay fully visible
   with no JS at all. */
.edash-eui-card--observe {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.edash-eui-card--observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.edash-eui-card-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 80px;
  overflow: hidden;
  box-sizing: border-box;
}

.edash-eui-card-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.edash-eui-card-icon-emoji {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.edash-eui-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.edash-eui-card-title {
  color: #434A4F;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.edash-eui-card-desc {
  color: #434A4F;
  font-size: 16px;
  line-height: 1.5;
}

.edash-eui-card-desc strong,
.edash-eui-card-desc b {
  font-weight: 700;
  color: #1D2939;
}

.edash-eui-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-shrink: 0;
  color: #98A2B3;
}

@media (max-width: 600px) {
  .edash-eui-card {
    gap: 14px;
    padding: 16px 44px 16px 16px;
  }
  .edash-eui-card-icon {
    width: 64px;
    height: 84px;
    border-radius: 12px;
  }
  .edash-eui-card-icon-emoji {
    font-size: 28px;
  }
  .edash-eui-card-title {
    font-size: 17px;
  }
  .edash-eui-card-desc {
    font-size: 14px;
  }
}/*# sourceMappingURL=updates-insights.css.map */