.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, #f7f7f7, #ebebeb);
  border-radius: 100px;
  padding: 5px 6px !important;
  height: 30px;
  width: 30px;
  position: absolute;
  top: -14px;
  left: -14px;
}

.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
}

.hero-container {
  display: grid;
  gap: 0px 0px;
  grid-template-areas:
    "Date Title"
    "Badge Badge";
  grid-template-columns: 100px 1fr;
}

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

.heroMonth {
  font-family: NCSTSerif, Georgia, serif;
  text-transform: uppercase;
  font-size: 1.375em;
  padding: 2px 0 0 0;
  font-weight: 700;
}

.heroDay {
  font-size: 3em;
  font-weight: 700;
  padding: 2px 0 2px;
}

.heroYear {
  font-size: 0.7em;
  font-weight: 400;
  padding: 0 0 2px 0;
}

.hero {
  width: 356px;
}

@media (max-width: 1540px) {
  .tiles-container {
    justify-content: center;
  }
  .hero {
    width: 460px;
  }
}

.hero-indicator-badge {
  background-color: #fff;
  margin: 0 0 0 auto;
  overflow: hidden;
}

.hero-indicator-badge i {
  font-size: 28px;
  padding: 10px 14px 6px 0;
}

.hero-course-listing {
  text-decoration: none !important;
}

.hero-date {
  color: #fff;
  background-color: #cc0000;
  border: 1px solid #cc0000;
  line-height: 1;
  width: 80px;
  margin: 10px;
}