.inner {
    width: 96%;
    margin-top: 100px;
    margin-left: 2%;
    height: auto;
}

.header {
    width: 100%;
    height: 80px;
}

.title {
    font-size: 40px;
    color: var(--main);
    font-weight: 300;


}

.subtitle {
    font-size: 20px;
    color: var(--text);
    font-weight: 300;
}

.content {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.filter {
    width: 100%;
    height: 40px;
    background-color: var(--second);
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.filter div {
    display: inline-block;
    vertical-align: top;
    height: 40px
}

.result-count {
    line-height: 40px;
    margin-left: 10px;
    color: var(--text);
    font-size: 16px;
    font-weight: 200;
}

.sort {
    float: right;
    margin-right: 10px;
}

.sort select {
    width: 300px;
    height: 30px;
    margin-top: 5px;
    background-color: var(--second);
    filter: brightness(70%);
    color: var(--text);
    font-weight: 300;
    font-size: 14px;
}

.search {
    margin-left: 50px;
    float: right;
    margin-right: 10px;
}

.search-inner {
    height: 20px;
    margin-top: 5px;
    background-color: var(--second);
    filter: brightness(70%);
    width: 230px;
}


.search-inner img {
    height: 10px;
    margin-top: 10px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: top;
}

.search-inner input {
    width: 190px;
    background-color: transparent;
    line-height: 30px;
    height: 30px;
    color: var(--text);
    font-family: 200;
    display: inline-block;
    vertical-align: top;
}


.list {
    width: 100%;
    height: auto;
    margin-left: 10px;
    margin-top: 30px;
}

.article {
    width: 97%;
    height: 60px;
    margin-bottom: 10px;
    cursor: pointer;
}

.article:hover {
    background-color: rgba(126, 126, 126, 0.185);
}
.content-title {
    color: var(--main);
    font-size: 25px;
    font-weight: 300;
    cursor: pointer;
    margin-left: 10px;
}


.content-information {
    color: var(--grey);
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;

}