@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

.searchResult_content {
    width: 100%;
    max-width: 1400px; /* 최대 넓이를 제한하고, 화면에 맞춰 너비가 유동적으로 변경 */
    margin: 40px auto;
    padding: 0 20px; /* 양 옆에 여백 추가 */
}
.searchResult_content1 {
    width: 100%;
    max-width: 1360px;
    margin: auto;
    padding: 20px;
    height: auto;
    display: flex;
}
.searchResult_content1 > div {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    font-size: 22px;
    text-align: center;
}
.searchResult_content1 > div div{
    margin: auto;
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Pretendard-Regular';
}

.searchResult_content2 {
    display: flex;
    flex-direction: column; /* 세로 배치로 변경 */
    width: 100%;
    max-width: 1360px;
    margin: auto;
    background-color: white;
    border-radius: 3px;
    padding: 20px;
}
.searchItem_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 왼쪽 정렬 */
    margin-left: 0;
    gap: 20px;
}
.searchItem_container a {
    color: #000;
    font-family: 'Pretendard-Regular';
}
.searchItem {
    width: 240px; /* 기본 크기 */
    height: auto;
    margin-bottom: 20px;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}
.searchItem_img {
    flex: 6;
    display: flex;
    overflow: hidden;
    border-radius: 8px;
}
.searchItem_img img {
    width: 100%;
    height: auto;
    max-width: 230px;
    border-radius: 8px;
    transition: transform 0.5s ease;
}
.searchItem:hover .searchItem_img > img {
    transform: scale(1.1);
}
.searchItem_title {
    flex: 1.2;
    display: flex;
    width: 100%;
    text-align: center;
    font-family: 'Pretendard-Regular';
}
.searchItem_title div {
    margin: auto;
    width: 90%;
    max-height: 36px;
    padding: 3px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 16px;
    overflow: hidden;
    font-size: 14px;
    font-family: 'Pretendard-Regular';
}
.searchItem_info {
    flex: 1;
    width: 100%;
    display: flex;
    border-bottom: 2px solid #ccc;
    margin: auto;
    width: 92%;
}
.searchItem_info_left {
    flex: 1;
    display: flex;
}
.searchItem_info_left > div:first-child {
    flex: 1.5;
    display: flex;
}
.searchItem_info_left > div:first-child span{
    margin: auto;
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}
.searchItem_info_left > div:nth-child(2) {
    flex: 4;
    display: flex;
    max-width: 90px;
    overflow: hidden;
}
.searchItem_info_left > div:nth-child(2) span {
    margin: auto 0px;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}
.searchItem_info_right {
    flex: 1;
    display: flex;
}
.searchItem_info_right > div:first-child {
    flex: 2;
    display: flex;
}
.searchItem_info_right > div:first-child span {
    margin: auto;
    font-size: 14px;
    font-family: 'Pretendard-Regular';
}
.searchItem_info_right > div:nth-child(2) {
    flex: 1;
    display: flex;
}
.searchItem_info_right > div:nth-child(2) span {
    margin: auto;
    font-size: 14px;
    color: #e6d260;
    font-weight: bold;
    font-family: 'Pretendard-Regular';
}
.searchItem_sell {
    flex: 1;
    display: flex;
    margin: auto;
    width: 92%;
}
.searchItem_sell_left {
    flex: 4;
    display: flex;
}
.searchItem_sell_left img {
    margin: auto;
}
.searchItem_sell_right {
    flex: 6;
    display: flex;
}
.searchItem_sell_right > div:first-child {
    flex: 0.8;
    display: flex;
}
.searchItem_sell_right > div:first-child span {
    margin: auto;
    font-size: 14px;
    font-family: 'Pretendard-Regular';
}
.searchItem_sell_right > div:nth-child(2) {
    flex: 0.8;
    display: flex;
    overflow: hidden;
}
.searchItem_sell_right > div:nth-child(2) span {
    margin: auto 0px;
    font-size: 14px;
    overflow: hidden;
    font-family: 'Pretendard-Regular';
}

.searchResult_content3 {
    width: 100%;
    max-width: 1400px;
    height: 200px;
    display: flex;
    margin: auto;
}
.searchResult_content3 button {
    margin: auto;
    height: 58px;
    width: 180px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-color: #4286f4;
    border-radius: 8px;
    transition: 0.5s;
    border: none;
    font-family: 'Pretendard-Regular';
}
.searchResult_content3 button:hover {
    background-color: #71a8ff;
    transition: 0.5s;
}