.sticky-list {
    display: grid;
    background: #FFF;
    grid-template-columns: 4px 1fr;
    margin: 8px;
    color: #000;
    height: 280px;
    border: 4px solid #D06F6F;
    border-radius: 10px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.1);
}
.sticky-list dt {
    position: sticky;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    font-family: Verdana, sans-serif;     
    border-radius: 20px;
    color: #FFF;
    grid-column: 1;
    background: #a21a24;
    margin-top: 12px;
    border: 4px solid #D06F6F;
}
.sticky-list dd {
    grid-column: 2;
    font-size: 16px;
    font-family: Verdana, sans-serif;    
    line-height: 22px;
    margin-left: 54px;
    position: relative;
    top: -10px;
}
.sticky-list dd:last-child {
    padding-bottom: 20px;
}
.sticky-list dt + dd {
    margin-top: 28px;
}
