/**
 * EditionFeed Shortcode Styles
 */

/* Wrapper for all shortcode output */
.editionfeed-post-wrapper {
	margin: 20px 0;
	clear: both;
}

/* Post List Styles */
.editionfeed-post-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.editionfeed-post-item {
	padding: 20px;
	background: #f9f9f9;
	border-left: 4px solid #0073aa;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.editionfeed-post-item:hover {
	background: #f0f0f0;
}

.editionfeed-post-title {
	margin: 0 0 10px 0;
	font-size: 1.4em;
	line-height: 1.3;
}

.editionfeed-post-title a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.2s ease;
}

.editionfeed-post-title a:hover {
	color: #005177;
}

.editionfeed-post-excerpt {
	margin: 0 0 15px 0;
	color: #666;
	line-height: 1.6;
}

.editionfeed-read-more {
	display: inline-block;
	padding: 8px 16px;
	background: #0073aa;
	color: white !important;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.2s ease;
}

.editionfeed-read-more:hover {
	background: #005177;
}

/* Single Post Content */
.editionfeed-post-wrapper > * {
	max-width: 100%;
}

.editionfeed-post-wrapper img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.editionfeed-post-item {
		padding: 15px;
	}
	
	.editionfeed-post-title {
		font-size: 1.2em;
	}
}

/* Theme Override Friendly */
/* These styles use minimal specificity so themes can easily override */
