body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: sans-serif;
  background: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  align-items: stretch;
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ccc;
  background: #fff;
  text-align: center;
  padding: 0;
  box-shadow: 0 0 2px rgba(0,0,0,0.05);
  overflow: hidden;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
  border-radius: 8px;
}

.brand-button {
  width: 100%;
  padding: 10px 0;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid gray;
  background: #000;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
