.brand-page {
  min-height: 70vh;
}

/* FILTERS */
.brand-filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  outline: #ffffff;
  font-family: "Roboto", Sans-serif;
  color: #666666 !important;
}

.brand-filters input,
.brand-filters select {
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: #EAEAEA;
  width: 100%;
  font-size: 14px;
  outline: #ffffff;
  font-family: "Roboto", Sans-serif;
  color: #666666;
}

/* GRID */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  min-height: 300px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100%x;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* MORE BUTTON */
#more {
  margin: 30px auto 0;
  display: block;
  color: #fff;
  cursor: pointer;
  background-color: var(--e-global-color-secondary, #364099);
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  border-radius: 6px 6px 6px 6px;
  padding: 6px 20px 6px 20px;
  border: none;
}

#more:hover {
  background: #252b69;
}


/* =========================
   TABLET (Elementor)
   ========================= */
@media screen and (max-width:1024px) and (min-width:768px) {
  .brand-page .brand-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* =========================
   MOBILE (Elementor)
   ========================= */
@media screen and (max-width:767px) {
  .brand-page .brand-filters {
    grid-template-columns: 1fr !important;
  }

  .brand-page .brand-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}