.recommendation-section {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 0;
}
.recommendation-section__container {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.recommendation-section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
}
.recommendation-section__label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 0;
    color: #23282d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.recommendation-section__title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 0 0;
    color: #1F272F;
}
.recommendation-section__list {
    display: flex;
    gap: 48px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.recommendation-section__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
}
.recommendation-section__img {
    width: 288px;
    height: 288px;
    object-fit: cover;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.recommendation-section__info {
    width: 100%;
}
.recommendation-section__code {
    font-size: 12px;
    color: #5F5F5F;
    margin-bottom: 2px;
    text-align: left;
}
.recommendation-section__name {
    font-size: 14px;
    color: #222222;
    text-align: left;
    font-weight: 500;
}
.recommendation-section__images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-top: 24px;
    gap: 16px;
}
.recommendation-section__caption {
    margin-top: 12px;
    font-size: 16px;
    color: #23282d;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 1250px) {
    .recommendation-section {
        max-width: 100vw;
        margin: 40px 30px 0 30px;
    }
}
/* Desktop responsive adjustments for smaller screens */
@media (max-width: 1200px) {
   
    .recommendation-section__list {
        gap: 32px;
    }
    .recommendation-section__item {
        flex: 1 1 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
    .recommendation-section__img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 1000px) {
    
    .recommendation-section__list {
        gap: 24px;
    }
    .recommendation-section__item {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    .recommendation-section__img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 900px) {
    .recommendation-section {
        max-width: 100vw;
        margin: 40px 30px 0 20px;
    }
   
    .recommendation-section__label {
        font-size: 13px;
    }
    .recommendation-section__title {
        font-size: 18px;
    }
    .recommendation-section__images {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
        position: static;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    .recommendation-section__item {
        width: 48vw;
        min-width: 60px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 0;
        justify-content: flex-start;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
    }
    .recommendation-section__img {
        width: 100%;
        height: 38vw;
        object-fit: cover;
        margin: 0;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        display: block;
    }
    .recommendation-section__caption {
        padding: 4px 8px 8px 8px;
        font-size: 14px;
        text-align: left;
        word-break: break-word;
    }
}
.ev-recommendation-bg {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}