.cm-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 20px 80px;
}
.cm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.cm-tabs a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e9e4db;
  font-size: 13px;
  font-weight: 600;
  color: #5a6354;
  text-decoration: none;
  background: #fff;
}
.cm-tabs a.is-active,
.cm-tabs a:hover {
  background: #3e522d;
  border-color: #3e522d;
  color: #fff;
}
.cm-loading,
.cm-empty {
  text-align: center;
  color: #7c8370;
  padding: 48px 16px;
  font-size: 14px;
}
.cm-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e9e4db;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
@media (max-width: 640px) {
  .cm-card {
    grid-template-columns: 1fr;
  }
}
.cm-card:hover {
  box-shadow: 0 12px 28px rgba(26, 31, 22, 0.08);
  transform: translateY(-2px);
}
.cm-card__cover {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background: #f1f4ed;
}
.cm-card__cover--empty {
  min-height: 96px;
}
.cm-card__date {
  font-size: 12px;
  color: #a1a89a;
  margin: 0 0 6px;
}
.cm-card h2 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: #1a1f16;
}
.cm-card__excerpt {
  font-size: 13px;
  color: #5c5c5c;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cm-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.cm-gallery__item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e9e4db;
  background: #fff;
  text-decoration: none;
  color: #1a1f16;
}
.cm-gallery__item img,
.cm-gallery__ph {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f1f4ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #7c8370;
  padding: 12px;
  text-align: center;
}
.cm-gallery__item span {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
}
.cm-faq {
  border: 1px solid #e9e4db;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 10px;
  padding: 4px 16px;
}
.cm-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.cm-faq summary::-webkit-details-marker {
  display: none;
}
.cm-faq__body {
  padding: 0 0 16px;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.7;
}
.cm-detail h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 20px;
  line-height: 1.35;
}
.cm-detail__meta {
  font-size: 13px;
  color: #7c8370;
}
.cm-detail__meta a {
  color: #3e522d;
  font-weight: 600;
  text-decoration: none;
}
.cm-detail__cover {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
  max-height: 420px;
  object-fit: cover;
}
.cm-detail__body {
  font-size: 15px;
  line-height: 1.9;
  color: #3a4035;
  word-break: keep-all;
}
.cm-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
