/* Affiliate Campaign Manager — フロントエンド表示スタイル */

.acm-campaign-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.acm-campaign-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.acm-campaign-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* ヘッダー行（バッジ + ASP名） */
.acm-campaign-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* バッジ */
.acm-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.acm-badge--active {
  background: #e6f4ea;
  color: #1e7e34;
}

.acm-badge--soon {
  background: #e8f0fe;
  color: #1a73e8;
}

.acm-badge--ending {
  background: #fce8e6;
  color: #d93025;
}

/* ASPラベル */
.acm-asp-label {
  font-size: 12px;
  color: #666;
  padding: 2px 8px;
  background: #f5f5f5;
  border-radius: 4px;
}

/* キャンペーンタイトル */
.acm-campaign-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #222;
}

/* 内容テキスト */
.acm-product-name,
.acm-campaign-period,
.acm-reward {
  font-size: 14px;
  color: #444;
  margin: 6px 0;
  line-height: 1.5;
}

.acm-label {
  font-weight: 600;
  color: #666;
  margin-right: 4px;
}

/* リンクボタン */
.acm-campaign-link {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: #1a73e8;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.acm-campaign-link:hover {
  background: #1558b0;
}

/* マイクロコピー（ボタン・テキストリンクの上に出す小さな一言） */
.acm-microcopy {
  display: block;
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #e65100;
  text-align: center;
}

.acm-microcopy--left {
  text-align: left;
}

.acm-microcopy--right {
  text-align: right;
}

/* 空表示 */
.acm-empty {
  color: #888;
  font-size: 14px;
  text-align: center;
  padding: 30px;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .acm-campaign-list {
    grid-template-columns: 1fr;
  }
}
