
/* Gainwell v1.38 — content-aligned home product structure */
.home-fixed-furniture-card{
  margin-top:24px;
  min-height:190px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:36px;
  padding:34px 38px;
  color:var(--gw3-ink,var(--ink,#173544));
  background:linear-gradient(115deg,#f2f7f8 0%,#fff 72%);
  border:1px solid var(--gw3-line,var(--line,#d7e0e3));
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.home-fixed-furniture-card:hover{
  transform:translateY(-3px);
  border-color:rgba(22,134,180,.45);
  box-shadow:0 18px 42px rgba(7,31,46,.09);
}
.home-fixed-furniture-card small{
  display:block;
  margin-bottom:12px;
  color:var(--gw3-blue,var(--blue-600,#1686b4));
  font-size:10px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.home-fixed-furniture-card h3{
  max-width:780px;
  margin:0 0 12px;
  font-family:var(--gw3-serif,var(--font-display,serif));
  font-size:clamp(30px,3vw,48px);
  font-weight:400;
  line-height:1.02;
}
.home-fixed-furniture-card p{
  max-width:800px;
  margin:0;
  color:var(--gw3-muted,var(--muted,#617681));
  line-height:1.7;
}
.home-fixed-furniture-card>span{
  align-self:center;
  padding:15px 18px;
  color:var(--gw3-ink,var(--ink,#173544));
  border:1px solid currentColor;
  font-size:10px;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
  white-space:nowrap;
}
@media(max-width:760px){
  .home-fixed-furniture-card{
    grid-template-columns:1fr;
    align-items:start;
    gap:24px;
    padding:27px 24px;
  }
  .home-fixed-furniture-card>span{justify-self:start;align-self:start}
}
