.cf-my-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .cf-my-courses-grid {
    grid-template-columns: 1fr;
  }
}
.cf-course-card {
  text-align: center;
  padding: 10px;
}
.cf-course-thumb {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.cf-course-title {
  font-size: 0.9rem;
  margin: 8px 0;
  text-align: left;
}
.cf-course-title a {
  color: #154957;
  text-decoration: none;
}
.cf-course-progress {
  margin: 8px 0;
}
.cf-progress-bar {
  background: #e1e1e1;
  border-radius: 4px;
  overflow: hidden;
  height: 8px;
}
.cf-progress-fill {
  background: #12980B;
  height: 100%;
  width: 0;
}
.cf-progress-text {
  font-size: 0.75rem;
  margin-top: 4px;
  text-align: left;
  color: #333;
}
.cf-course-button {
  display: inline-block;
  background: #154957;
  color: #ffffff !important;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: 6px;
}
.cf-course-button:hover {
  color: #ffffff !important;
  background: #2cd5c4;
}
.cf-progress-bar { width:100%; background:#eee; height:8px; border-radius:4px; margin-bottom:16px; }
.cf-progress { height:8px; background:#0073aa; border-radius:4px; }
.cf-nav, .cf-nav ul { list-style:none; padding:0; }
.cf-card { border:1px solid #ddd; padding:10px; border-radius:4px; }
.cf-card h4 { margin:10px 0; }
.cf-icon { width:16px; vertical-align:middle; margin-right:4px; }
.cf-lessons-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:24px; }
@media(max-width:768px){ .cf-lessons-grid { grid-template-columns:1fr; } }