.downloads-section {
  position: relative;
  overflow: hidden;
}
.downloads-section.bright .card > .downloads-item {
  background-color: rgba(255, 255, 255, 0.8);
}
.downloads-section.dark {
  background: var(--color-gradient-darkgrey);
}
.downloads-section.dark .card > .downloads-item {
  background-color: rgba(51, 51, 51, 0.8);
}
.downloads-section.music .card > .downloads-item {
  background-color: rgba(96, 17, 10, 0.8);
}
.downloads-section.audiobooks .card > .downloads-item {
  background-color: rgba(55, 71, 40, 0.8);
}
.downloads-section.ebooks .card > .downloads-item {
  background-color: rgba(38, 45, 89, 0.8);
}
.downloads-section.books .card > .downloads-item {
  background-color: rgba(31, 89, 89, 0.8);
}
.downloads-section.snow .downloads-container > .headline, .downloads-section.nova_book .downloads-container > .headline, .downloads-section.forest .downloads-container > .headline {
  font-weight: 600;
}
.downloads-section.snow .downloads-description > .headline {
  color: var(--color-grey-800);
}
.downloads-section.snow .card > .downloads-item {
  background-color: rgba(215, 245, 244, 0.8);
}
.downloads-section.nova_book .card > .downloads-item, .downloads-section.forest .card > .downloads-item {
  background-color: rgba(34, 59, 59, 0.8);
}

.downloads-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 96px;
  margin-bottom: 96px;
  z-index: 1;
}
.downloads-container > *:first-child {
  margin-bottom: 40px !important;
}
.downloads-container > *:not(:first-child):not(:last-child) {
  margin-bottom: 80px !important;
}
.downloads-container .headline {
  font: 400 45px/55px var(--font-primary);
  text-align: center;
}
.downloads-container .downloads-list {
  width: 100%;
  padding-left: 0;
}
.downloads-container .downloads-list .downloads-button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
  border: none;
  padding: 0;
  text-align: left;
  text-decoration: none;
  color: unset;
  background-color: transparent;
}
.downloads-container .downloads-list .downloads-button .downloads-icon {
  max-width: 20px;
  max-height: 20px;
}
.downloads-container .downloads-list .downloads-description .headline {
  text-align: left;
}
.downloads-container .downloads-list.big {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
.downloads-container .downloads-list.big .downloads-item::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--color-grey-300);
  margin-top: 2.5em;
}
.downloads-container .downloads-list.big .downloads-item:last-child::after {
  border-bottom: none;
}
.downloads-container .downloads-list.big .downloads-button {
  font: 400 16px/21px var(--font-primary);
}
.downloads-container .downloads-list.big .downloads-description .headline {
  font: 400 25px/35px var(--font-primary);
}
.downloads-container .downloads-list.card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  border: none;
  color: inherit;
  background-color: transparent;
}
.downloads-container .downloads-list.card .downloads-item {
  display: flex;
  align-items: center;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.downloads-container .downloads-list.card .downloads-button {
  padding: 24px;
  font: 400 16px/21px var(--font-primary);
}
.downloads-container .downloads-list.card .downloads-description .headline {
  font: 700 18px/26px var(--font-primary);
}
@media (max-width: 992px) {
  .downloads-container .downloads-list.card {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 390px) {
  .downloads-container > *:not(:first-child):not(:last-child) {
    margin-bottom: 56px !important;
  }
  .downloads-container .headline {
    font: 400 30px/40px var(--font-primary);
  }
  .downloads-container .downloads-list .downloads-button {
    font: 400 20px/30px var(--font-primary);
  }
}

.downloads-bgShape {
  position: absolute;
  width: 1422px;
  height: 1107px;
  top: -132px;
  left: 0;
}
.downloads-bgShape.bright, .downloads-bgShape.dark {
  --shape-color-left: #887F7799;
  --shape-color-right: #4D474199;
}
.downloads-bgShape.music {
  --shape-color-left: #F59E4099;
  --shape-color-right: #E52C1799;
}
.downloads-bgShape.audiobooks {
  --shape-color-left: #F3E60099;
  --shape-color-right: #B1CB2A99;
}
.downloads-bgShape.ebooks {
  --shape-color-left: #5E7BCC99;
  --shape-color-right: #4A52AF99;
}
.downloads-bgShape.books {
  --shape-color-left: #A3E6E499;
  --shape-color-right: #31B7BC99;
}
.downloads-bgShape--dark {
  --shape-color: var(--color-grey-800);
  position: absolute;
  width: 1300px;
  height: 1300px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .downloads-bgShape {
    width: 768px;
    height: 611px;
    top: 290px;
    left: -260px;
  }
  .downloads-bgShape--dark {
    width: 809px;
    height: 809px;
  }
}
@media (max-width: 390px) {
  .downloads-bgShape {
    width: 474px;
    height: 369px;
    top: 270px;
    left: -180px;
  }
  .downloads-bgShape--dark {
    width: 650px;
    height: 650px;
  }
}