/**
 * "RSS Feeds" page template — CSS-only assets
 * ---------------------------------------------------------------------------
 * Only loaded on pages using template-pages/template-rss.php. Same as the
 * Services/Expertise/Guides pages: no unique layout math the purged
 * Tailwind build doesn't already cover, just the one arbitrary max-width
 * and the "Copied!" success state that rss-page.js toggles on click.
 */

.openpress-rss-container {
	max-width: 900px;
}

.openpress-rss-intro p {
	margin-bottom: 1em;
}
.openpress-rss-intro a {
	color: hsl(var(--accent));
	text-decoration: underline;
	text-underline-offset: 2px;
}

.openpress-rss-row {
	transition: border-color 0.15s ease;
}
.openpress-rss-row:hover {
	border-color: hsl(var(--accent) / 0.4);
}

.openpress-rss-url {
	font-family: 'JetBrains Mono', monospace;
}

/* rss-page.js toggles this on the Copy button for ~1.5s after a
   successful copy, swapping its icon/label to a confirmation state. */
.openpress-rss-copy.is-copied {
	border-color: hsl(var(--accent));
	color: hsl(var(--accent));
}
