/* Fonts */
.grid .item.post .name {
    font-family: 'MediaSans-Bold';
    font-size: 16px;
}
.grid .item.post .subtitle {
    font-size: 13px;
}

/* View fonts */
#post header .category {
    font-family: 'MediaSans-Regular';
    color: var(--current-color);
}
#post .details .date {
    text-transform: none;
    font-size: 13px;
}


/* Layout */
#posts .page_name {
    margin-bottom: 10px;
}
#posts .filters .filter .name {
    font-size: 16px;
    background-size: 12px;
    padding-left: 20px;
}
#posts .highlights .item.post .category,
#posts .highlights .item.post .details {
    padding: 0 var(--default-gap);
}
#posts .grid {
    padding: 0 var(--default-gap);
}
#posts .categories .grid .item:nth-child(n+2) {
    display: none;
}

/* Item */
#posts .grid .item .category,
#posts .categories .item .category {
    display: none;
}
#posts .item {
    margin-bottom: 50px;
}
#posts .highlights .item.post .thumbnail {
    padding-top: 65%;
}
#posts .highlights .item.post .category {
    border-bottom: 1px solid black;
    margin-bottom: 15px;
    padding-bottom: 3px !important;
}
.grid .item.post .thumbnail {
    padding-top: 100%;
}


/* View ¨*/
#post.view .content > .main > .share {
    margin-top: 10px;
}

/* Component pager */
.pager {
    text-align: center;
    padding: 20px 0 var(--default-gap) 0;
}

@media only screen and (min-width: 768px) {
    #posts .filter .options {
        max-width: none !important;
        min-width: none !important;
        padding: 0;
    }
    
    /* Fonts */
    .item.post .name {
        font-size: 22px;
    }
    #posts .filters {
        margin-bottom: 50px;
    }
    #posts .filters .filter .options ul li {
        display: inline-block;
        font-family: 'MediaSans-Bold';
        font-size: 14px;
        margin-right: 20px;
        margin-bottom: 10px;
    }
    #posts .filters .filter .options ul li:nth-child(n+7) {
        display: none;
    }
    
    /* Layout */
    #posts .filters .filter .name {
        display: none;
    }
    #posts .filters .filter .options {
        position: static;
        width: auto;
        display: inline-block;
    }
    #posts .results {
        padding: 0 var(--default-gap);
    }
    
    #posts .highlights .flex {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 15px;
    }
    #posts .highlights .item {
        width: 100%;
    }
    #posts .highlights .item.post .category,
    #posts .highlights .item.post .details {
        padding: 0;
    }
    #posts .highlights .item.post .details {
        padding-right: 20px;
    }
    
    #posts .grid {
        padding: 0;
        grid-gap: 15px;
    }
    #posts .categories .grid .item:nth-child(n+2) {
        display: block;
    }
}
@media only screen and (min-width: 1024px) {
    #posts .filters {
        margin-bottom: 75px;
    }
    #posts .filters .filter .options ul li {
        font-size: 18px;
        margin-right: 30px;
    }
    #posts .highlights .flex {
        grid-gap: 20px;
    }
    #posts .grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
    }
}
@media only screen and (min-width: 1280px) {
    #posts .filters .filter .options ul li {
        font-size: 22px;
        margin-right: 50px;
    }
    #posts .highlights .flex {
        grid-gap: 35px;
    }
    #posts .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 35px;
    }
}