/* Container-Constraint: matcht die 1320px-Breite der frame-type-text Elemente
   und des Podcast-Plugin-Containers. Vorher lief der Button über die volle
   Viewport-Breite weil keine max-width gesetzt war. */
.cb-rss-feed {
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem 1.5rem;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .cb-rss-feed {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.cb-rss-feed__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid color-mix(in oklab, var(--color-accent, currentColor) 30%, transparent);
    border-radius: 9999px;
    background: color-mix(in oklab, var(--color-accent, currentColor) 8%, transparent);
    color: var(--color-accent, currentColor);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background 150ms ease-out, border-color 150ms ease-out;
}

.cb-rss-feed__link:hover,
.cb-rss-feed__link:focus-visible {
    background: color-mix(in oklab, var(--color-accent, currentColor) 18%, transparent);
    border-color: color-mix(in oklab, var(--color-accent, currentColor) 50%, transparent);
}

.cb-rss-feed__icon {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}
