/* カード本体 */
.amz-card{
  display:flex;
  gap:.8rem;
  align-items:flex-start;
  border:1px solid #eee;
  border-radius:12px;
  padding:.8rem;
  background:#fff;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  margin:.8rem 0;
}

/* サムネ */
.amz-thumb{
  width:120px;
  flex:0 0 120px;
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f6f7f8;
  border-radius:14px;
  overflow:hidden;
}
.amz-thumb img{
  max-width:92%;
  max-height:92%;
  object-fit:contain;
  display:block;
}

/* テキスト */
.amz-body{flex:1 1 auto;min-width:0}
.amz-title{font-weight:600;line-height:1.4;margin-bottom:.4rem}
.amz-note{font-size:.85rem;color:#666}
.amz-cta{margin-top:.4rem}

/* Amazon風ボタン */
.amz-btn{
  display:inline-block;
  background:#FFD814;
  border:1px solid #FFD814;
  color:#111;
  font-weight:700;
  font-size:.95rem;
  line-height:1.2;
  padding:.55rem 1.1rem;
  border-radius:999px;
  text-decoration:none;
  white-space:nowrap;
  transition:background .15s ease,border-color .15s ease,transform .05s ease;
}
.amz-btn:hover{
  background:#F7CA00;
  border-color:#F7CA00;
}
.amz-btn:active{
  transform:translateY(1px);
}