.motorcycle-recommendation {
  background-color: black;
  padding: 64px 0;
  /* min-height: 600px; */
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  color: white;
}

@media only screen and (min-width: 1200px) {
  .grid-section {
    max-width: 80%;
    margin: 0 auto;
  }
}

.grid-section .image-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

h4 {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.img-box {
  height: 100%;
  width: 100%;
  position: relative;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-desc {
  color: white;
}

.content-desc p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 24px;
}

.content-desc button {
  border: 1px solid #a7a7a7;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: transparent;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 22.4px;
  font-family: "Montserrat";
  font-size: 14px;
}

.mobile-section {
  display: none;
}

@media only screen and (max-width: 767px) {
  .motorcycle-recommendation {
    padding: 32px 24px;
    min-height: auto;
  }

  .grid-section {
    display: none;
  }

  .mobile-section {
    display: block;
  }

  .grid-section-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    color: white;
    margin-block: 24px;
    gap: 10px;
  }

  h4 {
    font-size: 28px;
    line-height: 32px;
  }

  .image-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 100%;
  }

  .content-desc button {
    height: 48px;
    font-size: 12px;
  }

  .content-desc p {
    margin-bottom: 16px;
  }
}
