.list {
    flex: 1;
    min-width: min(400px, 100%);
    padding: 2em 1.3em;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
    border-radius: var(--small);
}
.list.fullList {
    min-width: 100%;
}
.list.fullList ul {
    columns: 3;
    column-gap: 1em;
}
.list h3 {
    padding-left: 1em;
    font-size: 1.2rem;
    position: relative;
}
.list h3::before {
    content: "";
    --measurement: 10px;
    height: var(--measurement);
    width: var(--measurement);
    border-radius: 50%;
    background-color: var(--base-color-2);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.listWrapper {
    margin-block: 1em;
    max-height: 500px;
    overflow-y: auto;
}
.listWrapper p {
    padding-bottom: 1.5em;
    color: #5e5e5e;
    word-wrap: break-word;
}
.list li {
    font-size: 0.88rem;
    padding: 0.4em 0 0.4em 1em;
    border-radius: 8px;
    border-left: 4px solid #ff8e65;
    margin-bottom: 2px;
}
.list li:hover {
    /* border: 4px solid transparent; */
    background-color: #f5f5f5;
}

@media screen and (max-width: 1100px) {
    .list.fullList ul {
        columns: 2;
    }
}
@media screen and (max-width: 800px) {
    .list.fullList ul {
        columns: 1;
    }
}
