/*
 * page-reports.css
 * 活動報告ページ固有スタイル
 */

.reports-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.report-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* 活動報告一覧ページ（横並びレイアウト） */
.reports-container .report-card {
  flex-direction: column;
}

@media (min-width: 768px) {
  .reports-container .report-card {
    flex-direction: row;
  }

  .reports-container .report-card .card-image {
    width: 280px;
    height: auto;
    flex-shrink: 0;
  }
}

/* トップページのグリッド内（縦並びレイアウト維持） */
.grid .report-card {
  flex-direction: column;
}

.grid .report-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 活動報告詳細 */
.report-detail {
  max-width: 800px;
  margin: 0 auto;
}

.report-detail-header {
  margin-bottom: var(--spacing-xl);
}

.report-detail-title {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.report-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.report-detail-body {
  font-size: 1.0625rem;
  line-height: 1.9;
}

.report-detail-body p {
  margin-bottom: var(--spacing-md);
}
