*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.feedrss {
    background: white; /* #131518; */
    padding: .5rem;
    margin: 0 auto;
    font-family: sans-serif;

    * {
        color: black !important; /* #6e7e9a !important; */
    }

    h1,
    h2,
    h3,
    .title {
        color: black !important; /* #a0adc3 !important; */
    }

    details {
        min-height: 48px;
        padding: .5rem;
        margin: .5rem 0;
        border-bottom: 1px solid #343a43;
    }

    .uppercase {
        text-transform: uppercase;
    }

    .title {
        font-size: 1.1rem;
        font-weight: bold;
    }

    .entries {
        display: grid;
        gap: .5rem;
        margin: 0 auto;
    }

    .entry {
        /*border-bottom: 1px solid #343a43;*/
        padding: .25rem .5rem;

        a.flink {
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }
    }
}

