.page .title {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr max-content 475px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page .title {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.page .title .view-all {
  font-family: "Open Sans";
  font-weight: 500;
  text-decoration: underline;
  font-size: 14px;
  line-height: 24px;
  text-transform: initial;
}
@media screen and (max-width: 768px) {
  .page .title .view-all {
    order: 3;
    margin: auto;
  }
}
.page .title form {
  width: 475px;
}
@media screen and (max-width: 768px) {
  .page .title form {
    width: 100%;
    margin: 10px 0;
  }
}
.page .title form .search {
  position: relative;
  max-height: 58px;
  height: 100%;
  display: flex;
  width: 100%;
}
.page .title form .search button {
  border: none;
  background: none;
}
.page .title form .search button .icon {
  width: 40px;
  height: 40px;
  margin: 0;
}
.page .title form .search input {
  background-color: var(--cream);
  padding: 18px;
  border-radius: 20px;
  border-color: transparent !important;
  outline: none;
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .page .title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page .songs .song p {
  padding: 0;
  margin: 0;
  font-family: "Open Sans";
  font-weight: 300;
  font-size: 16px;
}
.page .playlist-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page .playlist-types a {
  background-color: var(--brand-light);
  font-size: 14px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  color: var(--white);
  border-radius: 4px;
  padding: 3px 20px;
  height: 30px;
  display: flex;
  align-items: center;
}

#results {
  max-width: var(--page-width);
  margin: auto;
  padding: 0 20px 50px 20px;
}
#results .songs-filters {
  margin: 0;
  padding: 0 0 0 20px;
}

#results-counts {
  display: none;
  font-size: 26px;
  line-height: 34px;
  max-width: var(--page-width);
  margin: auto;
  padding: 0 20px 20px 20px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #results-counts {
    justify-content: center;
  }
}
#results-counts div {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 500;
  color: #000000;
}

.songs {
  max-width: var(--page-width);
  margin: auto;
  padding: 0 20px 50px 20px;
}
.songs .song-type-title {
  margin: 25px auto 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .songs .song-type-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.songs-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.songs-title {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 15px;
}
.songs-albums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 30px;
  column-gap: 20px;
}
.songs-albums-item {
  display: flex;
  flex-direction: column;
}
.songs-albums-item .album-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.songs-albums-item .album-title {
  margin-top: 10px;
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.songs-albums-item .album-author {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #C44545;
}
.songs-all .title-all {
  margin: 40px 0 18px;
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}
.songs-all .list {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 30px;
}
.songs-all .list .letter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* A */
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 46px;
  color: #C44545;
}
.songs-all .list .values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 10px;
  padding: 5px;
}
.songs-all .list .values .item {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  padding: 5px 0;
}
.songs .songs-by-types {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  justify-content: center;
}
.songs .songs-by-types .types-item {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #000000;
  text-align: center;
}
.songs-filters {
  margin: 0;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.songs-filters a {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .songs-filters a {
    text-align: center;
  }
}
.songs .song-title {
  font-family: "Open Sans Condensed";
  margin-top: 15px;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
}
.songs .song-album {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  text-align: center;
  max-width: 380px;
  width: 100%;
  margin: auto;
}
.songs .song-album span {
  color: #C44545;
  text-decoration: underline;
}
.songs .song-text {
  font-family: "Open Sans" !important;
  font-style: normal;
  color: #000000;
  text-align: center;
  max-width: 380px;
  width: 100%;
  margin: 30px auto;
  position: relative;
}
.songs .song-text div, .songs .song-text p, .songs .song-text span {
  font-weight: 300 !important;
  font-size: 16px !important;
}
.songs .song-text.translated div, .songs .song-text.translated p, .songs .song-text.translated span {
  line-height: 38px;
  margin-bottom: 6px;
}
.songs .song-text .translated {
  position: absolute;
  color: var(--brand-light);
  text-align: center;
  max-width: 380px;
  width: 100%;
  top: 20px;
}
.songs .song-text .translated div, .songs .song-text .translated p, .songs .song-text .translated span {
  font-size: 12px !important;
}
.songs .album-wrapper {
  padding: 20px 0;
  text-align: center;
  width: 100%;
  max-width: 380px;
  margin: auto;
}
.songs .album-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.songs .album-wrapper .by-author {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  margin: 0 auto 40px auto;
}
.songs .album-wrapper .by-author span {
  color: var(--brand-light);
}
.songs .album-wrapper .wrapper-title {
  font-family: "Open Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  text-transform: uppercase;
  color: #000000;
  margin-top: 30px;
}
.songs .album-wrapper .list {
  margin: 0 auto;
  padding: 0;
  max-width: 380px;
  width: 100%;
}
.songs .album-wrapper .list .item {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 36px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.songs .album-wrapper .list .item.active {
  color: var(--black);
}
.songs .album-wrapper .list .item.active a {
  color: var(--black);
}
.songs .album-wrapper .list .item.inactive {
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .songs .album-wrapper .wrapper-title {
    font-size: 30px;
    line-height: 40px;
    margin: 15px 0 10px;
  }
  .songs-albums {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .songs-albums-item {
    display: grid;
    align-items: center;
    grid-template-columns: 80px 1fr;
    height: 80px;
    column-gap: 20px;
    background-color: var(--cream);
    border-radius: 10px;
  }
  .songs-albums-item .album-title {
    margin: 0;
  }
  .songs-albums-item .album-image {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .songs-albums-item .album-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .songs-all .list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
  }
  .songs-all .list .values {
    grid-template-columns: 1fr;
  }
  .songs-all .list .values .item {
    text-align: center;
  }
  .songs .song-title {
    font-size: 30px;
    line-height: 40px;
    margin: 15px 0 10px;
  }
}
