/* Standardloop auf Podcast-Archivseite ausblenden — Custom Grid übernimmt */
.post-type-archive-podcast article.type-podcast {
	display: none;
}

/* Abstand zwischen Archiv-Inhalt und Footer */
body.post-type-archive-podcast .site-content,
body.post-type-archive-podcast .site-main,
body.post-type-archive-podcast .content-area {
	padding-bottom: 20px;
}

/* ONOC Podcast Archive */
.onoc-archive {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 32px auto;
	width: 80%;
	max-width: 100%;
}

.onoc-episode-card {
	display: flex;
	flex-direction: row;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s, transform 0.2s;
}
.onoc-episode-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}

/* Text links */
.onoc-episode-card__body {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	order: 1;
}

/* Bild rechts */
.onoc-episode-card__image {
	position: relative;
	width: 260px;
	flex-shrink: 0;
	overflow: hidden;
	background: #1a1a2e;
	order: 2;
}
.onoc-episode-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.onoc-episode-card__badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #e94560;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

.onoc-episode-card__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.3;
}
.onoc-episode-card__title a {
	text-decoration: none;
	color: inherit;
}
.onoc-episode-card__title a:hover { color: #e94560; }

.onoc-episode-card__meta {
	font-size: 12px;
	color: #888;
	margin-bottom: 10px;
}

.onoc-episode-card__excerpt {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.onoc-episode-card__cta {
	display: inline-block;
	align-self: flex-start;
	background: #1a1a2e;
	color: #fff;
	padding: 9px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}
.onoc-episode-card__cta:hover { background: #e94560; color: #fff; }

/* Responsive */
@media (max-width: 640px) {
	.onoc-episode-card {
		flex-direction: column;
	}
	.onoc-episode-card__image {
		width: 100%;
		height: 200px;
		order: 1;
	}
	.onoc-episode-card__body {
		order: 2;
	}
	.onoc-episode-card__badge {
		top: 10px;
		right: 10px;
	}
}

/* Social buttons (used on single episode) */
.onoc-social {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin: 24px 0;
	align-items: center;
}
.onoc-social__label {
	font-size: 13px;
	color: #666;
	margin-right: 8px;
}
.onoc-social__share,
.onoc-social__follow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.onoc-social__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: opacity 0.15s;
	color: #fff;
}
.onoc-social__btn:hover { opacity: 0.85; color: #fff; }
.onoc-social__btn--facebook { background: #1877f2; }
.onoc-social__btn--tiktok   { background: #010101; }
.onoc-social__btn--youtube  { background: #ff0000; }
