/* ============================================================================
   PRODUCT PREVIEW — "Explore Our Product Lines" teaser
   ----------------------------------------------------------------------------
   Loaded by : index.html
   Depends on: base/tokens.css, base/layout.css

   Three linked cards on the home page pointing into the catalogue. These are
   whole-card <a> elements, unlike the catalogue's JS-driven .pcard.
   ============================================================================ */

.prod-preview{background:var(--light);}

.prev-hdr{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:2.8rem;gap:1.5rem;}

.prev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}

.prev-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:8px;padding:2rem;transition:all 0.3s;
  cursor:pointer;display:block;
}
.prev-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);}

.prev-tag{
  display:inline-block;background:var(--light2);color:var(--navy);
  font-size:0.72rem;font-weight:700;letter-spacing:1.5px;
  text-transform:uppercase;padding:3px 10px;border-radius:3px;
  margin-bottom:1rem;border:1px solid var(--border);
}
.prev-card h3{font-size:1.05rem;font-weight:700;color:var(--text-dark);margin-bottom:0.6rem;}
.prev-card p{font-size:0.875rem;color:var(--text-mid);line-height:1.7;}

.prev-card .card-link{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:1.2rem;font-size:0.83rem;font-weight:600;color:var(--navy);
}
.prev-card .card-link::after{content:'→';}
.prev-card:hover .card-link{text-decoration:underline;}

@media(max-width:960px){
  .prev-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .prev-grid{grid-template-columns:1fr;}
  .prev-hdr{flex-direction:column;align-items:flex-start;}
}
@media(prefers-reduced-motion:reduce){
  .prev-card{transition:none;}
}
