.taxonomy-page,
.taxonomy-block{
    display: flex;
    gap: 0.25rem;
    flex-direction: column;
}
@media(min-width:48rem){
    .taxonomy-page,
    .taxonomy-block{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .taxonomy-page header{
        grid-column: span 2;
    }
}
@media(min-width:62rem){
    .taxonomy-page{
        grid-template-columns: repeat(3, 1fr);
    }
    .taxonomy-page header{
        grid-column: span 3;
    }
}

.taxonomy-page header{
    text-align: center;
}

/* Block */
.taxonomy-block{
    gap: 1rem;
    margin: 2rem auto;
}
@media(min-width:62rem){
    .taxonomy-block{
        margin: 5rem auto;
    } 
}

/* Sheets */
.taxonomy-sheets button{
    align-items: flex-start;
    background-color: white;
    width: 100%;
    border: 0;
    border-top: 1px solid var(--c-primary);
    cursor: pointer;
    padding: 1rem 1.25rem;
    margin-bottom: 1px;
    display: flex;
    gap: 0.5rem;
}
.taxonomy-sheets h3{
    font: var(--f-p-big);
    font-weight: 700;
    color: var(--c-primary);
    text-align: left;
    flex-grow: 1;
}

.taxonomy-sheets button::after{
    padding-top: 0.95rem;
    content: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="9" fill="%23A13636"/><rect x="4" y="8" width="10" height="2" fill="white"/><rect x="8" y="14" width="10" height="2" transform="rotate(-90 8 14)" fill="white"/></svg>');
    display: block;
}

.taxonomy-sheets .taxonomy-sheets-content{
    display: none;
}

.taxonomy-sheets.opened button::after{
    content: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="9" fill="%23A13636"/><rect x="4" y="8" width="10" height="2" fill="white"/></svg>');
    display: block;
}

.taxonomy-sheets.opened .taxonomy-sheets-content{
    display: flex;
    flex-direction: column;
    gap: 1px;
}


