/* 검색창 */
.search {
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('../images/searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
}

.sort-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* 게시물 */
.board-container {
    width: 80%;
    margin: 0 auto;
}

.board-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.left-container, .right-container {
    width: 15%;
    margin-top: 250px;
}

.board-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.board-item:hover {
    transform: scale(1.03);
}

.board-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.board-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.board-meta {
    font-size: 14px;
    color: #666;
}
