.course-listing {
  display: grid;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "course-date course-detail";
  align-items: start;
  justify-items: start;
  align-content: center;
  justify-content: start;
  margin-bottom: 24px;
}

.course-listing div {
  padding: 0 0.3rem;
}

.course-date {
  grid-area: course-date;
  position: relative;
}

.course-detail {
  grid-area: course-detail;
}

.course-detail h4 {
  padding: 0;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
}

.course-links-by-keyword ul li a {
  box-shadow: none;
  padding: 1%;
  text-decoration: none;
}

.course-links-by-keyword ul {
  margin: 0 auto !important;
}

.course-links-by-keyword {
  list-style-type: none;
  cursor: pointer;
}

.entryDate {
  line-height: 1;
  padding: 0 !important;
  width: 80px;
}

.entryDate span {
  display: block;
  text-align: center;
}

.postMonth {
  text-transform: capitalize;
  font-size: 0.9em;
  padding: 0.4em;
  background-color: #cc0000;
  font-weight: 400;
  color: #fff;
}

.postDay {
  font-size: 2.1em;
  padding-top: 0.1em;
}

.postYear {
  color: #666;
  font-size: 0.6em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

/* Make the badge float in the top right corner of the button */
.indicator-badge {
  /* make a silver gradient */
  background: linear-gradient(to bottom, #eee, #cccccc);
  border-radius: 100px;
  padding: 5px 7px !important;
  height: 30px;
  width: 30px;
  font-size: 13px;
  position: absolute;
  top: -12px;
  left: -12px;
}

.fa-forward, .fa-eye {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  padding: 0 0 !important;
}

.fa-forward {
  color: #6f7d1c;
  font-style: normal;
  font-size: 14px;
}

.fa-eye {
  color: #4156a1;
  font-style: normal;
  font-size: 14px;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: transparent !important;
  opacity: .5
}