/* [project]/src/components/askly-logo.module.css [app-client] (css) */
.askly-logo-module__FuM3Aa__asklyLogoImage {
  object-fit: contain;
  background: none;
  width: 103px;
  height: 32px;
  display: block;
}

/* [project]/src/components/user-profile-card.module.css [app-client] (css) */
.user-profile-card-module__6_QqQa__asklyUserProfileCard {
  cursor: pointer;
  background: #18181b99;
  border: 1px solid #27272a;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background-color .15s, border-color .15s;
  display: flex;
}

.user-profile-card-module__6_QqQa__asklyUserProfileCard:hover {
  background: #27272ab3;
  border-color: #3f3f46;
}

.user-profile-card-module__6_QqQa__asklyUserProfileAvatar {
  color: #a1a1aa;
  flex-shrink: 0;
}

.user-profile-card-module__6_QqQa__asklyUserProfileAvatarImage {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.user-profile-card-module__6_QqQa__asklyUserProfileName {
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  font-size: .875rem;
  font-weight: 600;
  overflow: hidden;
}

/* [project]/src/features/home/home.module.css [app-client] (css) */
.home-module__j8ab0G__page {
  color: #eee;
  background: #212121;
  min-height: 100vh;
  display: flex;
}

.home-module__j8ab0G__sidebar {
  background: #171717;
  border-right: 1px solid #363636;
  width: 280px;
  padding: 16px;
  position: relative;
}

.home-module__j8ab0G__brand {
  letter-spacing: .02em;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}

.home-module__j8ab0G__sideLinks {
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.home-module__j8ab0G__sideLink {
  color: #d4d4d4;
  border-radius: 12px;
  padding: 10px 12px;
  text-decoration: none;
}

.home-module__j8ab0G__sideLink:hover {
  color: #f4f4f5;
  background: #27272ab3;
}

.home-module__j8ab0G__profileWrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.home-module__j8ab0G__main {
  flex: 1;
  padding: 40px 20px;
}

.home-module__j8ab0G__hero {
  text-align: center;
  margin-bottom: 28px;
}

.home-module__j8ab0G__hero h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
}

.home-module__j8ab0G__hero p {
  color: #b4b4b4;
  margin-top: 12px;
  font-size: 1.05rem;
}

.home-module__j8ab0G__accent {
  color: #2ea043;
}

.home-module__j8ab0G__courseGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
}

.home-module__j8ab0G__courseCard {
  background: var(--course-color);
  text-align: center;
  color: #fff;
  border-radius: 18px;
  width: 100%;
  padding: 14px 16px;
  text-decoration: none;
  transition: background-color .15s;
}

.home-module__j8ab0G__courseCard:hover {
  background: var(--course-hover-color);
}

.home-module__j8ab0G__courseCode {
  color: #e6e6e6;
  margin-top: 8px;
  font-size: .95rem;
  display: block;
}

@media (max-width: 900px) {
  .home-module__j8ab0G__sidebar {
    display: none;
  }

  .home-module__j8ab0G__courseGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-module__j8ab0G__courseGrid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=src_13n~jh~._.css.map*/