.search-container {
    margin-top: 42px;
    margin-bottom: 42px;
    display: flex;
    align-items: center; /* 세로 정렬 */
    padding: 0; /* 내부 여백 제거 */
    background-color: #F3F5F9;
    border-radius: 8px;

    height: 108px;

}

#category{
    margin-left: 20px;
}
.search-container select{
    width: 220px; /* 너비 */
    height: 44px; /* 높이 */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 10px; /* 좌우 여백 */
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}
.search-container input {
    width: 1045px; /* 검색창 너비 */
    height: 44px; /* 검색창 높이 */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 15px; /* 좌우 여백 */
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}
.search-container button{
    height: 44px; /* 버튼 높이 */
    width: 100px;
    background-color: #03428E;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    padding: 0 20px; /* 좌우 여백 */
    cursor: pointer;
    margin-right: 20px;
    margin-left: 20px;
    display: flex; /* 플렉스박스 사용 */
    align-items: center; /* 세로 정렬 */
    justify-content: center; /* 가로 정렬 */
    gap: 5px; /* 텍스트와 아이콘 간격 */
}
.search-container button img {
    height: 18px; /* 아이콘 크기 */
    width: 18px;
    vertical-align: middle; /* 아이콘 정렬 */
}

.post-list {
    margin-top: 20px;
}

.post-item {

    height: 68px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
}

.post-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.post-text-box{
    margin: 0px;
}

.post-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0px;
    align-items: center;
}

.post-item h3 span {

}

.post-item p {
    font-size: 17px;
    color: #555;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 15px;
    color: #777;
    text-align: right;

}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 42px;
    gap: 5px;
}

.pagination button {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.pagination button.active {
    background-color: #03428E;
    color: white;
    border-color: #03428E;
}

.pagination button:hover {
    background-color: #C7DFF4;
    border-color: #C7DFF4;
}

.pagination button.one{
    border: none; /* 테두리 제거 */
    background-color: transparent; /* 배경색 제거 */

    cursor: pointer;
}