:root  > * {
  --md-primary-fg-color:#20192a;
  --md-accent-fg-color: #fdc142;
  --md-footer-bg-color: #20192a;
  --md-footer-fg-color: #fdc142;
}

.md-header__title {
  font-size: medium;
}

.md-typeset h1 {
  font-weight: bold;
  color: #20192a;
}

.md-typeset p {
  padding-bottom: 1rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.course-card {
  background-color: #20192a;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 200px;
}

.course-card a {
  color: white;
  text-decoration: none;
  display: block;
}

.course-card h2 {
  font-weight: 600;
  font-size: 1rem;
  color: #fdc142;
  margin-top: 0px;
  padding-top: 0px;
  margin-bottom: 10px;
}

.course-card p {
  color: #ffffffcc;
  margin-bottom: 0;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

[data-md-component="search"] {
  display: none !important;
}