/* =============================================================
   components/new-arrivals.css
   新着情報セクション（ダーク背景）
   ============================================================= */

.section--new-arrivals {
  background-color: #0a0a0a;
  padding: 35px var(--content-pad) 32px;
  margin-top: 40px;
}

.section--new-arrivals .section-header {
  padding-top: 0;
  padding-bottom: 6px;
}

.section--new-arrivals .section-header__line {
  display: none;
}

.section--new-arrivals .section-header__title {
  color: #ffffff;
}

.section--new-arrivals .section-header__line {
  background: rgba(255, 255, 255, 0.4);
}

.new-arrivals {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--screen-max);
  display: flex;
  flex-direction: column;
}

.new-arrivals__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-grid-title);  /* 14px */
}

.new-arrivals__item:last-child {
  border-bottom: none;
}

.new-arrivals__date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  white-space: nowrap;
  font-family: monospace;
  flex-shrink: 0;
}

.new-arrivals__link {
  color: #ffffff;
  text-decoration: none;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-arrivals__link:hover {
  text-decoration: underline;
}

.badge-new {
  display: inline-block;
  width: 28px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  background-color: #B60000;
  color: #ffffff;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.04em;
  border-radius: 2px;
  flex-shrink: 0;
  box-sizing: border-box;
}
