.cr-template-gallery-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;

  &__image {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    background-color: #f5f5f5;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  &__content {
    padding: 10px 16px;
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  &__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  &__action {
    svg {
      width: 36px;
      height: 36px;
    }
  }

  &__price {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #f39c12;
    display: flex;
    gap: 4px;
    align-items: baseline;
    justify-content: flex-start;
  }

  &__price-description, &__description {
    font-size: 14px;
    line-height: 20px;
  }

  &__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #3f3d56;
    margin: 4px 0 0 0;
  }
}