.bv-vehicle-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-auto-rows: 1fr; gap: 18px; }
.bv-vehicle-card { display: flex; min-height: 246px; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid #e2cfb4; border-radius: 17px; background: #fffdf9; box-shadow: 0 8px 22px rgba(67,39,18,.07); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.bv-vehicle-card:hover { transform: translateY(-3px); border-color: #d6a872; box-shadow: 0 15px 28px rgba(67,39,18,.12); }
.bv-vehicle-image { display: grid; height: 167px; flex: 0 0 167px; place-items: center; overflow: hidden; border-bottom: 1px solid #eadbca; background: #f6efe5; }
.bv-vehicle-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .3s ease; }
.bv-vehicle-card:hover .bv-vehicle-image img { transform: scale(1.025); }
.bv-vehicle-content { display: flex; flex: 1; flex-direction: column; padding: 18px 20px 20px; }
.bv-vehicle-content h3,.bv-vehicle-card > h3 { margin: 0; color: #382418; font-family: Georgia, serif; font-size: 1.34rem; line-height: 1.2; }
.bv-vehicle-card > h3 { margin: auto 20px 20px; }
.bv-vehicle-content p { margin: 9px 0 0; color: #6e6256; font-size: .88rem; line-height: 1.56; }
@media(max-width:850px){.bv-vehicle-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:540px){.bv-vehicle-grid{grid-template-columns:1fr}.bv-vehicle-card{min-height:0}.bv-vehicle-image{height:194px;flex-basis:194px}}
