.se-pdl {
    display: grid;
    grid-gap: 8px;
}

.se-pdl__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: var(--main-colors-black);
    letter-spacing: 0;
}

.se-pdl__title span {
    color: var(--main-colors-blue);
}

.se-pdl__list {
    display: grid;
    grid-gap: 2px;
    align-content: start;
}

.se-pdl__item {
    display: grid;
    grid-template-columns: 20px auto;
    grid-gap: 4px;
    padding: 2px 4px;
}

.se-pdl__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: var(--main-colors-black-2);
}

.se-pdl__item-text img {
    width: 102px;
    margin-bottom: -3px;
}

.se-pdl__item-text span {
    font-weight: 500;
}

.se-pdl__dynamic {
    display: inline;
}

.se-pdl__bottom-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: var(--main-colors-dark-grey);
}

@media screen and (min-width: 1024px) {
    .se-pdl__item.hint_trigger:hover {
        background-color: var(--main-colors-grey-2);
        border-radius: 4px;
    }
}