.yokohama-bluearth-promo {
  padding-bottom: 16px;
}

.heading-main {
  font-size: 40px;
  font-weight: 700;
}

.heading-sub {
  font-size: 32px;
  font-weight: 700;
}

.hero-section-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.yokohama-bluearth-models-of-tires {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.tire-model-container {
  display: flex;
  width: 100%;
  gap: 16px;
  justify-content: space-between;
}

.tire-model-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  width: 235px;
  height: 200px;
  overflow: hidden;
  position: relative;
  align-items: center;
  text-decoration: none;
  color: #000;
}

.tire-model-item:hover {
  text-decoration: none;
  color: #000;
}

.tire-model-item:visited {
  text-decoration: none;
  color: #000;
}

.tire-model-item:active {
  text-decoration: none;
  color: #000;
}

.tire-model-img {
  width: 100%;
  height: 60%;
  max-width: 160px;
  padding-top: 20px;
  object-fit: cover;
  object-position: top;
}

.tire-model-season-img {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  z-index: 10;
}

.tire-model-info {
  width: 100%;
  background-color: #fff;
  padding: 0px 8px;
}

.tire-model-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 16px 0px;
  border-top: 1px solid #c9c9c9;
}

/* Responsive grid layout for tire models */
@media (max-width: 1023px) {
  .tire-model-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    justify-content: center;
  }

  .tire-model-item {
    width: 100%;
  }

  .tire-model-img {
    height: 75%;
    max-width: 220px;
    padding-top: 8px;
  }
}

@media (max-width: 429px) {
  .tire-model-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-content: center;
  }

  .tire-model-item {
    width: 100%;
  }

  .tire-model-img {
    height: 75%;
    max-width: 240px;
    padding-top: 8px;
  }
}
