#section1 {
    margin-top: 100px;
}

#section1 .content {
    width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.flex_row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#selectBoxContainer {
    width: 135px;
}

.searchBox {
    width: 85%;
    position: relative;
}

.searchBox .searchBtn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: #1459bd;
}

.total {
    font-size: 18px;
    color: #959595;
    padding-left: 10px;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'PretendardBold';
}

#totalCount {
    color: #535353;
}

.title-text {
    text-align: left;
    font-weight: bold;
}

.content-preview {
    font-size: 16px;
    text-align: left;
    color: #959595;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    #section1 {
        margin-top: 50px;
    }

    #section1 .content {
        width: 100%;
    }

    .searchBox {
        width: 100%;
    }

    .flex_row {
        gap: 20px;
    }

    .total {
        font-size: 16px;
    }

    .dx-header-row>td>.dx-datagrid-text-content {
        font-size: 14px;
    }

    .title-text {
        font-size: 14px;
    }

    .content-preview {
        font-size: 12px;
        margin-top: 0;
    }

    .dx-datagrid .dx-row>td {
        font-size: 14px !important;
    }

    .dx-pager .dx-pages .dx-page {
        font-size: 14px !important;
    }
}