/* Greene Learning Career Quiz */
.glcq-fullwidth { width: 100vw; position: relative; right: 50%; left: 50%; margin-right: -50vw; margin-left: -50vw; overflow-x: hidden; }
.glcq-wrap { direction: rtl; overflow-x: hidden; }

/* Prevent horizontal scrollbar from fullwidth sections */
body:has(.glcq-wrap) { overflow-x: hidden; }
html { overflow-x: hidden; }

/* ── Courses page top padding (below fixed nav) ── */
#glcq-step-courses { padding-top: 80px !important; }

/* ── Guest locked courses ── */
.glcq-locked-card {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
  position: relative;
}
.glcq-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 24px;
}

/* ── Course cards — Tutor LMS style ── */
.glcq-course-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid #e5e7eb;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform .25s, box-shadow .25s;
}
.glcq-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
}
.glcq-course-card img {
  width: 100%;
  height: 240px;
  object-position: top center;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.glcq-course-card:hover img {
  transform: scale(1.04);
}
