﻿#RssFeed {
    font-size: 1rem;
}

.feed-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--titan-blue);
    gap: 12px;
    margin: 20px;
    padding: 20px;
}

    .feed-item strong {
        font-size: 1.5rem;
    }


    .feed-item p {
        word-break: break-word;
    }

.feed-list {
    list-style: none;
    padding: 0;
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feed-list-item {
    padding: 12px 14px;
    border-bottom: 1px solid var(--titan-blue);
}

.feed-link {
    text-decoration: none;
}

    .feed-link:hover,
    .feed-link:focus {
        text-decoration: underline;
    }

.feed-empty,
.feed-error {
    margin: 20px;
    padding: 16px;
}

.feed-date {
    margin-left: 10px;
    font-size: 0.9em;
    opacity: 0.75;
}


details p {
    padding-left: 20px;
}


details > summary {
    list-style: none;
    cursor: pointer;
    padding-left: 1.5em;
    position: relative;
    outline: none;
    font-size: 1.5rem;
}

    details > summary::before {
        content: "+";
        position: absolute;
        left: 0;
        top: 0.05em;
        width: 1.2em;
        text-align: center;
        font-weight: 700;
    }

    details > summary:hover {
        padding-left: 1.5em;
        text-decoration: underline;
    }

details[open] > summary::before {
    content: "−";
}

details > summary:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
