@charset "utf-8";
/* ========================================
   마을총회 상세 페이지 스타일
   ======================================== */

/* 목록보기 버튼 */
.activity-list-btn-wrap {
  display: flex;
  justify-content: center;
  padding: var(--spacing-xl) 0;
}

.btn-activity-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-primary-purple);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-activity-list:hover {
  background: #6a4c93;
}