.home__header {
  margin-top: 35px;
  margin-bottom: 60px;
}
.home__header h1 {
  font-size: 36px;
  font-weight: 700;
}
@media (min-width: 960px) {
  .home__header h1 {
    max-width: 420px;
  }
}
.home__header h2 {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  text-transform: lowercase;
}
@media (min-width: 960px) {
  .home__header h2 {
    font-size: 22px;
  }
}
.home__question {
  display: flex;
  grid-gap: 24px;
  gap: 24px;
  align-items: flex-start;
  margin-top: 24px;
}
@media (max-width: 959px) {
  .home__question {
    flex-direction: column;
  }
}
.home__description {
  color: var(--color-accent);
  margin-right: auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 960px) {
  .home__description {
    max-width: 420px;
  }
}
.home__aside {
  flex-shrink: 0.25;
  border-radius: 7px;
  border: 3px solid var(--color-accent);
}
@media (max-width: 959px) {
  .home__aside {
    padding: 25px;
  }
}
@media (min-width: 960px) {
  .home__aside {
    width: 480px;
    padding: 30px;
    font-size: 16px;
  }
}
.home__aside p {
  font-weight: 600;
}
.home__aside p:empty {
  display: none;
}
.home__aside p:empty + ul {
  margin-top: 0;
}
.home__aside ul {
  font-weight: 400;
  margin-top: 0.5em;
  margin-left: 1.25em;
}
.home__new-mobile {
  display: block;
  margin-top: 24px;
  padding-left: 20px;
  background-color: var(--color-accent);
  border-radius: 7px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 60px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 960px) {
  .home__new-mobile {
    display: none;
  }
}
.home__new-desktop {
  position: relative;
  height: 0;
  padding-bottom: calc(100% - 8px);
  border: 4px solid #000;
  border-radius: 7px;
  transition: 0.1s ease-out;
  transition-property: color, transform;
}
.home__new-desktop:only-child {
  width: 25%;
  padding-bottom: 25%;
}
.home__new-desktop:hover {
  color: #fff;
  transform: translate(-4px, -4px);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.home__new-desktop:hover::after {
  transform: translate(8px, 8px);
}
.home__new-desktop span {
  position: absolute;
  right: 10%;
  bottom: 10%;
  left: 10%;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 959px) {
  .home__new-desktop {
    display: none;
  }
}
.home__controls {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 40px;
}
.home__ideas {
  margin-bottom: 42px;
}
@media (min-width: 960px) {
  .home__ideas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 24px 4.6%;
    gap: 24px 4.6%;
  }
}
.home__ideas > a::after, .home__ideas > article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  width: 100%;
  padding-bottom: 100%;
  background-color: var(--color-accent);
  border-radius: 7px;
  transition: 0.1s ease-out;
  transition-property: transform, opacity;
}
.home__ideas > a:hover::after, .home__ideas > article:hover::after {
  opacity: 1;
}
.home-idea__idea {
  position: relative;
}
@media (max-width: 959px) {
  .home-idea__idea + .home-idea__idea {
    margin-top: 40px;
  }
}
.home-idea__idea img {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  border: 4px solid #000;
  border-radius: 7px;
  transition: transform 0.1s ease-out;
}
.home-idea__idea h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  max-height: 2.8em;
}
.home-idea__idea a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.home-idea__idea:hover img {
  transform: translate(-4px, -4px);
}
.home-idea__idea:hover::after {
  transform: translate(4px, 4px);
}
@media (min-width: 960px) {
  .home-sort {
    position: absolute;
    left: 100%;
    margin-left: 42px;
    width: 60px;
    border: 3px solid #000;
    border-radius: 7px;
  }
  .home-sort::before {
    content: attr(data-label);
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: inherit;
    font-weight: 700;
    text-align: center;
  }
}

@media (max-width: 959px) {
  .home-sort__label,
  .home-sort__list a {
    display: block;
    width: 100%;
  }
}

