.main-layout-list {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header" "content" "footer";
  height: 100dvh; }

.content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100dvh - 67px - var(--footer-height)); }
  @media (min-width: 1100px) {
    .content {
      height: calc(100dvh - var(--nav-height) - var(--footer-height)); } }
/* Search */
#banner {
  max-width: 720px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; }

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid rgba(32, 92, 154, 0.8);
  border-radius: 21px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  box-sizing: border-box;
  min-width: 80%;
  max-width: 500px; }
  @media (min-width: 992px) {
    .search-container {
      min-width: 0;
      width: 40%;
      justify-self: center; } }
  .search-container i {
    margin: .2rem; }
  .search-container input {
    height: 32px;
    font-size: 16px;
    outline: none;
    border: none;
    margin-right: auto;
    width: 100%; }

/* END Search */
/* Course List */
.course-list-container {
  min-width: 60%; }

.course-list {
  overflow: auto;
  --ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: .5rem;
  margin-right: .5rem;
  box-sizing: border-box; }
  .course-list::-webkit-scrollbar {
    display: none; }
  .course-list .course {
    max-width: 720px;
    background-color: var(--color-secondary);
    border-radius: 21px;
    border-color: black;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
    margin: 0 16px 16px 16px; }
    .course-list .course:hover {
      background-color: var(--color-primary-light); }
    @media (min-width: 1100px) {
      .course-list .course {
        padding: 2rem;
        margin: 0 0 16px 0; } }
  .course-list .name {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    max-width: 720px;
    width: 100%; }
    .course-list .name .course-logo {
      height: 22px;
      width: 22px;
      margin-right: 16px; }
    .course-list .name .course-stack {
      display: flex;
      flex-row: column nowrap;
      flex: 1 1 0%; }
      .course-list .name .course-stack .course-title {
        flex-shrink: 1; }
        .course-list .name .course-stack .course-title b {
          font-weight: 800;
          font-size: 20px; }
      .course-list .name .course-stack .course-year {
        font-size: 14px;
        flex-shrink: 1;
        margin-top: auto !important;
        margin-right: 0px;
        margin-left: auto;
        margin-bottom: -5px; }

/* END Course List */
