/* ÀÎ»ç¸» */
.greeting_text h2 { font-size: 2.8rem; font-weight: 600; margin-bottom: 30px; line-height: 150%; }
.greeting_text p { font-size: 1.7rem; color: #444; line-height: 180%; margin-bottom: 18px; }
.greeting_text strong { font-size: 1.8rem; font-weight: 600; display: block; margin-top: 30px; color: #333; }

/* Á¦Ç°¼Ò°³ 3°³ °íÁ¤ ·¹ÀÌ¾Æ¿ô */
.products_list_wrap {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.products_list_wrap .products_list {
    flex: 1;
    min-width: 0;
}
@media all and (max-width: 1024px) {
    .products_list_wrap {
        flex-direction: column;
        gap: 10px;
    }
}