.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 95, 90, 0.12);
  color: var(--accent);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: #1f4b46;
}

.button--ghost {
  background: transparent;
  color: var(--accent);
}

.card {
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
}

.image-card {
  display: grid;
  gap: var(--space-2);
}

.list-check {
  display: grid;
  gap: 8px;
  margin-top: var(--space-2);
}

.list-check li {
  position: relative;
  padding-left: 24px;
}

.list-check li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
  position: absolute;
  left: 0;
  top: 9px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.tag[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.search-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-grid {
  display: grid;
  gap: var(--space-2);
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

.form-grid textarea {
  min-height: 160px;
  resize: vertical;
}

.notice {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(185, 155, 107, 0.15);
  color: #7a5d34;
}

.post-card {
  display: grid;
  gap: 12px;
  padding: var(--space-3);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-content h2,
.post-content h3 {
  margin-top: var(--space-4);
}

.post-content ul {
  list-style: disc;
  padding-left: var(--space-4);
}
