.course-content{
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
}
.course-card {
    flex: 1 1 30rem;
  background: #fff;
  border: 0.1rem solid #eee;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: .3s;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.course-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.course-name {
  margin: 10px 0 5px;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-heading);
}

.course-desc {
  color: #666;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--gray-heading);
  height: 3rem;
}

.course-link {
  text-decoration: none;
  font-weight: 600;
  color: #0a70ff;
}
