/* FM Bluesky Feed - front-end styles */

.fm-bluesky-feed {
	display: flex;
	flex-direction: column;
	gap: 0.75em;
	font-size: 1em;
	line-height: 1.4;
	max-width: 100%;
	box-sizing: border-box;
}

.fm-bluesky-header {
	margin: 0 0 0.25em;
	font-weight: 600;
	font-size: 0.9em;
	opacity: 0.85;
}

.fm-bluesky-icon {
	display: inline-block;
	margin-right: 0.35em;
	vertical-align: -1px;
	color: currentColor;
}

.fm-bluesky-icon-fallback {
	position: relative;
	top: 1px;
}

.fm-bluesky-post {
	padding: 0.5em 0;
	border-top: 1px solid rgba(128, 128, 128, 0.25);
}

.fm-bluesky-post:first-child {
	border-top: none;
	padding-top: 0;
}

.fm-bluesky-text {
	margin: 0 0 0.35em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.fm-bluesky-readmore {
	white-space: nowrap;
	margin-left: 0.25em;
	font-weight: 600;
	text-decoration: underline;
}

.fm-bluesky-meta {
	margin: 0;
	display: flex;
	justify-content: space-between;
	gap: 0.5em;
	font-size: 0.85em;
	opacity: 0.7;
}

.fm-bluesky-permalink {
	text-decoration: none;
	white-space: nowrap;
}

.fm-bluesky-permalink:hover {
	text-decoration: underline;
}

.fm-bluesky-error {
	font-size: 0.85em;
	opacity: 0.8;
}

/* Narrow footer columns: stack meta row instead of side-by-side */
@media (max-width: 300px) {
	.fm-bluesky-meta {
		flex-direction: column;
		gap: 0.15em;
	}
}
