/* cocohate / guide.css - ガイド・コラム記事用 */

.guide-hero {
  position: relative;
  padding: 5rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.guide-hero .hero-eyebrow {
  font-family: var(--font-heading);
  letter-spacing: 0.3em;
  color: var(--accent);
  font-size: 0.85rem;
}
.guide-hero h1 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--hero-text);
  margin: 0.6rem 0;
  line-height: 1.4;
}
.guide-hero p.lead {
  color: var(--text2);
  max-width: 720px;
  margin: 0.5rem auto 0;
  font-size: 0.98rem;
}

.guide-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.guide-article h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 2.4rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.guide-article h3 {
  font-size: 1.12rem;
  color: var(--hero-text);
  margin: 1.6rem 0 0.6rem;
}
.guide-article p {
  color: var(--text);
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.9;
}
.guide-article ul, .guide-article ol {
  margin: 0 0 1.2rem 1.4rem;
  color: var(--text);
  line-height: 1.9;
}
.guide-article li { margin-bottom: 0.4rem; }
.guide-article strong { color: var(--accent); }

.guide-note {
  background: var(--surface);
  border-left: 4px solid var(--accent2);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  color: var(--text2);
  font-size: 0.95rem;
}
.guide-warn {
  background: rgba(192,57,43,0.08);
  border-left: 4px solid var(--danger);
}

/* ハブカードグリッド */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
  max-width: 980px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}
.guide-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}
.guide-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.guide-card .gc-icon { font-size: 2rem; }
.guide-card h3 {
  font-size: 1.08rem;
  color: var(--hero-text);
  margin: 0.6rem 0 0.4rem;
}
.guide-card p { color: var(--text2); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* 関連記事 */
.guide-related {
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}
.guide-related h2 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.guide-related a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  transition: border-color .2s, color .2s;
}
.guide-related a:hover { border-color: var(--accent); color: var(--accent); }

.guide-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: var(--accent);
  color: var(--tape-text);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 6px;
}

/* FAQ（記事内） */
.guide-faq dt {
  font-weight: 700;
  color: var(--hero-text);
  margin-top: 1.2rem;
}
.guide-faq dd {
  margin: 0.4rem 0 0;
  color: var(--text2);
  line-height: 1.8;
}
