/* productBg */
.productBg {
  padding: var(--spacing-6) 0 0;
  margin: 0 auto;
  background: url("/global/energy/products/img/bg_products.jpg") no-repeat 50% 0;
  background-size: 1440px auto;
}

@media (width <= 660px) {
  .productBg {
    background: url("/global/energy/products/img/bg_products_sp.jpg") no-repeat 50% 0;
    background-size: contain;
  }
}

@media (1440px < width) {
  .productBg {
    background-size: contain;
  }
}

/* productCardLink */
.productCardLink {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-3);
}

.productCardLink__item {
    width: calc((100% - var(--spacing-3) * 2) / 3);
}

.productCardLink__link {
    position: relative;
    display: flex;
    color: var(--black-80-opaque);
    border: solid 1px var(--black-20);
    border-radius: var(--border-radius-2);
    overflow: hidden;
}

.productCardLink__link:focus-visible {
    box-shadow: var(--shadow), var(--focus-shadow);
}

.productCardLink__link:link,
.productCardLink__link:hover,
.productCardLink__link:visited,
.productCardLink__link:focus-visible {
    color: var(--black-80-opaque);
}

.productCardLink__img {
    width: calc(50% - var(--spacing-3) / 2);
    position: relative;
    display: block;
    flex-shrink: 0;
    aspect-ratio: 1;
    overflow: hidden;
    border-right: 1px solid var(--black-20);
}

.productCardLink__img img {
    width: 100%;
    height: 100%;
    transition: scale 0.3s ease-out;
    object-fit: cover;
    object-position: 50% 50%;
}

.productCardLink__link:hover .productCardLink__img img,
.productCardLink__link:focus-visible .productCardLink__img img {
    scale: 1.1;
}

.productCardLink__text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-1);
    padding: var(--spacing-3) var(--spacing-1) var(--spacing-3) var(--spacing-3);
    background-color: var(--white-100);
    font: var(--font-shorthand-heading-large-1);
    font-weight: bold;
    overflow-wrap: anywhere;
}

@media (width <= 1064px) {
    .productCardLink__item {
        width: calc((100% - var(--spacing-3)) / 2);
    }
}

@media (width <= 660px) {
    .productCardLink__item {
        width: 100%;
    }

    .productCardLink__img {
        width: calc(50% - var(--spacing-2) / 2);
    }

    .productCardLink__text {
        padding: var(--spacing-2) var(--spacing-1) var(--spacing-2) var(--spacing-2);
    }
}

/* spacer */
@media (660px < width) {
    .Section.spacer-top{
        margin-top: var(--spacing-8);
    }
    .Section.spacer-bottom{
        margin-bottom: var(--spacing-8);
    }
}

/* mobileSeparator */
.mobileSeparator {
    display: none;
    border-top: solid 1px var(--black-10-opaque);
}

@media (width <= 660px) {
    .mobileSeparator {
        display: block;
    }
}

/* highlights */
.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-3);
}

.highlights__item {
    display: flex;
    gap: var(--spacing-4);
    width: calc((100% - var(--spacing-3) * 2) / 3);
}

.highlights__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-2);
    border-left: 5px solid var(--yanmar-premium-red-100);
    padding: var(--spacing-2);
    padding-left: 25px;
    min-height: 144px;
}

.highlights__heading {
    font: var(--font-shorthand-heading-large-2);
}

.highlights__emphasis {
    font: var(--font-shorthand-heading-large-4);
}

.highlights__description {
    font: var(--font-shorthand-base-bold);
}

@media (width <= 1064px) {
    .highlights__item {
        width: calc((100% - var(--spacing-3)) / 2);
    }
}

@media (width <= 660px) {
    .highlights__item {
        width: 100%;
    }
}
