.motogrid {
    padding: 5%;
}

.moto-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brand-logo {
    color:#1b1b1b;
}

.card {
  background-color: #fff;
  padding: 4%;
  display: flex;
  flex-direction: column;
  align-items: stretch;

    opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
   will-change: opacity, transform;
}


.card.visible {
  opacity: 1;
  transform: translateY(0);
}



.card:hover {
  background-color: #f9f9f9;
}

.card img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 35px;
}

.top-line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #999;
  padding-bottom: 8px;
  font-weight: bold;
  font-size: 1.4em;
}

.bottom-line {
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
  font-size: 14px;
}

.bottom-line .label {
  font-size: 12px;
  color: #777;
}

.bottom-line strong {
    font-size:1.2em;
}

.moto-container .btn {
  padding: 10px;
  background-color: #fff;
  color: #1b1b1b;
  border: 1px solid #999;
  cursor: pointer;
  text-align: center;
  font-size: 0.9em;
  transition: background 0.2s;
}

.moto-container .btn:hover {
  background-color: #1b1b1b;
  color: #fff;
}

.moto-name, .moto-year, .left, .right {
  color: #1b1b1b;
}

.left, .right {
  text-transform: uppercase;
}

.right {
  text-align: right;
}