.line1 {
    margin: 0 auto;
    padding: 0;
    width: 92%;
    border-bottom: solid 2px var(--textGold);
    border-width: thin;
}

/*   ---====  WORK CARDS  ====---   */
.work-list {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    width: 100%;
    line-height: 1;
    text-indent: 0;
    margin: 0 auto;
    padding: 0;
}
.work-list h2 {
    font-size: 1.8rem;
}
.work {
    display: grid;
    gap: 0.1rem;
    grid-template-columns: auto 2fr 2fr;
    grid-template-areas:
    'bt bt bt'
    'bc pa da'
    'bc ta ta'
    'bc ta ta';
    margin: 0;
    cursor: pointer;
}
.btitul {
    grid-area: bt;    
    width: 100%;
    text-align: center;
    background-color: #373734;
    color: var(--logoGold);
    font-size: 1.4rem;
    margin: 0 auto;
    padding: 0.1rem 0 0.2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Gentium', 'Garamond', "Times New Roman", Times, serif;
    font-weight: 400;
}
.bcover {
    grid-area: bc;
    width: 4rem;
}
.pages { grid-area: pa; }
.date { grid-area: da; }
.pages, .date {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.1rem;
    padding-bottom: 0.1rem;
    text-align: center;
    background-color: #6d3522;
    color: var(--textGold);
}

.tags {
    grid-area: ta; 
    margin: 0 0.7rem;
    padding: 0;
    color: var(--textGold);
}

/* ---------- PC & tablets ---------- */
@media only screen and (min-width: 480px) {
    .sortBtns label {
        margin: 0 0.6rem;
        padding: 0.1rem 1rem 0.2rem 1rem;
    }
    .work-list { 
        width: 80%; 
    }
    .bcover {
        width: 5rem;
    }
}