.recommend__wrap {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.recommend__menu {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.recommend__menu-icon {
    flex-shrink: 0;
    width: 17px;
    height: 25.38px;
    background-image: url('../images/common/click.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.recommend__menu-text {
    color: #000000;
    text-align: right;
    font-family: "M Plus 1p", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 175%;
    letter-spacing: 0.05em;
}

.recommend__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    width: 100%;
    row-gap: 30px;
}

.recommend__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 31.25%;
    position: relative;
}

.recommend__item-image {
    align-self: stretch;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
}

.recommend__item-image-icon {
    background: #000000;
    border-radius: 0px 0px 0px 10px;
    opacity: 0.7;
    width: 90px;
    height: 45px;
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.recommend__item-text {
    color: #000000;
    text-align: left;
    font-family: "M Plus 1p", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 175%;
    letter-spacing: 0.05em;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 500px) {

    .recommend__item {
        display: flex;
        flex-direction: column;
        gap: 3.2vw;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        width: 100%;
        height: auto;
        position: relative;
    }
}