/* [project]/apps/web/src/components/breadcrumb/Breadcrumb.module.css [app-client] (css) */
.Breadcrumb-module__th9Dqq__breadcrumb {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  width: 100%;
  margin-bottom: 24px;
  padding: 14px .5rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 6px -1px #0000000d, 0 2px 4px -1px #00000008;
}

.Breadcrumb-module__th9Dqq__breadcrumb:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 15px -3px #00000014, 0 4px 6px -2px #0000000d;
}

@media (min-width: 1024px) {
  .Breadcrumb-module__th9Dqq__breadcrumb {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(.5rem, 50vw - 580px);
    padding-right: max(.5rem, 50vw - 580px);
  }
}

.Breadcrumb-module__th9Dqq__breadcrumbList {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Breadcrumb-module__th9Dqq__breadcrumbItem {
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.Breadcrumb-module__th9Dqq__breadcrumbLink {
  color: #64748b;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.Breadcrumb-module__th9Dqq__breadcrumbLink:hover {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #0000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #667eea4d;
}

.Breadcrumb-module__th9Dqq__breadcrumbLink:active {
  transform: translateY(0);
}

.Breadcrumb-module__th9Dqq__breadcrumbCurrent {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 1.5px solid #0000;
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px #667eea4d, inset 0 1px #fff3;
}

.Breadcrumb-module__th9Dqq__breadcrumbSeparator {
  color: #cbd5e1;
  -webkit-user-select: none;
  user-select: none;
  font-size: 16px;
  font-weight: 600;
  transition: color .3s;
}

.dark .Breadcrumb-module__th9Dqq__breadcrumb {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
}

.dark .Breadcrumb-module__th9Dqq__breadcrumb:hover {
  border-color: #475569;
}

.dark .Breadcrumb-module__th9Dqq__breadcrumbLink {
  color: #94a3b8;
  background: #1e293b;
  border-color: #334155;
}

.dark .Breadcrumb-module__th9Dqq__breadcrumbLink:hover {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #0000;
  box-shadow: 0 4px 12px #667eea66;
}

.dark .Breadcrumb-module__th9Dqq__breadcrumbCurrent {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 12px #667eea66, inset 0 1px #fff3;
}

.dark .Breadcrumb-module__th9Dqq__breadcrumbSeparator {
  color: #475569;
}

@media (max-width: 768px) {
  .Breadcrumb-module__th9Dqq__breadcrumb {
    border-radius: 12px;
    padding: 12px 16px;
  }

  .Breadcrumb-module__th9Dqq__breadcrumbItem {
    font-size: 13px;
  }

  .Breadcrumb-module__th9Dqq__breadcrumbLink, .Breadcrumb-module__th9Dqq__breadcrumbCurrent {
    padding: 5px 12px;
    font-size: 13px;
  }

  .Breadcrumb-module__th9Dqq__breadcrumbSeparator {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .Breadcrumb-module__th9Dqq__breadcrumb {
    border-radius: 10px;
    padding: 10px 12px;
  }

  .Breadcrumb-module__th9Dqq__breadcrumbItem {
    font-size: 12px;
  }

  .Breadcrumb-module__th9Dqq__breadcrumbLink, .Breadcrumb-module__th9Dqq__breadcrumbCurrent {
    padding: 4px 10px;
    font-size: 12px;
  }

  .Breadcrumb-module__th9Dqq__breadcrumbSeparator {
    font-size: 12px;
  }
}

[dir="rtl"] .Breadcrumb-module__th9Dqq__breadcrumbList {
  direction: rtl;
}

@media (prefers-reduced-motion: reduce) {
  .Breadcrumb-module__th9Dqq__breadcrumb, .Breadcrumb-module__th9Dqq__breadcrumbLink {
    transition: none;
  }

  .Breadcrumb-module__th9Dqq__breadcrumb:hover, .Breadcrumb-module__th9Dqq__breadcrumbLink:hover {
    transform: none;
  }
}

/* [project]/apps/web/src/app/home/components/categories.module.css [app-client] (css) */
.categories-module__MO-TzG__categoriesContainer {
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  padding-left: .5rem;
  padding-right: .5rem;
  display: flex;
}

@media (min-width: 1024px) {
  .categories-module__MO-TzG__categoriesContainer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(.5rem, 50vw - 600px);
    padding-right: max(.5rem, 50vw - 600px);
  }
}

.categories-module__MO-TzG__categoryCard {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  animation: .5s cubic-bezier(.4, 0, .2, 1) categories-module__MO-TzG__cardEntrance;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px #0000000d, 0 2px 4px -1px #00000008;
}

.categories-module__MO-TzG__categoryCard:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 15px -3px #00000014, 0 4px 6px -2px #0000000d;
}

@keyframes categories-module__MO-TzG__cardEntrance {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.categories-module__MO-TzG__categoryHeader {
  background: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  transition: all .3s;
  display: flex;
}

.categories-module__MO-TzG__categoryHeader:hover {
  background: #667eea08;
}

.categories-module__MO-TzG__categoryHeader.categories-module__MO-TzG__expanded {
  --tw-border-opacity: 1;
  border-bottom-width: 2px;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  background: #667eea0d;
}

.categories-module__MO-TzG__categoryInfo {
  color: inherit;
  flex: 1;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.categories-module__MO-TzG__categoryInfo:hover .categories-module__MO-TzG__categoryName {
  color: #667eea;
}

.categories-module__MO-TzG__categoryIcon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-size: 2.25rem;
  line-height: 2.5rem;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 12px #667eea4d, inset 0 1px #fff3;
}

.categories-module__MO-TzG__categoryInfo:hover .categories-module__MO-TzG__categoryIcon {
  transform: scale(1.05)rotate(5deg);
  box-shadow: 0 6px 16px #667eea66, inset 0 1px #ffffff4d;
}

.categories-module__MO-TzG__categoryText {
  text-align: left;
  flex: 1;
}

.categories-module__MO-TzG__categoryName {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  .categories-module__MO-TzG__categoryName {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.categories-module__MO-TzG__categoryName {
  line-height: 1.3;
}

.categories-module__MO-TzG__categoryDescription {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  font-size: .875rem;
  line-height: 1.5;
}

.categories-module__MO-TzG__expandIcon {
  --tw-text-opacity: 1;
  width: 1.5rem;
  height: 1.5rem;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  flex-shrink: 0;
  transition: transform .3s;
}

.categories-module__MO-TzG__expandIcon.categories-module__MO-TzG__rotated {
  transform: rotate(180deg);
}

.categories-module__MO-TzG__expandButton {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  transition: all .3s;
  display: flex;
}

.categories-module__MO-TzG__expandButton:hover {
  background: #667eea1a;
}

.categories-module__MO-TzG__expandButton:hover .categories-module__MO-TzG__expandIcon {
  color: #667eea;
}

.categories-module__MO-TzG__forumsContainer {
  flex-direction: column;
  gap: .75rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  animation: .4s cubic-bezier(.4, 0, .2, 1) categories-module__MO-TzG__forumsSlideDown;
  display: flex;
}

@keyframes categories-module__MO-TzG__forumsSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.categories-module__MO-TzG__forumCard {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: .75rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  padding: .75rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: grid;
  position: relative;
}

.categories-module__MO-TzG__forumCard:hover {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-color: #667eea;
  transform: translateX(4px);
  box-shadow: 0 8px 16px -4px #667eea26, 0 4px 8px -2px #667eea1a;
}

[dir="rtl"] .categories-module__MO-TzG__forumCard:hover {
  transform: translateX(-4px);
}

.categories-module__MO-TzG__forumMain {
  grid-area: 1 / 1 / 2 / 2;
  align-items: flex-start;
  gap: .75rem;
  display: flex;
}

.categories-module__MO-TzG__forumIcon {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 2rem;
  transition: all .3s;
  display: flex;
}

.categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__forumIcon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #0000;
  transform: scale(1.1)rotate(-5deg);
}

.categories-module__MO-TzG__forumInfo {
  flex: 1;
}

.categories-module__MO-TzG__forumName {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  margin-bottom: .125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color .3s;
}

.categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__forumName {
  color: #667eea;
}

.categories-module__MO-TzG__forumDescription {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  font-size: .75rem;
  line-height: 1.4;
}

.categories-module__MO-TzG__forumStats {
  grid-area: 1 / 2 / 2 / 3;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.categories-module__MO-TzG__stat {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 50px;
  padding: .25rem .5rem;
  transition: all .3s;
  display: flex;
}

.categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__stat {
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
  border-color: #667eea30;
}

.categories-module__MO-TzG__statIcon {
  font-size: .875rem;
  line-height: 1.25rem;
}

.categories-module__MO-TzG__statValue {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.25rem;
}

.categories-module__MO-TzG__statLabel {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  white-space: nowrap;
  font-size: 10px;
  line-height: 1rem;
}

.categories-module__MO-TzG__latestThread {
  --tw-border-opacity: 1;
  border-top-width: 1px;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  flex-direction: column;
  grid-area: 2 / 1 / 3 / 3;
  gap: .375rem;
  padding-top: .5rem;
  display: flex;
}

.categories-module__MO-TzG__latestLabel {
  text-transform: uppercase;
  letter-spacing: .025em;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  margin-bottom: .25rem;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1rem;
}

.categories-module__MO-TzG__threadInfo {
  color: inherit;
  cursor: pointer;
  border-radius: 6px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .75rem;
  margin: -.5rem -.5rem 0;
  padding: .5rem;
  text-decoration: none;
  transition: all .3s;
  display: grid;
}

.categories-module__MO-TzG__threadInfo:hover {
  background: #667eea0d;
}

.categories-module__MO-TzG__threadInfo:hover .categories-module__MO-TzG__threadTitle {
  color: #667eea;
}

.categories-module__MO-TzG__threadInfo:focus {
  outline-offset: 2px;
  outline: 2px solid #667eea;
}

.categories-module__MO-TzG__pinnedBadge {
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: .375rem;
  align-items: center;
  gap: .25rem;
  width: fit-content;
  padding: .25rem .5rem;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1rem;
  display: inline-flex;
}

.categories-module__MO-TzG__threadIcon {
  margin-right: .25rem;
  font-size: 1rem;
  display: inline-block;
}

[dir="rtl"] .categories-module__MO-TzG__threadIcon {
  margin-left: .25rem;
  margin-right: 0;
}

.categories-module__MO-TzG__threadTitle {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  margin-bottom: .25rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color .3s;
}

.categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__threadTitle {
  color: #667eea;
}

.categories-module__MO-TzG__threadContent {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.categories-module__MO-TzG__threadMeta {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  flex-wrap: wrap;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  line-height: 1rem;
  display: flex;
}

.categories-module__MO-TzG__threadStats {
  align-items: center;
  gap: .375rem;
  display: flex;
}

.categories-module__MO-TzG__threadStat {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 45px;
  padding: .25rem .5rem;
  transition: all .3s;
  display: flex;
}

.categories-module__MO-TzG__threadInfo:hover .categories-module__MO-TzG__threadStat {
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
  border-color: #667eea30;
}

.categories-module__MO-TzG__threadStatIcon {
  font-size: .75rem;
  line-height: 1rem;
}

.categories-module__MO-TzG__threadStatValue {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.25rem;
}

.categories-module__MO-TzG__noThreads {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: .875rem;
  font-style: italic;
  line-height: 1.25rem;
}

.dark .categories-module__MO-TzG__categoryCard {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
}

.dark .categories-module__MO-TzG__categoryCard:hover {
  border-color: #475569;
}

.dark .categories-module__MO-TzG__categoryHeader:hover {
  background: #667eea1a;
}

.dark .categories-module__MO-TzG__categoryHeader.categories-module__MO-TzG__expanded {
  background: #667eea26;
  border-color: #334155;
}

.dark .categories-module__MO-TzG__categoryName {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__categoryDescription {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__expandIcon {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__forumCard {
  background: #1e293b;
  border-color: #334155;
}

.dark .categories-module__MO-TzG__forumCard:hover {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-color: #667eea;
  box-shadow: 0 8px 16px -4px #667eea4d, 0 4px 8px -2px #667eea33;
}

.dark .categories-module__MO-TzG__forumIcon {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border-color: #475569;
}

.dark .categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__forumIcon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dark .categories-module__MO-TzG__forumName {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__forumName {
  color: #818cf8;
}

.dark .categories-module__MO-TzG__forumDescription {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__stat {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border-color: #475569;
}

.dark .categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__stat {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-color: #667eea50;
}

.dark .categories-module__MO-TzG__statValue {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__statLabel {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__latestThread {
  border-color: #334155;
}

.dark .categories-module__MO-TzG__latestLabel {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__pinnedBadge {
  color: #1e293b;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.dark .categories-module__MO-TzG__threadTitle {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__forumCard:hover .categories-module__MO-TzG__threadTitle {
  color: #818cf8;
}

.dark .categories-module__MO-TzG__threadMeta {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__noThreads {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.dark .categories-module__MO-TzG__threadStat {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border-color: #475569;
}

.dark .categories-module__MO-TzG__threadInfo:hover .categories-module__MO-TzG__threadStat {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-color: #667eea50;
}

.dark .categories-module__MO-TzG__threadStatValue {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (max-width: 1024px) {
  .categories-module__MO-TzG__forumStats {
    --tw-border-opacity: 1;
    border-top-width: 1px;
    border-color: rgb(243 244 246 / var(--tw-border-opacity));
    grid-area: 2 / 1 / 3 / 3;
    padding-top: .75rem;
  }

  .dark .categories-module__MO-TzG__forumStats {
    border-color: #334155;
  }

  .categories-module__MO-TzG__latestThread {
    grid-row: 3 / 4;
  }
}

@media (max-width: 768px) {
  .categories-module__MO-TzG__categoryCard {
    border-radius: .75rem;
  }

  .categories-module__MO-TzG__categoryHeader {
    padding: 1rem;
  }

  .categories-module__MO-TzG__categoryIcon {
    width: 52px;
    height: 52px;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .categories-module__MO-TzG__categoryName {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .categories-module__MO-TzG__forumsContainer {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .categories-module__MO-TzG__forumCard {
    padding: 1rem;
  }

  .categories-module__MO-TzG__forumMain {
    gap: .75rem;
  }

  .categories-module__MO-TzG__forumIcon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .categories-module__MO-TzG__forumStats {
    gap: .5rem;
  }

  .categories-module__MO-TzG__stat {
    min-width: 60px;
  }
}

@media (max-width: 480px) {
  .categories-module__MO-TzG__categoriesContainer {
    gap: 1rem;
  }

  .categories-module__MO-TzG__categoryCard {
    border-radius: .5rem;
  }

  .categories-module__MO-TzG__categoryHeader {
    gap: .75rem;
    padding: .75rem;
  }

  .categories-module__MO-TzG__categoryIcon {
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .categories-module__MO-TzG__categoryInfo {
    gap: .75rem;
  }

  .categories-module__MO-TzG__categoryName {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .categories-module__MO-TzG__categoryDescription {
    font-size: .75rem;
    line-height: 1rem;
  }

  .categories-module__MO-TzG__expandIcon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .categories-module__MO-TzG__forumsContainer {
    gap: .5rem;
    padding-bottom: .5rem;
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .categories-module__MO-TzG__forumCard {
    border-radius: .5rem;
    grid-template-columns: 1fr;
    padding: .75rem;
  }

  .categories-module__MO-TzG__forumMain {
    grid-column: 1 / 2;
  }

  .categories-module__MO-TzG__forumStats {
    grid-column: 1 / 2;
    justify-content: flex-start;
  }

  .categories-module__MO-TzG__latestThread {
    grid-column: 1 / 2;
  }
}

[dir="rtl"] .categories-module__MO-TzG__categoryText {
  text-align: right;
}

[dir="ltr"] .categories-module__MO-TzG__categoryText {
  text-align: left;
}

[dir="ltr"] .categories-module__MO-TzG__categoryInfo, [dir="ltr"] .categories-module__MO-TzG__forumMain {
  flex-direction: row;
}

[dir="rtl"] .categories-module__MO-TzG__forumInfo {
  text-align: right;
}

[dir="ltr"] .categories-module__MO-TzG__forumInfo {
  text-align: left;
}

[dir="rtl"] .categories-module__MO-TzG__latestLabel, [dir="rtl"] .categories-module__MO-TzG__threadInfo {
  text-align: right;
}

[dir="ltr"] .categories-module__MO-TzG__latestLabel, [dir="ltr"] .categories-module__MO-TzG__threadInfo {
  text-align: left;
}

[dir="rtl"] .categories-module__MO-TzG__forumStats {
  flex-direction: row-reverse;
}

[dir="ltr"] .categories-module__MO-TzG__forumStats {
  flex-direction: row;
}

/*# sourceMappingURL=apps_web_src_30d4e1b0._.css.map*/