/* 釣果カード共通コンポーネント CSS
   クラスプレフィックス: frc- (fishing result card)
   既存CSSとの衝突を防ぐため独自プレフィックスを使用 */

.frc-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
  transition: box-shadow 0.15s;
}

.frc-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 日付カラム */
.frc-date-col {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  padding-top: 2px;
}

.frc-date-month {
  display: block;
  font-size: 11px;
  color: #64748b;
  line-height: 1.2;
}

.frc-date-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

/* メインコンテンツ */
.frc-body {
  flex: 1;
  min-width: 0;
}

/* 船宿名 + エリア */
.frc-header {
  margin-bottom: 6px;
}

.frc-boat-link {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.frc-boat-link:hover {
  text-decoration: underline;
}

.frc-boat-name {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}

.frc-area {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  color: #64748b;
}

/* 釣り方タグ */
.frc-tags {
  margin-bottom: 6px;
}

.frc-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 4px;
}

/* 魚種リスト */
.frc-fish-list {
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

.frc-fish-item {
  white-space: nowrap;
}

.frc-fish-count {
  font-weight: 600;
  color: #1e293b;
}

.frc-fish-size {
  font-size: 12px;
  color: #64748b;
}

.frc-fish-sep {
  color: #cbd5e1;
  margin: 0 2px;
}

/* リンク行 */
.frc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.frc-link-detail {
  color: #2563eb;
  text-decoration: none;
}

.frc-link-detail:hover {
  text-decoration: underline;
}

.frc-link-source,
.frc-link-official {
  color: #64748b;
  text-decoration: none;
}

.frc-link-source:hover,
.frc-link-official:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 640px) {
  .frc-card {
    padding: 12px;
    gap: 8px;
  }

  .frc-date-col {
    width: 40px;
  }

  .frc-date-day {
    font-size: 20px;
  }

  .frc-area {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  .frc-fish-size {
    display: none;
  }

  .frc-links {
    flex-direction: column;
    gap: 6px;
  }

  .frc-link-official {
    display: none;
  }
}
