.pageCatPost {
    padding: 50px 0;
    background: #fff;
}

.head_pageCatPost {
}
.head_pageCatPost h1 {
    margin: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;
    font-size: 2rem;
    color: #000;
}

.pageListPost {
}
.gridListPost {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    grid-gap: 20px;
}

.boxItemSidebar {
    margin-bottom: 20px;
}
.boxItemSidebar h3 {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #000;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    font-style: italic;
    color: #000;
    cursor: pointer;
}

.category_list > ul > li {
    border-bottom: 1px dashed #ededed;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.category_list > ul > li > a {
    font-size: 0.9rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category_list > ul > li:hover > a > span {
    font-weight: 800;
}
.category_list > ul > li > a > span.count {
}
.category_list .sub_category {
    margin-top: 10px;
    margin-left: 10px;
}
.category_list .sub_category li + li {
    margin-top: 10px;
    padding-top: 10px;
}
.category_list .sub_category li a {
    font-size: 0.8rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.formSearchPost form {
    position: relative;
}
.formSearchPost form input[type="search"] {
    height: 40px;
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    font-size: 0.8rem;
}
.formSearchPost input[type="search"]::placeholder {
    font-style: italic;
    font-size: 0.8rem;
}
.formSearchPost input[type="search"]:focus {
    border: 1px solid #f1f1f1;
}
.formSearchPost button {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    background: #f1f1f1;
    border: 0;
    border-radius: 0 10px 10px 0;
}
.formSearchPost button:hover {
    background: #f1f1f1;
}
