/* ==========================================================================
   E-Move Katalog - Basis CSS
   Minimales, sauberes Styling als Ausgangspunkt.
   ========================================================================== */

/* ── Allgemein ─────────────────────────────────────────── */

.page-id-11528 {
    background: #F3F3F3;
}

.emove-section {
	margin-bottom: 2rem;
}

/* ── Spec-Liste (Basis + Weitere) ───────────────────────── */
.emove-spec-list {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1.8;
}

.emove-spec-list__item {
	margin: 0;
	padding: 0;
}

.emove-spec-list__label {
	font-weight: 600;
}

/* ── Basis-Card ─────────────────────────────────────────── */
.emove-basis {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
}

.emove-basis__heading {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: 1.15rem;
}

.emove-basis__suffix {
	font-weight: 400;
	font-size: 0.9em;
	color: #6c757d;
}

/* ── Weitere Varianten ──────────────────────────────────── */

.emove-weitere__heading {
	margin-bottom: 1rem;
}

.emove-weitere__cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.emove-variante-card {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
}

.emove-variante-card__heading {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: 1.15rem;
}

/* ── Tabelle ────────────────────────────────────────────── */

.emove-tabelle__heading {
	margin-bottom: 0.75rem;
}

.emove-tabelle__wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.emove-tabelle__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.emove-tabelle__table th,
.emove-tabelle__table td {
	padding: 0.5rem 0.75rem;
	text-align: left;
	border-bottom: 1px solid #dee2e6;
	white-space: nowrap;
}

.emove-tabelle__table thead th {
	font-weight: 600;
	border-bottom: 2px solid #adb5bd;
}

.emove-tabelle__table tbody tr:nth-child(even) {
	background: #f8f9fa;
}

.emove-tabelle__row--basis td {
	font-weight: 500;
}

.emove-tabelle__legend {
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: #6c757d;
}

/* ── Archiv-Übersicht ───────────────────────────────────── */

.emove-archiv__heading {
	margin-bottom: 1.25rem;
}

.emove-archiv__grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 260px, 1fr ) );
	gap: 1.25rem;
}

.emove-archiv-card {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.emove-archiv-card__image img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

.emove-archiv-card__image--placeholder {
	width: 100%;
	height: 160px;
	background: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #adb5bd;
	font-size: 0.8rem;
}

.emove-archiv-card__body {
	padding: 1rem 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.emove-archiv-card__marke {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6c757d;
	margin: 0 0 0.25rem;
}

.emove-archiv-card__title {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.emove-archiv-card__meta {
	font-size: 0.85rem;
	color: #495057;
	margin: 0 0 1rem;
	flex: 1;
}

.emove-archiv-card__meta span {
	display: block;
	line-height: 1.6;
}

.emove-archiv-card__meta span + span::before {
	content: "";
}

.emove-archiv-card__link {
	display: inline-block;
	padding: 0.4rem 0.9rem;
	background: #212529;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.85rem;
	align-self: flex-start;
}

.emove-archiv-card__link:hover {
	background: #343a40;
	color: #fff;
}

/* ── Single Post Artikelbild ────────────────────────────── */
.emove-single-artikelbild {
	margin-bottom: 2rem;
}

.emove-single-artikelbild img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}