.elementor-79 .elementor-element.elementor-element-3763a0e{--display:flex;--justify-content:space-between;--align-items:stretch;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );border-style:solid;--border-style:solid;border-width:0px 0px 0px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;}/* Start custom CSS for html, class: .elementor-element-8e68ba7 */.brands-template {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.brands-template .brand-card {
  background: #ffffff;
  border-radius: 18px;
  min-height: 140px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brands-template .brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.brands-template .brand-card img {
  max-width: 100%;
  width: 100%;
  height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* טאבלט */
@media (max-width: 1024px) {
  .brands-template {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .brands-template .brand-card {
    min-height: 120px;
    padding: 18px;
  }

  .brands-template .brand-card img {
    height: 60px;
  }
}

/* מובייל */
@media (max-width: 767px) {
  .brands-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .brands-template .brand-card {
    min-height: 105px;
    padding: 14px;
    border-radius: 14px;
  }

  .brands-template .brand-card img {
    height: 48px;
  }
}/* End custom CSS */