.course_category_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.course_section_heading {
  margin-bottom: 3.5rem;
}

.course_tab {
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);

  display: flex;
  padding: 1.25rem 1.5rem;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  z-index: 2;
}

.course_heading {
  color: var(--Neutral-Black, #1a1a1a);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0125rem;
  align-self: stretch;
}

.course_paragraph {
  color: var(--Neutral-Granite, #7a7a7a);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: -0.01rem;
  align-self: stretch;
}

/* Mobile Responsive */

@media screen and (max-width: 768px) {
  .course_category_grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .course_section_heading {
    margin-bottom: 2.5rem;
  }

  .section_heading {
    font-size: 1.75rem;
    text-align: left;
    letter-spacing: -0.0175rem;
  }

  .course_tab {
    padding: 0.75rem;
    gap: 1rem;
  }

  .course_heading {
    font-size: 1rem;
    letter-spacing: -0.01rem;
  }

  .course_paragraph {
    font-size: 0.75rem;
    letter-spacing: -0.00875rem;
    line-height: 1rem;
    font-weight: 500;
  }

  .course_logo img {
    width: 3.5rem;
  }
}
