.elementor-2744 .elementor-element.elementor-element-120bd42{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-120bd42 *//* ===== Brands grid – responsive & styled titles ===== */

.mt-brands-grid{
  display: grid;
  grid-template-columns: repeat(var(--mt-cols, 3), minmax(0, 1fr));
  gap: 24px;
}

.mt-brand{
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.mt-brand__img{
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  /*border-radius: 14px;*/
  background: #111;
}

.mt-brand__img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.mt-brand:hover .mt-brand__img img{
  transform: scale(1.05);
}

/* ===== Title (Brand name) ===== */
.mt-brand__name{
  margin-top: 10px;
  font-family: "Georgia", serif;       /* ΝΕΟ FONT */
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 17px); /* Πιο μικρό και πιο κομψό */
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #0b0a12;                      /* Σκούρο μαύρο όπως στο theme */
  text-transform: ;
  transition: color 0.3s ease;
}

.mt-brand:hover .mt-brand__name{
  color: #b5b5b5;                      /* Ελαφρύ fade στο hover */
}

/* ===== Breakpoints ===== */

/* Tablet και κάτω */
@media (max-width: 1024px){
  .mt-brands-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mt-brand__img{ aspect-ratio: 4/3; }
  .mt-brand__name{ font-size: clamp(13px, 3.5vw, 16px); }
}

/* Κινητό */
@media (max-width: 480px){
  .mt-brands-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mt-brand__img{ aspect-ratio: 1/1; }
  .mt-brand__name{ font-size: 12px; line-height: 1.1; }
}

/* Πολύ μικρές οθόνες */
@media (max-width: 360px){
  .mt-brands-grid{ grid-template-columns: 1fr; }
}/* End custom CSS */