

/* Start:/local/components/app/prices.cards/templates/.default/style.css?17845241003162*/
.prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 413px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(57, 70, 133, .12);
}

.price-card__cover {
  min-height: 100%;
  overflow: hidden;
}

.price-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  user-select: none;
}

.price-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 96px 16px;
}

.price-card h3 {
  margin: 0 0 0.5em;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 400;
  line-height: .9;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 27px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--online-blue, #2242e6);
  border-bottom: 2px solid var(--online-blue, #2242e6);
  transform: rotate(-45deg);
}

.price-card strong {
  margin-top: auto;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.price-card strong i {
  font-style: normal;
  font-size: 0.4em;
  font-weight: bold;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  padding: 18px 40px;
  border: 0;
  border-radius: 999px;
  background: var(--online-blue, #2242e6);
  box-shadow: 0 4px 8px rgba(25, 46, 151, .32);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.price-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(25, 46, 151, .28);
}

.price-card__btn {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 64px;
  border-radius: 16px;
  font-size: 24px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .prices {
    gap: 18px;
  }
}

@media (max-width: 1000px) {
  .prices {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .prices {
    gap: 16px;
  }

  .price-card {
    grid-template-columns: 47% 53%;
    min-height: 253px;
    border-radius: 18px;
  }

  .price-card__content {
    padding: 24px 18px 64px 10px;
  }

  .price-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .price-card ul {
    gap: 8px;
    margin-bottom: 12px;
  }

  .price-card li {
    padding-left: 17px;
    font-size: 10px;
  }

  .price-card li::before {
    width: 7px;
    height: 4px;
    border-width: 1px;
  }

  .price-card strong {
    font-size: 25px;
  }

  .price-card__btn {
    left: 10px;
    right: 10px;
    bottom: 9px;
    min-height: 45px;
    border-radius: 10px;
    font-size: 15px;
  }
}
/* End */
/* /local/components/app/prices.cards/templates/.default/style.css?17845241003162 */
