/* area-page.css — /area/ pages additional styles */

/* === Comment Card === */
.comment-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid #1b5e20;
  border-radius: var(--card-radius);
  padding: 16px 18px;
  transition: border-left-color 0.4s;
}
.comment-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text2);
  margin-bottom: 6px;
}
.comment-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.action-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text2);
  margin-bottom: 5px;
}
.action-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* === SEO Grid === */
.seo-section h2 { margin-bottom: 16px; }
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.seo-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.seo-item h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.seo-item p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.7;
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text2);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* === Responsive === */
@media (max-width: 480px) {
  .seo-grid { grid-template-columns: 1fr; }
}
