.car-type-section {
  padding: 40px 5%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.section-title-underline {
  width: 30px;
  height: 3px;
  background-color: #00a040;
  margin: 10px auto 0;
}

/* ===== List Container ===== */
.bl_carType_list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== Card Item ===== */
.bl_carType_item {
  flex: 1 1 calc(33.33% - 24px);
  max-width: 380px;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.bl_carType_item a {
  display: block;
  text-decoration: none;
  padding: 25px;
  height: 100%;
  color: #333;
  position: relative;
}

.bl_carType_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image wrapper */
.bl_carType_img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bl_carType_img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.bl_carType_item:hover .bl_carType_img img {
  transform: scale(1.05);
}

/* Data list styles */
.bl_carType_item dl {
  text-align: center;
}

.bl_carType_item dt {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 15px;
  transition: background-color 0.4s ease;
}

.bl_carType_item dd {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.bl_carType_item dd .sh_ja {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 1.2rem;
}

.bl_carType_item dd .sh_lang {
  display: block;
  font-weight: bold;
  color: #333;
  font-size: 1.6rem;
}

/* Arrow Circle */
.bl_carType_arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: #00a040;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.bl_carType_arrow svg {
  width: 20px;
  height: 20px;
}

/* Hover state for arrow and pill */
.bl_carType_item:hover .bl_carType_arrow {
  background-color: #333;
}

/* ===== Guide Wrapper ===== */
.car-guide-wrapper {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  list-style: none;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .bl_carType_list {
    gap: 10px;
    padding: 0 10px;
  }

  .bl_carType_item,
  .car-guide-wrapper {
    flex: 1 1 calc(25% - 10px);
    min-width: 150px;
    max-width: none;
  }

  .bl_carType_item a {
    padding: 15px 10px;
  }

  .bl_carType_img {
    height: 100px;
  }

  .bl_carType_item dt {
    padding: 5px 15px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .bl_carType_item dd {
    font-size: 0.9rem;
  }

  .bl_carType_item dd .sh_lang {
    font-size: 1rem;
  }

  .bl_carType_arrow {
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px;
  }

  .bl_carType_arrow svg {
    width: 14px;
    height: 14px;
  }

  .car-guide-wrapper {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .bl_carType_item,
  .car-guide-wrapper {
    flex: 1 1 calc(50% - 10px);
  }
}
