.rss-list-main-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}

.rss-list-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 700px;
    padding: 10% 10px 0 10px;
    box-sizing: border-box;
    gap: 30px;
    z-index: 2;
    margin-bottom: 20px;
    /*border: fuchsia 1px solid;*/
}

.rss-element {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    /*font-weight: bold;*/
    background-color: #666666;
    border-radius: 4px;
    padding: 10px 20px 20px 20px;
}

.rss-element-title {
    width: 100%;
    /*border: red 1px solid;*/
    box-sizing: border-box;
    /*padding: 0 0 0 30px;*/
}

.rss-element > a {
    padding-left: 20px;
    line-break: anywhere;
}

.rss-list-bg-image-wrapper {
    width: 20%;
    min-width: 150px;
    height: auto;
    position: absolute;
    aspect-ratio: 1/1;
    z-index: 1;
    bottom: 5%;
    right: 10%;
}

.rss-list-bg-image-wrapper > img {
    width: 100%;
    height: 100%;
    opacity: .3;
}