.course-listing-results__card h2 {
   font-size: 1.6875rem;
}

/* =========================================
   FLCC Profile Modal
   ========================================= */

.flcc-profile-modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.flcc-profile-modal-wrapper:not([hidden]) {
  display: flex;
}

.flcc-profile-modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  cursor: pointer;
}

.flcc-profile-modal {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  z-index: 100000;
}

.flcc-profile-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
  padding: 0.25rem 0.5rem;
}

.flcc-profile-modal__close:focus {
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}

body.flcc-modal-open {
  overflow: hidden;
}