.card-button-container {
  margin-top: 10px;

  .card-button-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 10px;
    border-radius: 10px;
    padding: 15px;
    min-height: 50px;
    background: #FFFFFF;
    box-sizing: border-box;

    &:last-child {
      margin: 0;
    }

    .button-item-left {
      flex: 1;

      .button-item-left-title {
        /* stylelint-disable-next-line value-no-vendor-prefix */
        display: -webkit-box;
        overflow: hidden;
        font-size: var(--font-size-l);
        font-weight: 600;
        text-overflow: ellipsis;
        color: #001849;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 20px;
      }

      /* stylelint-disable */
      .button-item-left-subtitle {
        margin-top: 5px;
        font-size: var(--font-size-xs);
        color: rgb(0 24 73 / 60%);
        line-height: 1;
      }
    }
  }

  .button-arrow {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-image: url("../../../assets/imgs/icon-arrow-gray.png");
    flex-shrink: 0;
  }
}
