/* blog.css — GoFunTW Blog Styles */

.blog-post { padding: 40px 0 80px; }
.blog-post-inner { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.post-article { margin-top: 32px; }

.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 8px; padding: 0; margin: 0 0 24px; font-size: .85rem; color: #999; }
.breadcrumb li + li::before { content: ">"; margin-right: 8px; color: #ccc; }
.breadcrumb a { color: #666; text-decoration: none; }
.breadcrumb a:hover { color: var(--coral, #e8704a); }

.article-meta { margin-bottom: 28px; }
.article-author-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.article-author-top img { border-radius: 50%; }
.article-updated { font-size: .82rem; color: #aaa; }

.tldr { background: #fff5f0; border-left: 4px solid var(--coral, #e8704a); padding: 16px 20px; border-radius: 8px; margin: 24px 0; }
.tldr strong { display: block; margin-bottom: 8px; font-size: .95rem; color: var(--coral, #e8704a); }
.tldr ul { margin: 0; padding-left: 18px; }
.tldr li { line-height: 1.7; font-size: .95rem; }

.author-note { background: #f7f7f7; border-left: 4px solid #999; padding: 16px 20px; border-radius: 8px; margin: 24px 0; font-style: italic; }
.author-note strong { display: block; margin-bottom: 6px; font-style: normal; color: #555; }

.tool-link { font-weight: 600; font-size: 1.05rem; margin: 20px 0; }
.tool-link a { color: var(--coral, #e8704a); }

.cta-card { background: var(--coral, #e8704a); color: #fff; border-radius: 12px; padding: 28px 32px; text-align: center; margin: 40px 0; }
.cta-card__label { font-size: .8rem; opacity: .85; margin-bottom: 6px; letter-spacing: .05em; text-transform: uppercase; }
.cta-card__desc { font-size: 1.05rem; margin-bottom: 20px; line-height: 1.6; }
.btn-cta { display: inline-block; border: 2px solid #fff; color: #fff; border-radius: 8px; padding: 12px 28px; font-weight: 700; text-decoration: none; transition: background .2s; font-size: 1rem; }
.btn-cta:hover { background: rgba(255,255,255,.15); }

.faq-block { margin-top: 48px; }
.faq-block h2 { margin-top: 0; margin-bottom: 24px; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text, #1a1a1a); }
.faq-a { color: #555; line-height: 1.7; margin: 0; }

.related-posts { margin-top: 40px; }
.related-posts h2 { margin-bottom: 20px; }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 640px) { .related-posts__grid { grid-template-columns: 1fr; } }
.related-post-card { display: block; border: 1px solid #e5e5e5; border-radius: 10px; padding: 18px; text-decoration: none; color: var(--text, #1a1a1a); transition: border-color .2s, box-shadow .2s; }
.related-post-card:hover { border-color: var(--coral, #e8704a); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.related-post-card__label { font-size: .75rem; color: #999; margin-bottom: 6px; }
.related-post-card__title { font-weight: 600; font-size: .95rem; line-height: 1.5; }

.author-bio { display: flex; gap: 20px; align-items: flex-start; border-top: 2px solid #f0f0f0; padding-top: 32px; margin-top: 40px; }
.author-bio img { border-radius: 50%; flex-shrink: 0; width: 64px; height: 64px; object-fit: cover; }
.author-bio__name { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.author-bio__desc { font-size: .9rem; color: #555; line-height: 1.7; margin-bottom: 8px; }
.author-bio a { color: var(--coral, #e8704a); font-weight: 600; text-decoration: none; }

.disclosure { font-size: .8rem; color: #999; margin-top: 40px; padding-top: 16px; border-top: 1px solid #eee; line-height: 1.6; }

.comparison-table, .rating-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .95rem; }
.comparison-table th, .comparison-table td,
.rating-table th, .rating-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid #eee; }
.comparison-table th, .rating-table th { background: #f8f4f0; font-weight: 700; color: var(--text, #1a1a1a); }
.comparison-table tr:last-child td, .rating-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
  .comparison-table, .rating-table { font-size: .82rem; }
  .comparison-table th, .comparison-table td,
  .rating-table th, .rating-table td { padding: 8px 10px; }
}

.blog-list-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
.blog-card { border: 1px solid #e5e5e5; border-radius: 10px; padding: 24px; transition: border-color .2s; }
.blog-card:hover { border-color: var(--coral, #e8704a); }
.blog-card__date { font-size: .85rem; color: #999; margin-bottom: 6px; }
.blog-card__tag { display: inline-block; font-size: .75rem; background: #f8f4f0; color: #888; border-radius: 4px; padding: 2px 8px; margin-bottom: 10px; }
.blog-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.blog-card__title a { color: var(--text, #1a1a1a); text-decoration: none; }
.blog-card__title a:hover { color: var(--coral, #e8704a); }
.blog-card__author { font-size: .85rem; color: #666; }
.blog-hero { text-align: center; padding: 48px 0 32px; }
.blog-hero h1 { font-size: 2rem; margin-bottom: 12px; }
.blog-hero p { color: #666; font-size: 1.05rem; }
