.yoo-card-payment-block {
  width: calc(33.3333333333% - 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* Css for generator */
  border-radius: var(--yoo-payment-block-card-border-radius, 0.625rem);
  border-color: var(--yoo-payment-block-card-border-color, transparent);
  border-width: var(--yoo-payment-block-card-border-width, 0px);
  border-style: solid;
  padding: var(--yoo-payment-block-card-padding-top, 1rem) var(--yoo-payment-block-card-padding-right, 1rem) var(--yoo-payment-block-card-padding-bottom, 1rem) var(--yoo-payment-block-card-padding-left, 1rem);
  background-color: var(--yoo-payment-block-card-background-color, #fafafa);
  color: var(--yoo-payment-block-card-text-color, inherit);
  /* End of generator */
}

.yoo-card-payment-block * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.yoo-card-payment-block .group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  height: 100%;
}

.yoo-card-payment-block .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1/1;
  padding: 1rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.yoo-card-payment-block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.yoo-card-payment-block .caption {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0;
}

.yoo-card-payment-block .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.yoo-card-payment-block .title-link {
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.yoo-card-payment-block .title-link:hover {
  color: #1e84bf;
}

@media (max-width: 480px) {
  .yoo-card-payment-block {
    width: calc(50% - 0.5rem);
    padding: 1rem 0.75rem;
  }

  .yoo-card-payment-block .title-link {
    font-size: 0.875rem;
  }
}