.commonTitleWrapper {
    background: url("../../images/board/board.jpg") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commonTitle {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.69);
    color: #f1f8ff;
}

.newsCompanyGreetingWrapper>div {
    width: 100%;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.newsCompanyGreetingWrapper>div > p {
    margin: 0;
}

.newsCompanyGreetingFirst {
    width: 100%;
    font-size: 79px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 120px;
    color: transparent;
    -webkit-text-fill-color: #12212C00;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #12212C26;
}

.newsCompanyGreetingSecond {
    width: 100%;
    font-size: 52px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -2px;
    position: absolute;
    top: 30px;
    left: 50px;
}

.newsCompanyGreetingSecond > span {
    color: #3137cc;
    transition: color 0.3s ease;
}

.newsCompanyGreetingSecond > span:hover {
    color: #006fff;
    transition: color 0.3s ease;
}

.newsCompanyGreetingThird {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1.1px;
    padding-top: 20px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*검색창*/
.boardSearchWrapper>div {
    position: relative;
    left: 431px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-bottom: 10px;
}

#postFilterType {
    width: 90px;
    height: 30px;
    padding: 0 2px;
    border: 1px solid #006fff40;
    border-radius: 3px;
    background-color: transparent;
}

#filterContentInput {
    width: 130px;
    height: 28px;
    padding: 0 0 0 6px;
    border: 1px solid #006fff40;
    border-radius: 3px;
    background-color: transparent;
}

#filterSearchBtn {
    width: 45px;
    height: 30px;
    padding: 5px;
    font-size: 13px;
    border: 1px solid #006fff40;
    border-radius: 3px;
    background-color: #006fff21 !important;
    cursor: pointer;
}

.boardListTotalWrapper {
    width: 1150px;
    margin-bottom: 200px;
    position: relative;
}


table {
    width: 1150px;
    border-collapse: collapse;
    table-layout: fixed; /* 비율 기반 고정 레이아웃 */
    margin-bottom: 20px;
}

thead th {
    background-color: #006fff21;
}


thead th, tbody td {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #12212c;
    border-bottom: 1px solid #12212c;
}

/* 컬럼 비율 지정 */
/*번호*/
thead th:nth-child(1), tbody td:nth-child(1) {
    width: 10%;
}

/*제목*/
thead th:nth-child(2), tbody td:nth-child(2) {
    width: 80%; /* 제목 */
}

tbody td:nth-child(2) {
    text-align: left; /* 제목은 왼쪽 정렬이 보통 깔끔 */
}

/*날짜*/
thead th:nth-child(3), tbody td:nth-child(3) {
    width: 10%; /* 날짜 */
}

tbody td {
    font-weight: 500;
}

.postNum, .postDate {
    font-size: 13px;
    color: #12212c;
}

.postTitle {
    font-size: 16px;
}

.postTitle > a {
    text-decoration: none;
    color: #12212c;
}

.postTitle > a:hover {
    color: #006fff;
}

.writeBtn {
    position: absolute;
    right: 0;
    color: #12212c;
    text-decoration: none;
    border: 1px solid #12212c;
    padding: 5px;
    border-radius: 10px;
    background-color: #ececec;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.leftBtn,
.rightBtn {
    background-color: white;
    border: 1px solid #006fff40;
    border-radius: 3px;
    cursor: pointer;
}

.pageNumWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageNumWrapper > button {
    border: none;
    background-color: transparent;
    gap: 10px;
    cursor: pointer;
}

.pageNumWrapper > .active {
    color: #006fff;
}

.installAuroraBtn {
    height: 20px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 24px;
    background-color: white;
    color: #006fff;
    text-decoration: none;
    border: 2px solid #006fff;
    border-radius: 50px;
}

.installAuroraBtn:hover {
    background-color: #006fff;
    color: white;
}

.installAuroraBtn > span {
    font-size: 20px;
    line-height: 20px;
}

.installAuroraBtn > img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}


@media screen and (max-width: 1150px) {
    /* 게시판 검색창 */
    .boardSearchWrapper{
        width: 100%;
    }
    .boardSearchWrapper>div {
        left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding-bottom: 10px;
    }

    #postFilterType {
        width: 55px;
        height: 30px;
        padding: 0 2px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: transparent;
    }

    #filterContentInput {
        width: 130px;
        height: 28px;
        padding: 0 0 0 6px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: transparent;
    }
    #filterSearchBtn {
        width: 45px;
        height: 30px;
        padding: 5px;
        font-size: 13px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: #006fff21 !important;
        cursor: pointer;
    }


    /*게시판 본문*/
    .boardListTotalWrapper {
        width: 100%;
        margin-bottom: 200px;
        position: relative;
    }


    table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed; /* 비율 기반 고정 레이아웃 */
        margin-bottom: 20px;
    }

    thead th {
        background-color: #006fff21;
    }


    thead th, tbody td {
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #12212c;
        border-bottom: 1px solid #12212c;
    }

    /* 컬럼 비율 지정 */
    /*번호*/
    thead th:nth-child(1), tbody td:nth-child(1) {
        width: 10%; /* 번호 */
    }

    /*제목*/
    thead th:nth-child(2), tbody td:nth-child(2) {
        width: 80%; /* 제목 */
    }

    tbody td:nth-child(2) {
        text-align: left; /* 제목은 왼쪽 정렬이 보통 깔끔 */
    }

    /*날짜*/
    thead th:nth-child(3), tbody td:nth-child(3) {
        width: 10%; /* 날짜 */
    }

    tbody td {
        font-weight: 500;
    }

    .postNum, .postDate {
        font-size: 13px;
        color: #12212c;
    }

    .postTitle {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }

    .postTitle > a {
        text-decoration: none;
        color: #12212c;
    }

    .postTitle > a:hover {
        color: #006fff;
    }


}


