﻿.apps-layout-container {
  display: flex;
  background-color: #222222;
}

.apps-navigation-menu {
  width: 320px;
  padding: 0 8px 8px 8px;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
}

.apps-content {
  border-radius: 12px 0 0 0;
  flex: 1;
  background-color: #1c1c1c;
  min-height: calc(100vh - 64px);
}

.apps-container {
  margin: 54px 72px 72px 72px;
  max-width: 960px;
}

.apps-title {
  margin: 8px 0 32px 0;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
}

.apps-text-container {
  line-height: 28px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 32px;
}

.apps-text-intent {
  text-indent: 32px;
}

.apps-accent-text-container {
  line-height: 28px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent-fill-rest);
}

.apps_list_container {
  display: flex;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/*Cards*/
.apps-app-card {
  flex: 1 1 calc(33% - 10px);
  position: relative;
  cursor: pointer;
}

.apps-card-background {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background-color: #ffffff09;
  border: 1px solid #00000040;
}

.apps-card-border {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  transition-duration: 0.2s;
  opacity: 0;
  border: 2px solid var(--accent-fill-rest);
}

.apps-app-card:hover > .apps-card-border {
  opacity: 0.8;
}

.apps-app-card:active > .apps-card-border {
  opacity: 0.6;
  border: 2px solid var(--accent-fill-active);
}

.apps-card-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.apps-app-card-icon {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  margin: 0 0 24px 0;
}

.apps-app-card-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px 0;
  line-height: 28px;
}

.apps-app-card-details {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 20px 0;
}

.apps-app-card-star {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  margin: 0 4px 0 0;
}

.apps-app-card-category {
  font-size: 12.5px;
  background-color: var(--accent-fill-rest);
  color: #000000;
  padding: 1px 8px 2px 8px;
  margin: 1.5px 0 0 8px;
  border-radius: 30px;
  letter-spacing: 0px;
}

.apps-app-card-description {
  color: var(--neutral-foreground-hover);
  font-size: 14.5px;
  line-height: 24px;
}

.apps-rating-description {
  font-size: 13.5px;
  color: var(--neutral-foreground-hover);
}

/*Common*/
.apps-hero-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 32px;
  display: flex;
}

.apps-small-image {
  border-radius: 8px;
  max-height: 240px;
  max-width: 100%;
  display: flex;
  margin: 0 auto 32px auto;
}

/*1400*/
@media (max-width: 1400px) {
  .apps-app-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/*1050*/
@media (max-width: 1050px) {
  .apps-app-card {
    flex: 100%;
  }
}

/*800*/
@media (max-width: 800px) {
  .apps-navigation-menu {
    display: none;
  }

  .apps-content {
    border-radius: 0;
  }

  .apps-container {
    margin: 16px 24px 24px 24px;
  }

  .apps-app-card-icon {
    width: 80px;
    height: 80px;
  }
}
