.vehicle .post-title, .vehicle .post-byline {
	display:none;
}

.vehicle .post-content .post-title  {
	display:block!important;
}


.entry .vehicle-details-table {
	width: auto;
	text-align: left;
}

.vehicle-details-image-container {
	float:left;
	margin: 0 20px 20px 0;
}

.entry .vehicle-list-table-wrapper {
	overflow-x: auto;
}

.entry .vehicle-details-table tr,
.entry .vehicle-details-table tr.alt,
.entry .vehicle-details-table td,
.entry .vehicle-details-table th {
	background: none;
	border: none;
	text-align: left;
	padding: 0;
}

.entry .vehicle-details-table td,
.entry .vehicle-details-table th {
	padding: 0 20px 5px 0;
	font-size: 1.125em;
}

table.vehicle-list-table,
.entry table.vehicle-list-table {
	width: 100%;
}

table.vehicle-list-table tr,
.entry  table.vehicle-list-table tr.alt {
	background: none;
}

table.vehicle-list-table th, 
table.vehicle-list-table td,
.entry table.vehicle-list-table th, 
.entry table.vehicle-list-table td {
	font-size: 1.125em;
	text-align: left;
	vertical-align: middle;
	padding-right: 0.5em;
	border: 0;
	background: none;
}

table.vehicle-list-table th,
.entry table.vehicle-list-table th {
	font-weight: bold;
	border-bottom: 1px solid #eee;
}

table.vehicle-list-table td.vehicle-thumbnail-cell,
.entry table.vehicle-list-table td.vehicle-thumbnail-cell {
	padding: 0;
	width: 10%;
}

table.vehicle-list-table tr th:nth-child(2), 
table.vehicle-list-table tr td:nth-child(2) {
	font-weight: bold;
	padding-left: 1.5em;
}
table.vehicle-list-table tr td:last-child,
table.vehicle-list-table tr th:last-child {
	padding-right: 0;
}

/* ===================================
   VEHICLE BOX LAYOUT
   =================================== */

/* Container - Grid Layout */
.vehicle-list-box {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Einzelne Box */
.vehicle-box {
	margin: 0;
	padding: 0;
}

/* Box Inner - Immer horizontal (Bild links, Text rechts) */
.vehicle-box-inner {
	display: flex;
	flex-direction: row;
	background: #eee;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	transition: box-shadow 0.2s;
	height: 100%;
}

.vehicle-box-inner:hover {
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Bildbereich - Dynamisch skalierend */
.vehicle-image {
	background: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 clamp(120px, 25vw, 200px);
}

.vehicle-image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.vehicle-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Textbereich */
.vehicle-info {
	padding: 1rem;
	flex: 1;
}

.vehicle-info h3,
.entry .vehicle-info h3 {
	margin: 0 0 0.5rem 0;
	font-size: clamp(0.9rem, 2.5vw, 1.05rem);
	font-weight: 600;
	line-height: 1.3;
}

.vehicle-info h3 a,
.vehicle-info p a {
	color: inherit;
	text-decoration: none !important;
}

.vehicle-info h3 a:hover,
.vehicle-info p a:hover {
	text-decoration: underline !important;
}

.vehicle-info p,
.entry .vehicle-info p {
	margin: 0 0 0.4rem 0;
	font-size: clamp(0.75rem, 2vw, 0.9rem);
	line-height: 1.4;
}

.vehicle-info p:last-child {
	margin-bottom: 0;
}

/* Desktop: 2 Spalten ab 1200px */
@media (min-width: 1200px) {
	.vehicle-list-box {
		grid-template-columns: repeat(2, 1fr);
	}

	.vehicle-image {
		flex: 0 0 200px;
	}

	.vehicle-info {
		padding: 1.25rem 1.5rem;
	}

	.vehicle-info h3,
	.entry .vehicle-info h3 {
		font-size: 1.05rem;
	}

	.vehicle-info p,
	.entry .vehicle-info p {
		font-size: 0.9rem;
	}
}