body.page-courseware .cw-main {
  max-width: 1040px;
}

/* List layout */
body.page-courseware .cw-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Item card */
body.page-courseware .cw-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;

  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.1rem 1.25rem;

  text-decoration: none;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.06);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

body.page-courseware .cw-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
}

body.page-courseware .cw-left {
  min-width: 0;
}

body.page-courseware .cw-title {
  font-size: 1.05rem;
  font-weight: 650;
  color: #111827;
  line-height: 1.35;
}

body.page-courseware .cw-desc {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.55;
}

/* Right badge */
body.page-courseware .cw-right {
  flex: 0 0 auto;
  font-size: 0.85rem;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

/* Mobile */
@media (max-width: 640px) {
  body.page-courseware .cw-item {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-courseware .cw-right {
    margin-top: 0.25rem;
  }
}