.lists {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

/* Menü */

.lists_menu {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #1a100c;
    border: 1px solid #5a341d;
    align-items: flex-start;
}

.lists_menu-head {
    height: 50px;
    width: 100%;
    background: linear-gradient(45deg,#24140d,#5a341d,#c08a52);
    color: #f1dec2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Rufina', serif;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
}

.lists_menu-item {
    height: 30px;
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(192,138,82,0.35);
    color: #f1dec2;
    font-family: 'Oxygen', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
}

.lists_menu-item a {
    color: #f1dec2;
    width: 100%;
}

.lists_menu-item:hover {
    background: rgba(192,138,82,0.12);
}


/* Content */

.lists_content {
    width: 80%;
    box-sizing: border-box;
    background: #1a100c;
    border: 1px solid #5a341d;
}

.lists_content-head {
    height: 50px;
    width: 100%;
    background: linear-gradient(45deg,#24140d,#5a341d,#c08a52);
    color: #f1dec2;
    font-size: 28px;
    font-family: 'Saltwater', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal;
}

.lists_content-description {
    padding: 20px 40px;
    text-align: justify;
    line-height: 180%;
    color: #f1dec2;
    font-family: 'Oxygen', sans-serif;
}

.lists_content-bit {
    padding: 0 40px 40px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.lists_content-block {
    width: 45%;
}

.lists_content-item {
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #5a341d;
    border-left: 4px solid #c08a52;
    color: #f1dec2;
    transition: all .2s ease-in-out;
}

.lists_content-item:hover {
    background: #704325;
}

.lists_content-item a {
    color: #f1dec2;
}

.lists_content-item small {
    color: #c08a52;
    text-transform: uppercase;
    letter-spacing: 1px;
}