/* ============================================================
   オーナーの体験談カード（noteマガジン）
   各国ページ + ガイドブックトップで共通使用
   ============================================================ */

.owner-stories-list { display: flex; flex-direction: column; gap: 12px; }

.story-note-card {
  display: block;
  position: relative;
  background: linear-gradient(180deg, #fffaf0 0%, #fef8e8 100%);
  border: 1px solid #e8d8a8;
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: #2a2418;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  /* グリッド子として親より広がらないように */
  min-width: 0;
  overflow-wrap: break-word;
}
.story-note-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 168, 32, 0.18);
  border-color: #c8a820;
}
.snc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  color: rgba(42, 36, 24, 0.55);
}
.snc-icon { font-size: 16px; }
.snc-date { letter-spacing: 0.02em; }
.snc-tag {
  background: rgba(42, 157, 143, 0.12);
  color: #2a9d8f;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
}
.snc-source {
  margin-left: auto;
  background: #2a2418;
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.snc-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 6px;
  color: #2a2418;
}
.snc-desc {
  font-size: 12.5px;
  color: rgba(42, 36, 24, 0.75);
  line-height: 1.7;
  margin: 0 0 10px;
}
.snc-arrow {
  display: inline-block;
  font-size: 12px;
  color: #c8a820;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================
   ガイドブックトップの「最近の旅日記」セクション
   ============================================================ */

.gb2-stories {
  padding: 5rem 6vw;
  background: #fef8e8;
  border-top: 1px solid #e8d8a8;
}
.gb2-stories-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.gb2-stories-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0.5rem 0 0.8rem;
  color: #2a2418;
  line-height: 1.5;
}
.gb2-stories-grid {
  display: grid;
  /* minmax(0, 1fr) で grid item が intrinsic content size を超えて広がらないように */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.gb2-stories-more {
  text-align: center;
  margin: 2rem auto 0;
}
.gb2-stories-more a {
  display: inline-block;
  padding: 12px 24px;
  background: #2a2418;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease;
}
.gb2-stories-more a:hover { transform: translateY(-2px); }

@media (max-width: 768px) {
  .gb2-stories-grid { grid-template-columns: minmax(0, 1fr); }
  .gb2-stories { padding: 3rem 6vw; }
}