@media screen and (max-width: 768px) {
    .commonTitle {
        font-size: 36px;
    }


    .newsCompanyGreetingWrapper>div {
        width: 272px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .newsCompanyGreetingFirst {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        letter-spacing: 1px;
        font-weight: 700;
        line-height: 120px;
        color: transparent;
        -webkit-text-fill-color: #12212C00;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #12212C26;
    }

    .newsCompanyGreetingSecond {
        width: 100%;
        font-size: 30px;
        font-weight: 700;
        line-height: 100px;
        letter-spacing: -2px;
        position: absolute;
        top: 30px;
        left: 36px;
    }

    .newsCompanyGreetingSecond > span {
        color: #3137cc;
        transition: color 0.3s ease;
    }

    .newsCompanyGreetingSecond > span:hover {
        color: #006fff;
        transition: color 0.3s ease;
    }

    .newsCompanyGreetingThird {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: -1.1px;
        padding-top: 20px;
        padding-bottom: 120px;
    }

    /* 게시판 검색창 */
    .boardSearchWrapper{
        width: 100%;
    }
    .boardSearchWrapper>div {
        left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding-bottom: 10px;
    }

    #postFilterType {
        width: 55px;
        height: 30px;
        padding: 0 2px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: transparent;
    }

    #filterContentInput {
        width: 130px;
        height: 28px;
        padding: 0 0 0 6px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: transparent;
    }
    #filterSearchBtn {
        width: 45px;
        height: 30px;
        padding: 5px;
        font-size: 13px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: #006fff21 !important;
        cursor: pointer;
    }


    /*게시판 본문*/
    .boardListTotalWrapper {
        width: 100%;
        margin-bottom: 200px;
        position: relative;
    }


    table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed; /* 비율 기반 고정 레이아웃 */
        margin-bottom: 20px;
    }

    thead th {
        background-color: #006fff21;
    }


    thead th, tbody td {
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #12212c;
        border-bottom: 1px solid #12212c;
    }

    /* 컬럼 비율 지정 */
    /*번호*/
    thead th:nth-child(1), tbody td:nth-child(1) {
        display: none;
    }

    /*제목*/
    thead th:nth-child(2), tbody td:nth-child(2) {
        width: 100%; /* 제목 */
    }

    tbody td:nth-child(2) {
        text-align: left; /* 제목은 왼쪽 정렬이 보통 깔끔 */
    }

    /*날짜*/
    thead th:nth-child(3), tbody td:nth-child(3) {
        display: none;
    }

    tbody td {
        font-weight: 500;
    }

    .postNum, .postDate {
        font-size: 13px;
        color: #12212c;
    }

    .postTitle {
        padding-left: 10px;
        font-size: 14px;
    }

    .postTitle > a {
        text-decoration: none;
        color: #12212c;
    }

    .postTitle > a:hover {
        color: #006fff;
    }

}


@media screen and (max-width: 480px) {
    .commonTitle {
        font-size: 30px;
    }

    /* 게시판 검색창 */
    .boardSearchWrapper{
        width: 100%;
    }
    .boardSearchWrapper>div {
        left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding-bottom: 10px;
    }

    #postFilterType {
        width: 55px;
        height: 30px;
        padding: 0 2px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: transparent;
    }

    #filterContentInput {
        width: 130px;
        height: 28px;
        padding: 0 0 0 6px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: transparent;
    }
    #filterSearchBtn {
        width: 45px;
        height: 30px;
        padding: 5px;
        font-size: 13px;
        border: 1px solid #006fff40;
        border-radius: 3px;
        background-color: #006fff21 !important;
        cursor: pointer;
    }


    /*게시판 본문*/
    .boardListTotalWrapper {
        width: 100%;
        margin-bottom: 200px;
        position: relative;
    }


    table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed; /* 비율 기반 고정 레이아웃 */
        margin-bottom: 20px;
    }

    thead th {
        background-color: #006fff21;
    }


    thead th, tbody td {
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #12212c;
        border-bottom: 1px solid #12212c;
    }

    /* 컬럼 비율 지정 */
    /*번호*/
    thead th:nth-child(1), tbody td:nth-child(1) {
        display: none;
    }

    /*제목*/
    thead th:nth-child(2), tbody td:nth-child(2) {
        width: 100%; /* 제목 */
    }

    tbody td:nth-child(2) {
        text-align: left; /* 제목은 왼쪽 정렬이 보통 깔끔 */
    }

    /*날짜*/
    thead th:nth-child(3), tbody td:nth-child(3) {
        display: none;
    }

    tbody td {
        font-weight: 500;
    }

    .postNum, .postDate {
        font-size: 13px;
        color: #12212c;
    }

    .postTitle {
        padding-left: 10px;
        font-size: 14px;
    }

    .postTitle > a {
        text-decoration: none;
        color: #12212c;
    }

    .postTitle > a:hover {
        color: #006fff;
    }


}