.site-title {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.site-title::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-image: url('/blog/images/icons/dove-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .site-title::before {
        width: 30px;
        height: 30px;
    }
}