/* ============================================================
  プライムデー2026 共通告知カード（記事本文上部・サムネイル付き）
  /assets/css/prime-day-banner-2026.css
============================================================ */

.pd2026-card-wrap {
  margin: 0 0 16px;
}

.pd2026-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #09111d;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.pd2026-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #1cc3ea, #3b82f6, #8b5cf6);
}
.pd2026-card:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-1px);
}

.pd2026-card__img-wrap {
  flex-shrink: 0;
  display: block;
  width: 96px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.pd2026-card__img-wrap img.pd2026-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd2026-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pd2026-card__badge {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #ff9900, #e67e00);
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.5;
}

.pd2026-card__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.4;
}
.pd2026-card-wrap .pd2026-card__title { color: #e2e8f0; }

.pd2026-card__desc {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.5;
}
.pd2026-card-wrap .pd2026-card__desc { color: #94a3b8; }

.pd2026-card__arrow {
  flex-shrink: 0;
  display: inline-flex;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: auto;
}
.pd2026-card:hover .pd2026-card__arrow {
  transform: translateX(2px);
  color: #c4b5fd;
}

@media (max-width: 480px) {
  .pd2026-card {
    align-items: flex-start;
  }
  .pd2026-card__img-wrap {
    width: 72px;
    height: 72px;
  }
  .pd2026-card__title {
    font-size: 0.78rem;
  }
  .pd2026-card__desc {
    font-size: 0.68rem;
  }
  .pd2026-card__arrow {
    display: none;
  }
}

/* ---- プライムデー2026 サイドバーPICK UPの「まとめ記事へ」リンク ---- */
.bb-peripherals-widget .bb-bestbuy__note a {
  color: #22d3ee;
  text-decoration: none;
}
.bb-peripherals-widget .bb-bestbuy__note a:hover {
  text-decoration: underline;
}
