.main-content {
  margin: 60px auto;
  /* background-color: orange; */
}
.course-title-name {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}
.course-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-gap: 20px;
}
.course-card {
  display: block;
  width: 100%;
  /* height: 300px; */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-color: skyblue;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0px;
  border-radius: 10px 10px 0 0;
}
.card-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-name {
  font-size: 18px;
  font-weight: bold;
}
.card-desc {
  line-height: 18px;
  font-size: 14px;
  color: #4d4d4d;
}
.card-source {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.card-status {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.card-status .status {
  color: #008cfe;
}
