
/* ===== 記事一覧：活動記録と統一カードレイアウト ===== */
:root{
  --card-bg:#fff;
  --ink:#3e3a2f;
  --muted:#6b6b6b;
  --beige:#f3efe7;
  --brand:#7d6e57;
}

/* Activity と同じメイン幅・カード表現 */
main.wrap{ max-width:1080px; margin:24px auto; padding:0 16px; }

.card{
  background:var(--card-bg);
  border-radius:16px;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.lead .inner{ padding:24px 18px; text-align:center; }

/* blocks-grid */
.blocks-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  margin-top:24px;
}

/* 記事カード */
#posts-grid > *{
  padding:16px 18px;
  display:flex;
  flex-direction:column;
}

/* 日付・タイトル・本文 */
#posts-grid .date,
#posts-grid time{
  color:var(--muted);
  font-size:.9rem;
  margin-bottom:4px;
}
#posts-grid h2, #posts-grid h3{
  font-size:1rem;
  margin:0 0 6px;
}
#posts-grid p{
  margin:0 0 6px;
  line-height:1.7;
}

/* --- ボタン風リンク（左：続きを読む / 右：コメントする） --- */
#posts-grid p:last-child {
  margin-top:8px;
}

#posts-grid p:last-child a{
  font-size:0.80rem;          /* 少し小さく */
  padding:3px 8px;            /* ボタンらしい余白 */
  border:1px solid #c8d9ff;   /* 薄い青枠 */
  border-radius:6px;
  background:#f5f8ff;         /* very light blue */
  text-decoration:none;
  color:#0066cc;
  margin-right:6px;
  display:inline-block;
}

#posts-grid p:last-child a:last-child{
  margin-right:0;
}

#posts-grid p:last-child a:hover{
  background:#e8f1ff;
  text-decoration:none;
  color:#004a99;
}

/* Skeleton */
.skeleton{
  height:140px;
  background: linear-gradient(90deg, #f5f2ea 25%, #faf7f2 37%, #f5f2ea 63%);
  background-size:400% 100%;
  animation: shimmer 1.4s infinite;
  border-radius:16px;
}
@keyframes shimmer{
  0%{ background-position:100% 0; }
  100%{ background-position:-100% 0; }
}

/* スマホ */
@media (max-width:768px){
  #posts-grid > *{ padding:14px 14px; }
  #posts-grid p:last-child a{
    font-size:0.78rem;
    padding:3px 6px;
  }
}