.home-sort__label {
  background-color: transparent;
  padding-left: 12px;
  padding-right: 12px;
  border: 3px solid var(--color-accent);
  border-radius: 7px;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 38px;
  text-align: left;
}

@media (max-width: 959px) {
  .home-sort__label::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-left: 4px;
    margin-right: 8px;
    vertical-align: -6px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 26px 26px;
    -webkit-filter: var(--color-accent-filter);
            filter: var(--color-accent-filter);
  }
  .home-sort__label.home-sort__open {
    background-color: var(--color-accent);
    color: #fff;
  }
  .home-sort__label.home-sort__open::before {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
  .home-sort__label.home-sort__open + .home-sort__list {
    display: block;
  }
}

@media (min-width: 960px) {
  .home-sort__label {
    display: none;
  }
}

.home-sort__list {
  list-style: none;
  margin-top: 14px;
}

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

@media (min-width: 960px) {
  .home-sort__list {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 959px) {
  .home-sort__list li + li {
    margin-top: 12px;
  }
}

@media (min-width: 960px) {
  .home-sort__list li + li {
    margin-top: 20px;
  }
}

.home-sort__list a {
  color: var(--color-accent);
  line-height: 30px;
}

@media (max-width: 959px) {
  .home-sort__list a {
    border: 3px solid currentColor;
    border-radius: 7px;
  }
}

@media (min-width: 960px) {
  .home-sort__list a {
    font: 0/0 none;
  }
}

.home-sort__list a::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  vertical-align: -5px;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 959px) {
  .home-sort__list a::before {
    margin-left: 28px;
    margin-right: 8px;
  }
}

.home-sort__list a.home-sort__active::before, .home-sort__list a:hover::before {
  -webkit-filter: var(--color-accent-filter);
          filter: var(--color-accent-filter);
}

.home-sort__latest::before {
  background-image: url(/packs/media/home/sort/assets/date-e1e33365ab270b6bfac2e5417ad34d1a.svg);
}

.home-sort__popular::before {
  background-image: url(/packs/media/home/sort/assets/likes-612a6b5c90587b2e8235c6df423b745b.svg);
}
.home-tags__label {
  display: block;
  background-color: transparent;
  padding-left: 12px;
  padding-right: 12px;
  border: 3px solid currentColor;
  border-radius: 7px;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 38px;
  text-align: center;
}
@media (max-width: 959px) {
  .home-tags__label.home-tags__open {
    background-color: var(--color-accent);
    color: #fff;
  }
  .home-tags__label.home-tags__open::before {
    -webkit-filter: brightness(100);
            filter: brightness(100);
  }
  .home-tags__label.home-tags__open + .home-tags__list {
    display: block;
  }
}
@media (min-width: 960px) {
  .home-tags__label {
    display: none;
  }
}
.home-tags__list {
  list-style: none;
  margin-bottom: -12px;
}
@media (max-width: 959px) {
  .home-tags__list {
    display: none;
    margin-top: 14px;
  }
}
.home-tags__list li {
  display: inline-block;
  margin-bottom: 12px;
  margin-right: 10px;
}
.home-tags__list a {
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  border: 3px solid currentColor;
  border-radius: 7px;
  line-height: 30px;
}
.home-tags__list a:hover {
  color: var(--color-accent);
}
@media (max-width: 959px) {
  .home-tags__list a {
    color: var(--color-accent);
  }
  .home-tags__list a.home-tags__active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
  }
}
@media (min-width: 960px) {
  .home-tags__list a {
    color: #000;
  }
  .home-tags__list a.home-tags__active {
    color: var(--color-accent);
  }
}
.home-tags__list a:not(.home-tags__all) {
  text-transform: lowercase;
}
.home-tags__list a:not(.home-tags__all)::before {
  content: "#";
}

/*# sourceMappingURL=home-34f817df.css.map*/