/* Standalone shortcodes: [haer_yt_video], [haer_yt_audio], [haer_yt_thumb],
   [haer_gdrive_audio], [haer_category_posts] — not tied to the song-list or
   koleksi apps, so they live in their own file. */

.haer-audio-player {
	background: #1e293b; color: #fff; padding: 12px 16px; border-radius: 8px;
	margin: 12px 0; display: flex; align-items: center; gap: 10px; cursor: pointer;
	transition: background 0.2s ease;
}
.haer-audio-player:hover { background: #334155; }
.haer-yt-video { position: relative; overflow: hidden; border-radius: 8px; }
.haer-yt-video iframe { display: block; }
.haer-yt-thumb { max-width: 100%; height: auto; border-radius: 6px; }
.haer-gdrive-audio audio { width: 100%; margin: 8px 0; }
.haer-post-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 16px; list-style: none; padding: 0; margin: 0;
}
.haer-post-item {
	border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px; background: #fff;
	transition: box-shadow 0.2s ease;
}
.haer-post-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.haer-post-item a { text-decoration: none; color: inherit; }
.haer-post-item .excerpt { margin-top: 8px; font-size: 0.9em; color: #64748b; }
