/* AEMAZON in-feed promotions v1.2.0 */
.feed-promotion-card{
  --fp-accent:#ff4d00;
  position:relative;
  width:100%;
  margin:2px 0;
  overflow:hidden;
  border:1px solid #e1e1df;
  border-radius:17px;
  background:#fff;
  box-shadow:0 9px 26px rgba(18,18,18,.055);
}
.feed-promotion-card.theme-expedition{--fp-accent:#ff7900}
.feed-promotion-card.theme-ghost{--fp-accent:#7657ff}
.feed-promotion-card.theme-vehicle{--fp-accent:#ff5b1a}
.feed-promotion-card.theme-point-market{--fp-accent:#f6a400}
.feed-promotion-card.theme-custom-orange{--fp-accent:#ff4d00}
.feed-promotion-link{
  display:grid;
  grid-template-columns:minmax(210px,38%) minmax(0,1fr);
  min-height:166px;
  color:#111;
  text-decoration:none;
  outline:none;
}
.feed-promotion-media{
  position:relative;
  display:block;
  min-width:0;
  overflow:hidden;
  background:
    radial-gradient(circle at 74% 38%,color-mix(in srgb,var(--fp-accent) 35%,transparent),transparent 42%),
    linear-gradient(145deg,#050505,#262626);
}
.feed-promotion-media::before{
  content:"AEMAZON";
  position:absolute;
  left:15px;
  bottom:13px;
  z-index:2;
  color:#fff;
  font-size:10px;
  font-weight:950;
  letter-spacing:.14em;
  opacity:.88;
}
.feed-promotion-media::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(0,0,0,.08),transparent 45%,rgba(0,0,0,.12));
  pointer-events:none;
}
.feed-promotion-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:72% center;
  transform:scale(1.015);
  transition:transform .35s ease;
}
.feed-promotion-copy{
  position:relative;
  display:flex;
  min-width:0;
  flex-direction:column;
  justify-content:center;
  padding:20px 24px 18px;
  background:linear-gradient(120deg,#fff 0%,#fff 68%,#fafafa 100%);
}
.feed-promotion-copy::before{
  content:"";
  position:absolute;
  left:0;
  top:20px;
  bottom:20px;
  width:3px;
  border-radius:0 3px 3px 0;
  background:var(--fp-accent);
}
.feed-promotion-topline{
  display:flex;
  min-width:0;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.feed-promotion-eyebrow{
  min-width:0;
  overflow:hidden;
  color:var(--fp-accent);
  font-size:10px;
  font-weight:950;
  letter-spacing:.075em;
  line-height:1.2;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.feed-promotion-badge{
  flex:0 0 auto;
  max-width:48%;
  overflow:hidden;
  padding:5px 8px;
  border:1px solid color-mix(in srgb,var(--fp-accent) 40%,#ddd);
  border-radius:999px;
  background:color-mix(in srgb,var(--fp-accent) 7%,#fff);
  color:#333;
  font-size:10px;
  font-weight:850;
  line-height:1;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.feed-promotion-title{
  display:-webkit-box;
  overflow:hidden;
  margin:0;
  color:#111;
  font-size:21px;
  font-weight:950;
  letter-spacing:-.035em;
  line-height:1.24;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.feed-promotion-description{
  display:-webkit-box;
  overflow:hidden;
  margin-top:7px;
  color:#666;
  font-size:13px;
  font-weight:600;
  line-height:1.46;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.feed-promotion-cta{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  gap:7px;
  margin-top:12px;
  color:var(--fp-accent);
  font-size:13px;
  font-weight:950;
  line-height:1;
}
.feed-promotion-cta svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2.4;transition:transform .2s ease}
.feed-promotion-link:hover .feed-promotion-image{transform:scale(1.055)}
.feed-promotion-link:hover .feed-promotion-cta svg{transform:translateX(3px)}
.feed-promotion-link:focus-visible{box-shadow:inset 0 0 0 3px color-mix(in srgb,var(--fp-accent) 55%,transparent)}

@media(max-width:680px){
  .feed-promotion-card{border-radius:14px;box-shadow:0 7px 20px rgba(18,18,18,.05)}
  .feed-promotion-link{grid-template-columns:minmax(116px,36%) minmax(0,1fr);min-height:138px}
  .feed-promotion-copy{padding:14px 14px 13px 16px}
  .feed-promotion-copy::before{top:14px;bottom:14px;width:2px}
  .feed-promotion-topline{margin-bottom:6px;gap:6px}
  .feed-promotion-eyebrow{font-size:8px;letter-spacing:.045em}
  .feed-promotion-badge{max-width:53%;padding:4px 6px;font-size:8px}
  .feed-promotion-title{font-size:17px;line-height:1.23}
  .feed-promotion-description{margin-top:5px;font-size:11px;line-height:1.35;-webkit-line-clamp:1}
  .feed-promotion-cta{margin-top:9px;font-size:11px;gap:5px}
  .feed-promotion-cta svg{width:13px;height:13px}
  .feed-promotion-media::before{left:10px;bottom:9px;font-size:8px}
}
@media(max-width:390px){
  .feed-promotion-link{grid-template-columns:34% 66%;min-height:132px}
  .feed-promotion-copy{padding:12px 11px 11px 14px}
  .feed-promotion-description{display:none}
  .feed-promotion-cta{margin-top:8px}
}
@media(prefers-reduced-motion:reduce){.feed-promotion-image,.feed-promotion-cta svg{transition:none}}
