.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.btn-purchase{
    background-color: #1BA0C6;
    color: white;
}
.line-button {
  display: flex;
  align-items: center;
  gap: 1rem; /* távolság a vonal és a gomb között */
}

.line-button::before,
.line-button::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ccc; /* vonal színe */
}

.line-button a.btn-purchase {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.line-button a.btn-purchase::before {
  content: '';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.05rem; /* 28:21 arány */
  background-color: currentColor;
  -webkit-mask-image: url('/themes/custom/bhrt/img/ic/cart.svg');
  mask-image: url('/themes/custom/bhrt/img/ic/cart.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}