@import url('./common/layout.css');
@import url('../component/board/boardItem.css');
@import url('../component/header/header.css');

.write {
    width: 86%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    padding: 30px 0 12px 0;
}

.write h2 {
    width: 100%;
    margin: 0;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
    text-align: center;
}

.write h2 b {
    font-weight: 700;
}

.searchRow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.write a {
    width: 88px;
    height: 34px;
    margin-left: auto;
    padding: 0;
    border-radius: 8px;
    background-color: #aca0eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(172, 160, 235, 0.35);
}

.write a:hover {
    background-color: #7f6aee;
}

.boardList {
    width: 86%;
    height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    overflow: visible;
    padding-bottom: 24px;
}

.searchBox {
    display: none;
}

.sortRow {
    display: none;
}

.isHidden {
    display: none;
}