.grad-album-type {
  display: block;
  color: #0d0d0d;
  max-width: 336px;
  margin: 0 auto;
  transition: color 0.5s;
}
.grad-album-type[href]:hover {
  color: #8d8bff;
}
.grad-album-type[href]:hover .grad-album-type-img {
  transform: scale(1.05);
}
.grad-album-type-img-container {
  position: relative;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .grad-album-type-img-container {
    margin-bottom: 32px;
    border-radius: 48px;
  }
}
.grad-album-type-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.5s;
}

.grad-album-type-title {
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  text-align: center;
}
@media (min-width: 576px) {
  .grad-album-type-title {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 19px;
    font-weight: 600;
  }
}

.album-type-item {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 20px;
  gap: 15px;
  background: #ebedff;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .album-type-item {
    padding: 30px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
}
.album-type-item-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .album-type-item-row {
    margin-bottom: 40px;
    display: grid;
    grid-template-rows: repeat(auto-fill, auto);
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .album-type-item-row {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
}
.album-type-item-badge {
  position: absolute;
  left: 50%;
  top: 0;
  padding: 5px 15px;
  background: #b1b9ff;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  transform: translate(-50%, -50%);
  color: #001122;
}
@media (min-width: 768px) {
  .album-type-item-badge {
    padding: 8px 20px;
    font-size: 18px;
    line-height: 22px;
  }
}
.album-type-item-title {
  font-size: 21px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .album-type-item-title {
    font-size: 24px;
  }
}
.album-type-item-descr {
  font-size: 14px;
}
@media (min-width: 768px) {
  .album-type-item-descr {
    font-size: 18px;
  }
}
.album-type-item-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .album-type-item-list {
    font-size: 18px;
  }
}
.album-type-item-list li {
  padding-left: 28px;
  min-height: 18px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230D0D0D'/%3E%3Cpath d='M5 9.57237L8.87097 13.125L15 7.5' stroke='%23DFF840' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 18px 18px;
}
@media (min-width: 768px) {
  .album-type-item-list li {
    padding-left: 30px;
    min-height: 20px;
    background-size: 20px 20px;
  }
}
.album-type-item-price {
  font-size: 26px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .album-type-item-price {
    font-size: 36px;
  }
}
.album-type-item-price-block {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  gap: 10px;
  margin-top: auto;
}
.album-type-item-price-old {
  font-size: 21px;
  font-weight: 500;
  color: rgba(0, 17, 34, 0.7);
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .album-type-item-price-old {
    font-size: 24px;
  }
}

.offer-item {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px;
  height: 100%;
  background: #b1b9ff;
  border-radius: 2rem;
}
@media (min-width: 1200px) {
  .offer-item {
    padding: 32px;
  }
}
.offer-item-img {
  display: block;
  margin: -10px auto 3px;
  width: 150px;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .offer-item-img {
    width: 252px;
    margin-top: -32px;
  }
}
.offer-item-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .offer-item-title {
    font-size: 32px;
    line-height: normal;
  }
}
.offer-item-descr {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .offer-item-descr {
    margin-bottom: 30px;
  }
}
.offer-item-link {
  margin-top: auto;
}