@charset "utf-8";
/* htdocs/gnuboard/theme/muktimoon/skin/board/review/style.css */

/* 브랜드 컬러: theme common.css 변수 우선, 없으면 fallback */
:root {
  --mmr-brand: var(--mm-brand-primary, #1d4ed8);
  --mmr-border: rgba(0,0,0,.08);
  --mmr-muted: rgba(0,0,0,.60);
  --mmr-bg: #fff;
  --mmr-soft: #f3f4f6;
  --mmr-radius: 14px;
}


#mm-review-list{
  --mmf-brand: var(--mm-brand-primary, #1d4ed8);
  --mmf-brand-dark: var(--mm-brand-primary-dark, #1e40af);
  --mmf-soft: var(--mm-brand-soft, #eff6ff);
  --mmf-focus: var(--mm-focus-ring, rgba(29, 78, 216, 0.45));

  --mmf-line: #e5e7eb;
  --mmf-text: #111827;
  --mmf-muted: rgba(0,0,0,.55);

  --mmf-cmt: #ef4444;   /* 댓글수: 레드 톤 */
  --mmf-new: #ef4444;   /* N 배지 */
}

/* wrapper */
#mm-review-list { position: relative; }
#mm-review-list * { box-sizing: border-box; }

/* top bar */
.mm-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 8px;
}
.mm-review__count {
  font-weight: 400;
  color: rgba(0,0,0,.85);
}
.mm-review__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* rule line */
.mm-review__rule {
  height: 3px;
  background: var(--mmr-brand);
  border-radius: 999px;
  margin-bottom: 10px;
}

/* tool buttons */
.mm-toolbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--mmr-border);
  border-radius: 10px;
  background: #fff;
  color: rgba(0,0,0,.75);
  cursor: pointer;
}
.mm-toolbtn:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--mm-focus-ring, rgba(29, 78, 216, 0.25));
}

/* pop menu */
.mm-pop { position: relative; }
.mm-popmenu {
  position: absolute;
  right: 0;
  top: 42px;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--mmr-border);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  padding: 6px;
  z-index: 50;
}
.mm-popmenu a,
.mm-popmenu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: rgba(0,0,0,.85);
  cursor: pointer;
  text-decoration: none;
}
.mm-popmenu a:hover,
.mm-popmenu button:hover {
  background: rgba(0,0,0,.05);
}

/* search bar */
.mm-search { margin: 10px 0 12px; }
.mm-search__form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.mm-search__sel {
  height: 42px;
  border: 1px solid var(--mmr-border);
  border-radius: 10px;
  padding: 0 10px;
  background: #fff;
  color: rgba(0,0,0,.85);
  flex: 0 0 auto;
}
.mm-search__q {
  display: flex;
  align-items: center;
  height: 42px;
  border: 1px solid var(--mmr-border);
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 120px;
  background: #fff;
}
.mm-search__inp {
  border: 0;
  outline: 0;
  height: 100%;
  padding: 0 12px;
  flex: 1 1 auto;
  min-width: 0;
}
.mm-search__btn {
  width: 46px;
  height: 100%;
  border: 0;
  background: var(--mmr-brand);
  color: #fff;
  cursor: pointer;
}

/* grid */
.mm-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr; /* <=576 기본 */
  gap: 18px;
}
@media (min-width: 577px) {
  .mm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 992px) {
  .mm-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* card */
.mm-card {
  background: var(--mmr-bg);
  border-radius: var(--mmr-radius);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}

/* head / thumb */
.mm-card__head { padding: 12px 12px 0; position: relative; }
.mm-thumb {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  /* 이미지 영역 내 여백 없이 꽉 차게 */
  aspect-ratio: 16 / 10;
  background: #111;
}
.mm-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 핵심: 여백 없이 커버 */
  object-position: center;
}
.mm-thumb__empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.mm-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--mmr-brand);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 8px;
}

/* admin checkbox on thumb */
.mm-card__chk {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 5;
}
.mm-card__chk .selec_chk { position: absolute; opacity: 0; }
.mm-card__chk label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--mmr-border);
  cursor: pointer;
}
.mm-card__chk label span {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 2px solid rgba(0,0,0,.35);
}
.mm-card__chk .selec_chk:checked + label span {
  border-color: var(--mmr-brand);
  background: var(--mmr-brand);
}

/* body */
.mm-card__body { padding: 12px; }

/* table */
.mm-meta {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  border-radius: 12px;
}
.mm-meta th,
.mm-meta td {
  border: 1px solid rgba(0,0,0,.08);
  padding: 10px 10px;
  font-weight: 400;
  font-size: 14px;
}
.mm-meta th {
  width: 30%;
  background: var(--mmr-soft);
  color: rgba(0,0,0,.85);
  text-align: center;
}
.mm-meta td {
  text-align: center;
  color: rgba(0,0,0,.90);
}
/* td 값이 긴 경우: 1~2행(사이트 이름/주소)만 말줄임 처리 */
.mm-meta tbody tr:nth-child(1) td,
.mm-meta tbody tr:nth-child(2) td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 주소 링크도 셀 안에서 말줄임 */
.mm-meta tbody tr:nth-child(2) td a.mm-link {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mm-link { color: rgba(0,0,0,.90); text-decoration: none; }
.mm-link:hover { text-decoration: underline; }

/* rating (stars + score) */
.mm-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mm-stars {
  position: relative;
  width: 92px;           /* 별 5개 폭 */
  height: 16px;
  display: inline-block;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='16' viewBox='0 0 92 16'%3E%3Cg fill='none' stroke='%23d1d5db' stroke-width='1.2'%3E%3Cpath d='M8 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L8 11.98 3.87 14.18l.79-4.63L1.31 6.28l4.64-.68L8 1.4z'/%3E%3Cpath d='M26 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L26 11.98 21.87 14.18l.79-4.63-3.35-3.27 4.64-.68L26 1.4z'/%3E%3Cpath d='M44 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L44 11.98 39.87 14.18l.79-4.63-3.35-3.27 4.64-.68L44 1.4z'/%3E%3Cpath d='M62 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L62 11.98 57.87 14.18l.79-4.63-3.35-3.27 4.64-.68L62 1.4z'/%3E%3Cpath d='M80 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L80 11.98 75.87 14.18l.79-4.63-3.35-3.27 4.64-.68L80 1.4z'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat left center / 92px 16px;
  transform: scaleX(0.82);
  transform-origin: left center;
}
.mm-stars__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  overflow: hidden;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='16' viewBox='0 0 92 16'%3E%3Cg fill='%23ef4444'%3E%3Cpath d='M8 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L8 11.98 3.87 14.18l.79-4.63L1.31 6.28l4.64-.68L8 1.4z'/%3E%3Cpath d='M26 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L26 11.98 21.87 14.18l.79-4.63-3.35-3.27 4.64-.68L26 1.4z'/%3E%3Cpath d='M44 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L44 11.98 39.87 14.18l.79-4.63-3.35-3.27 4.64-.68L44 1.4z'/%3E%3Cpath d='M62 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L62 11.98 57.87 14.18l.79-4.63-3.35-3.27 4.64-.68L62 1.4z'/%3E%3Cpath d='M80 1.4l2.05 4.2 4.64.68-3.35 3.27.79 4.63L80 11.98 75.87 14.18l.79-4.63-3.35-3.27 4.64-.68L80 1.4z'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat left center / 92px 16px;
  /* 채움 색을 브랜드 컬러로 덮기 */
  filter: hue-rotate(0deg);
}
.mm-score {
  color: var(--mmr-brand);
  font-weight: 400;
}

/* footer row (stats + more) */
.mm-card__foot {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mm-stats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mmr-muted);
  font-size: 13px;
}
.mm-stat i { margin-right: 4px; }

.mm-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--mmr-border);
  color: rgba(0,0,0,.85);
  text-decoration: none;
  background: #fff;
}
.mm-more:hover { border-color: rgba(0,0,0,.18); }

/* empty */
.mm-empty {
  grid-column: 1 / -1;
  padding: 18px;
  text-align: center;
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 12px;
  color: rgba(0,0,0,.70);
  background: rgba(0,0,0,.02);
}

/* pagination */
#mm-review-list .mmf-pages{ margin: 16px 0 0; }
#mm-review-list .pg_wrap{ display:flex; justify-content:center; }
#mm-review-list .pg{ display:flex; justify-content:center; }
#mm-review-list .pg a,
#mm-review-list .pg .pg_page,
#mm-review-list .pg strong,
#mm-review-list .pg .pg_current{
  min-width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--mmf-line);
  background:#fff;
  color: var(--mmf-text);
  text-decoration:none;
  margin: 0 3px;
  border-radius: 4px;
}
#mm-review-list .pg strong,
#mm-review-list .pg .pg_current{
  background: var(--mmf-brand);
  border-color: var(--mmf-brand);
  color: #fff;
}
@media (max-width: 766px){
  #mm-review-list .pg a,
  #mm-review-list .pg .pg_page,
  #mm-review-list .pg strong,
  #mm-review-list .pg .pg_current{
    min-width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

/* 모바일(<=576): 카드 가로형(이미지 좌 / 정보 우), footer도 2열 느낌 */
@media (max-width: 576px) {
  .mm-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
  }
  .mm-card__head {
    padding: 12px 0 12px 12px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .mm-thumb { aspect-ratio: 4 / 3; }

  .mm-card__body {
    padding: 12px 12px 12px 10px;
    grid-column: 2;
  }

  /* 벤치마킹처럼 stats(좌) + 자세히보기(우) 한 줄 유지 */
  .mm-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .mm-stats {
    flex: 1 1 auto;
    min-width: 0; /* 텍스트/아이콘 줄어들 수 있게 */
  }
  .mm-more {
    flex: 0 0 auto;
    margin-left: auto;
    width: auto;
    white-space: nowrap;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   review/write.skin.php styles (append)
   - font-weight는 400 이하 유지
-------------------------------------------------------------------------- */

#mm-review-write { position: relative; }
#mm-review-write * { box-sizing: border-box; }

.mm-write__head { margin: 12px 0 14px; }
.mm-write__title { margin: 0 0 6px; font-weight: 400; font-size: 20px; }
.mm-write__desc { margin: 0; color: rgba(0,0,0,.65); font-weight: 400; font-size: 13px; }

.mm-form { max-width: 960px; margin: 0 auto; }

.mm-fieldset {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 14px;
  margin: 0 0 14px;
  background: #fff;
}
.mm-legend { padding: 0 6px; font-weight: 400; color: rgba(0,0,0,.85); }

.mm-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 577px) {
  .mm-grid2 { grid-template-columns: 1fr 1fr; }
}

.mm-field { display: grid; gap: 8px; }
.mm-label { font-weight: 400; color: rgba(0,0,0,.85); }
.mm-req { font-weight: 400; color: var(--mmr-brand); font-size: 12px; margin-left: 4px; }

.mm-input {
  height: 44px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 0 12px;
  font-weight: 400;
  background: #fff;
}
textarea.mm-input { height: auto; padding: 10px 12px; }

.mm-help { margin: 0; color: rgba(0,0,0,.55); font-size: 12px; font-weight: 400; }

.mm-autosave { display: grid; gap: 10px; }
.mm-autosave__pop { border: 1px solid rgba(0,0,0,.12); border-radius: 12px; padding: 10px; background: #fff; }

.mm-options { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }

.mm-avg { align-content: start; }
.mm-avg__box {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: rgba(0,0,0,.02);
  width: fit-content;
}
.mm-avg__num { font-weight: 400; font-size: 18px; color: var(--mmr-brand); }
.mm-avg__unit { color: rgba(0,0,0,.60); font-weight: 400; }

.mm-file { display: grid; gap: 10px; }
.mm-file__del { display: inline-flex; align-items: center; gap: 8px; color: rgba(0,0,0,.70); font-weight: 400; font-size: 13px; }

.mm-char { margin-top: 8px; color: rgba(0,0,0,.60); font-weight: 400; font-size: 12px; }

.mm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 14px 0 6px;
}

.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: rgba(0,0,0,.85);
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
}
.mm-btn--primary {
  background: var(--mmr-brand);
  border-color: var(--mmr-brand);
  color: #fff;
}
.mm-btn--ghost { background: #fff; }

.mm-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--mm-focus-ring, rgba(29, 78, 216, 0.25));
}


/* ==========================================================================
   review/view.skin.php
   - benchmark layout (mobile stack / pc two columns)
   ========================================================================== */

.mmv { width: 100%; }
.mmv-head { margin-bottom: 14px; }

.mmv-title{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 400;
  word-break: keep-all;
}

.mmv-meta{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mmv-author{ display:flex; align-items:center; gap:8px; }
.mmv-author__avatar img{ width:24px; height:24px; border-radius:999px; display:block; }
.mmv-author__name{ font-weight:400; }

.mmv-stats{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 8px;
  color: #64748b;
  flex-wrap: wrap;
}
.mmv-stat i{ margin-right: 4px; }

.mmv-meta__right{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin-left:auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mmv-date{ color:#64748b; white-space:nowrap; }

.mmv-actions{ display:flex; gap:8px; align-items:center; flex-wrap: wrap; justify-content:flex-end; }
.mmv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color:#0f172a;
  text-decoration:none;
  font-weight:400;
}
.mmv-btn--outline{
  border-color: var(--mm-brand-primary);
  color: var(--mm-brand-primary);
}
.mmv-btn--icon{ width:32px; padding:0; }

.mmv-pop{ position:relative; }
.mmv-menu{
  position:absolute;
  right:0;
  top: calc(100% + 8px);
  min-width: 140px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(2,6,23,.10);
  overflow:hidden;
  z-index: 20;
}
.mmv-menu a{
  display:block;
  padding:10px 12px;
  color:#0f172a;
  text-decoration:none;
}
.mmv-menu a:hover{ background:#f1f5f9; }

.mmv-topgrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}
@media (min-width: 992px){
  .mmv-topgrid{ grid-template-columns: 1fr 1fr; gap: 16px; }
}

.mmv-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
  overflow:hidden;
}
.mmv-card--hero{ overflow:hidden; }
.mmv-card__cap{
  background:#111827;
  color:#fff;
  text-align:center;
  padding: 10px 12px;
  font-weight:400;
}
.mmv-hero{ aspect-ratio: 16/9; background:#0b1220; }
.mmv-hero img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.mmv-hero__empty{ width:100%; height:100%; }

.mmv-card--meta{ padding: 0; }
.mmv-metaTable{ width:100%; border-collapse: collapse; }
.mmv-metaTable th{
  width: 30%;
  background:#2f343b;
  color:#fff;
  font-weight:400;
  padding: 10px 12px;
  border-top: 1px solid #e5e7eb;
}
.mmv-metaTable td{
  width: 70%;
  padding: 10px 12px;
  border-top: 1px solid #e5e7eb;
}
.mmv-metaTable tr:first-child th,
.mmv-metaTable tr:first-child td{ border-top:none; }

.mmv-card--chart{ padding-bottom: 12px; }
.mmv-card__hd{
  background: var(--mm-brand-primary);
  color:#fff;
  text-align:center;
  padding: 12px;
  font-weight:400;
}

.mmv-chartWrap{ padding: 16px 18px 10px; }
.mmv-radar{
  width: 100%;
  max-width: 360px;   /* viewBox(360) 기준, 과도 확대 방지 */
  height: auto;
  display: block;
  margin: 0 auto;     /* 중앙 정렬 */
}
.mmv-radar__grid{
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 2;
}
.mmv-radar__axis{
  stroke: #e5e7eb;
  stroke-width: 2;
}
.mmv-radar__ticks text{
  font-size: 11px;
  fill: #94a3b8;
  text-anchor: middle;
}
.mmv-radar__label{
  font-size: 12px;
  fill: #0f172a;
}
.mmv-radar__val{
  font-size: 12px; /* (값)도 동일 톤으로 정리 */
  fill: #e11d2e;
}
.mmv-radar__dataFill{
  fill: rgba(29, 78, 216, 0.12);
  stroke: none;
}
.mmv-radar__dataLine{
  fill: none;
  stroke: var(--mm-brand-primary);
  stroke-width: 3;
}

.mmv-votes{
  display:flex;
  align-items:stretch;
  justify-content:center;
  margin: 6px 12px 0;
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid #e2e8f0;
}
.mmv-vote{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  height: 44px;
  text-decoration:none;
  font-weight:400;
}
.mmv-vote--good{
  background:#ef4444;
  color:#fff;
}
.mmv-vote--nogood{
  background:#fff;
  color:#0f172a;
}
.mmv-vote__num{ font-variant-numeric: tabular-nums; }
.mmv-voteMsg{
  text-align:center;
  color:#64748b;
  min-height: 18px;
  margin-top: 6px;
}
.mmv-voteMsg span{ display:none; }

.mmv-body{ margin-top: 18px; }
.mmv-sectionTitle{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 0 0 12px;
}
.mmv-sectionTitle__tab{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border: 3px solid var(--mm-brand-primary);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  color: var(--mm-brand-primary);
  background:#fff;
  font-weight:400;
}
.mmv-sectionTitle__line{
  height: 3px;
  flex:1;
  background: var(--mm-brand-primary);
  border-radius: 999px;
}
.mmv-content{
  padding: 6px 2px 0;
  line-height: 1.75;
  color:#0f172a;
}
.mmv-content h2, .mmv-content h3{
  font-weight:400;
  margin: 18px 0 8px;
}

/* view: attachment #2 shown above content */
.mmv-inlineimg{
  margin: 16px 0;
  text-align: center;
}

.mmv-inlineimg a{
  display: inline-block;
  max-width: 100%;
}

.mmv-inlineimg img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}


/* ======================================================================
   free - view comment UI (mmc) : start
   - Breakpoints: <=766 / >=767
   - Uses theme vars: --mm-brand-primary etc
   ====================================================================== */

.mmc,
.mmc *{ box-sizing:border-box; font-weight:400; }

.mmc{
  --mmc-brand: var(--mm-brand-primary, #1d4ed8);
  --mmc-brand-dark: var(--mm-brand-primary-dark, #1e40af);
  --mmc-soft: var(--mm-brand-soft, #eff6ff);
  --mmc-focus: var(--mm-focus-ring, rgba(29,78,216,.45));

  --mmc-line: rgba(0,0,0,.10);
  --mmc-text: #111827;
  --mmc-muted: rgba(0,0,0,.60);
  --mmc-danger: #ef4444; /* 벤치마킹: 신고/시간 톤 */
}

.mmc-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 0 10px;
  border-top: 1px solid var(--mmc-line);
}

.mmc-top__left{
  display:flex;
  align-items:baseline;
  gap:8px;
  color: var(--mmc-text);
}
.mmc-top__cnt{ font-size:14px; }
.mmc-top__cnt strong{ font-weight:400; }
.mmc-top__page{ color: var(--mmc-muted); font-size:13px; }

.mmc-top__right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  color: var(--mmc-muted);
  font-size:13px;
}

/* list rows */
.mmc-list{
  border-top: 1px solid var(--mmc-line);
}

.mmc-item{
  padding: 14px 0;
  border-bottom: 1px solid var(--mmc-line);
}

/* head line: [avatar + name] ..... [time] */
.mmc-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.mmc-who{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.mmc-avatar{
  flex:0 0 auto;
  width: 28px;
  height: 28px;
  border-radius:999px;
  overflow:hidden;
  background: rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}
.mmc-avatar img{
  width: 28px;
  height: 28px;
  border-radius:999px;
  object-fit:cover;
  display:block;
}

.mmc-name{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color: var(--mmc-text);
  font-size:14px;
  line-height:1.2;
}

.mmc-score{
  display:inline-flex;
  align-items:center;
  gap:6px;
  height: 22px;
  padding: 0 10px;
  border-radius:999px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  color: rgba(0,0,0,.65);
  font-size:12px;
  line-height:1;
}

.mmc-time{
  flex:0 0 auto;
  color: var(--mmc-danger);
  font-size:12px;
  white-space:nowrap;
}

/* body text */
.mmc-body{
  margin-top: 10px;
  color: var(--mmc-text);
  font-size:14px;
  line-height:1.7;
  word-break: break-word;
}

/* footer actions (right aligned like benchmark) */
.mmc-foot{
  margin-top: 10px;
}

.mmc-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}

.mmc-act{
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 6px;
  background:#fff;
  color: rgba(0,0,0,.70);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.mmc-act i{ color: rgba(0,0,0,.60); }
.mmc-act__num{ min-width: 10px; }

.mmc-act--decl{
  border-color: var(--mmc-danger);
  color: var(--mmc-danger);
}
.mmc-act--decl i{ color: var(--mmc-danger); }

/* more(…) menu */
.mmc-more{
  height: 30px;
  width: 34px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 6px;
  background:#fff;
  color: rgba(0,0,0,.70);
  cursor:pointer;
}

.mmc-menu{
  position:absolute;
  right: 0;
  margin-top: 6px;
  min-width: 120px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  padding: 6px;
  z-index: 60;
}
.mmc-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration:none;
  color: var(--mmc-text);
}
.mmc-menu a:hover{ background: rgba(0,0,0,.05); }

/* pager: same tone as list */
.mmc-pager{ margin: 14px 0 0; }
.mmc-pager .pg_wrap{ display:flex; justify-content:center; }
.mmc-pager .pg{ display:flex; justify-content:center; }

.mmc-pager .pg a,
.mmc-pager .pg strong,
.mmc-pager .pg .pg_current{
  min-width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  color: var(--mmc-text);
  text-decoration:none;
  margin: 0 3px;
  border-radius: 4px;
}
.mmc-pager .pg strong,
.mmc-pager .pg .pg_current{
  background: var(--mmc-danger);
  border-color: var(--mmc-danger);
  color:#fff;
}

@media (max-width: 766px){
  .mmc-pager .pg a,
  .mmc-pager .pg strong,
  .mmc-pager .pg .pg_current{
    min-width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

/* write area (new comment / guest message) */
.mmc-refresh{
  display:block;
  width:100%;
  margin: 14px 0 0;
  padding: 14px 12px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 0;
  background:#fff;
  color: var(--mmc-text);
  text-decoration:none;
  text-align:center;
}

.mmc-only{
  margin: 14px 0 0;
  padding: 24px 12px;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  text-align:center;
  color: var(--mmc-text);
}

/* bottom buttons: 목록 / 신고 (benchmark-like) */
.mmc-bottom{
  margin: 14px 0 0;
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.mmc-back,
.mmc-declare{
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  color: var(--mmc-text);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.mmc-declare{
  border-color: var(--mmc-danger);
  color: var(--mmc-danger);
}
.mmc-declare i{ color: var(--mmc-danger); }

/* >=767: slightly roomier like benchmark */
@media (min-width: 767px){
  .mmc-item{ padding: 16px 0; }
  .mmc-avatar,
  .mmc-avatar img{ width: 30px; height: 30px; }
  .mmc-time{ font-size:13px; }
}
/* ======================================================================
   free - view_comment UI (mmc)
   - Breakpoints: <=766 / >=767
   - 목표: 벤치마킹과 동일한 "댓글 리스트 + 우측 액션 + 작성폼" 톤
   ====================================================================== */

#bo_vc.mmc,
#bo_vc.mmc *{ box-sizing:border-box; font-weight:400; }

#bo_vc.mmc{
  --mmc-brand: var(--mm-brand-primary, #1d4ed8);
  --mmc-brand-dark: var(--mm-brand-primary-dark, #1e40af);
  --mmc-soft: var(--mm-brand-soft, #eff6ff);
  --mmc-focus: var(--mm-focus-ring, rgba(29,78,216,.45));
  --mmc-line: rgba(0,0,0,.10);
  --mmc-text: #111827;
  --mmc-muted: rgba(0,0,0,.60);
  --mmc-danger: #ef4444;

  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--mmc-line);
}

/* 상단(댓글수/정렬) */
#bo_vc.mmc .mmc-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
}

#bo_vc.mmc .mmc-top__left{
  display:flex;
  align-items:baseline;
  gap: 8px;
  color: var(--mmc-text);
  font-size: 14px;
}

#bo_vc.mmc .mmc-top__cnt strong{ font-weight:400; }
#bo_vc.mmc .mmc-top__page{ color: var(--mmc-muted); font-size: 13px; }

#bo_vc.mmc .mmc-top__right{
  color: var(--mmc-muted);
  font-size: 13px;
  white-space: nowrap;
}

#bo_vc.mmc .mmc-sort a{ color: inherit; text-decoration:none; }
#bo_vc.mmc .mmc-sort a:hover{ text-decoration: underline; }

/* 리스트 */
#bo_vc.mmc .mmc-list{
  border-top: 1px solid var(--mmc-line);
}

#bo_vc.mmc .mmc-item{
  padding: 6px 10px;
  border-bottom: 1px solid var(--mmc-line);
}

#bo_vc.mmc .mmc-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

#bo_vc.mmc .mmc-who{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

#bo_vc.mmc .mmc-avatar{
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

#bo_vc.mmc .mmc-avatar img{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  object-fit: cover;
  display:block;
}

#bo_vc.mmc .mmc-name{
  color: var(--mmc-text);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

#bo_vc.mmc .mmc-time{
  color: var(--mmc-danger);
  font-size: 13px;
  white-space: nowrap;
}

#bo_vc.mmc .mmc-body{
  margin-top: 8px;
  color: var(--mmc-text);
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: anywhere;
  padding-left: 30px;
}

/* 하단 액션(우측) */
#bo_vc.mmc .mmc-foot{
  margin-top: 0;
  display:flex;
  justify-content:flex-end;
}

#bo_vc.mmc .mmc-actions{
  position: relative;
  display:flex;
  align-items:center;
  gap: 8px;
}

#bo_vc.mmc .mmc-act,
#bo_vc.mmc .mmc-more{
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  color: rgba(0,0,0,.75);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 0 12px;
  cursor: pointer;
}

#bo_vc.mmc .mmc-act:focus,
#bo_vc.mmc .mmc-more:focus{
  outline: 2px solid var(--mmc-focus);
  outline-offset: 2px;
}

#bo_vc.mmc .mmc-act__num{
  min-width: 10px;
  color: rgba(0,0,0,.70);
}

#bo_vc.mmc .mmc-act--decl{
  border-color: var(--mmc-danger);
  color: var(--mmc-danger);
}

#bo_vc.mmc .mmc-act--decl .mmc-act__num{ color: inherit; }

#bo_vc.mmc .mmc-more{
  width: 34px;
  padding: 0;
}

/* … 메뉴 */
#bo_vc.mmc .mmc-menu{
  position:absolute;
  right: 0;
  top: 42px;
  min-width: 120px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  padding: 6px;
  z-index: 60;
}

#bo_vc.mmc .mmc-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--mmc-text);
  text-decoration:none;
}

#bo_vc.mmc .mmc-menu a:hover{
  background: rgba(0,0,0,.05);
}

/* 페이징 */
#bo_vc.mmc .mmc-pager{
  margin-top: 16px;
}

#bo_vc.mmc .mmc-pager .pg_wrap{
  display:flex;
  justify-content:center;
}

#bo_vc.mmc .mmc-pager .pg a,
#bo_vc.mmc .mmc-pager .pg .pg_page,
#bo_vc.mmc .mmc-pager .pg strong,
#bo_vc.mmc .mmc-pager .pg .pg_current{
  min-width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--mmc-line);
  background:#fff;
  color: var(--mmc-text);
  text-decoration:none;
  margin: 0 3px;
  border-radius: 4px;
}

#bo_vc.mmc .mmc-pager .pg strong,
#bo_vc.mmc .mmc-pager .pg .pg_current{
  background: var(--mmc-danger);
  border-color: var(--mmc-danger);
  color: #fff;
}

/* 작성폼 */
#bo_vc.mmc .mmc-write{
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--mmc-line);
  border-radius: 14px;
  background: #fff;
}

#bo_vc.mmc .mmc-refresh{
  display:block;
  text-align:center;
  padding: 12px;
  border: 1px solid var(--mmc-line);
  border-radius: 12px;
  background: #fff;
  color: var(--mmc-text);
  text-decoration:none;
  margin-bottom: 12px;
}

#bo_vc.mmc .mmc-write__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

#bo_vc.mmc .mmc-scoreinp{
  width: 110px;
  height: 40px;
  border: 1px solid var(--mmc-line);
  border-radius: 10px;
  padding: 0 10px;
}

#bo_vc.mmc .mmc-char{
  color: var(--mmc-muted);
  font-size: 13px;
  white-space: nowrap;
}

#bo_vc.mmc .mmc-textarea{
  width: 100%;
  min-height: 92px;
  border: 1px solid var(--mmc-line);
  border-radius: 12px;
  padding: 10px 12px;
  resize: vertical;
}

#bo_vc.mmc .mmc-scoreinp:focus,
#bo_vc.mmc .mmc-textarea:focus{
  outline: 2px solid var(--mmc-focus);
  outline-offset: 2px;
}

#bo_vc.mmc .mmc-write__foot{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#bo_vc.mmc .mmc-write__left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

#bo_vc.mmc .mmc-inp{
  height: 40px;
  border: 1px solid var(--mmc-line);
  border-radius: 10px;
  padding: 0 10px;
}

#bo_vc.mmc .mmc-write__right{
  display:flex;
  align-items:center;
  gap: 10px;
}

#bo_vc.mmc .mmc-submit{
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--mmc-danger);
  background: var(--mmc-danger);
  color: #fff;
  cursor: pointer;
}

#bo_vc.mmc .mmc-submit:hover{
  filter: brightness(.95);
}

/* 하단(목록/신고) */
#bo_vc.mmc .mmc-bottom{
  margin-top: 14px;
  display:flex;
  justify-content:flex-end;
  gap: 10px;
}

#bo_vc.mmc .mmc-back,
#bo_vc.mmc .mmc-declare{
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  color: var(--mmc-text);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
}

#bo_vc.mmc .mmc-declare{
  border-color: var(--mmc-danger);
  color: var(--mmc-danger);
}

/* 모바일(<=766) */
@media (max-width: 766px){
  #bo_vc.mmc .mmc-avatar,
  #bo_vc.mmc .mmc-avatar img{
    width: 30px;
    height: 30px;
  }

  #bo_vc.mmc .mmc-act,
  #bo_vc.mmc .mmc-more{
    height: 32px;
    border-radius: 10px;
    padding: 0 10px;
  }

  #bo_vc.mmc .mmc-more{ width: 32px; padding: 0; }

  #bo_vc.mmc .mmc-scoreinp{ width: 92px; }
}
/* ======================================================================
   free - comment UI (mmc)
   - Breakpoints: <=766 / >=767
   ====================================================================== */
.mmc,
.mmc *{ box-sizing:border-box; font-weight:400; }

.mmc{
  --mmc-brand: var(--mm-brand-primary, #1d4ed8);
  --mmc-brand-dark: var(--mm-brand-primary-dark, #1e40af);
  --mmc-focus: var(--mm-focus-ring, rgba(29, 78, 216, 0.45));
  --mmc-line: rgba(0,0,0,.10);
  --mmc-text: #111827;
  --mmc-muted: rgba(0,0,0,.60);
  --mmc-danger: #ef4444;
}

/* header (댓글 n / 페이지, 정렬) */
.mmc-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--mmc-line);
}

.mmc-top__left{
  display:flex;
  align-items:baseline;
  gap: 8px;
  color: var(--mmc-text);
  font-size: 13px;
}
.mmc-top__cnt strong{ font-weight:400; }
.mmc-top__page{ color: rgba(0,0,0,.55); }

.mmc-top__right{
  color: rgba(0,0,0,.55);
  font-size: 13px;
  white-space: nowrap;
}

/* list */
.mmc-list{ border-top: 1px solid var(--mmc-line); }

.mmc-item{
  padding: 18px 0;
  border-bottom: 1px solid var(--mmc-line);
  padding-left: var(--mmc-indent, 0px);
}

/* 원글작성자 강조(벤치마킹의 옅은 핑크 톤) */
.mmc-item--owner{
  background: rgba(239, 68, 68, .08);
}

/* head */
.mmc-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.mmc-who{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.mmc-avatar{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  overflow:hidden;
  background: rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.mmc-avatar img{
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 999px;
  display:block;
}

.mmc-name{
  color: var(--mmc-text);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

/* 답변 표시 "이미지" (SVG background) */
.mmc-replymark{
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  opacity: .65;
  /* ↳ 느낌의 아이콘 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M6 3v4c0 1.1.9 2 2 2h5' fill='none' stroke='%239ca3af' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M11.5 6.5L13 9l-1.5 2.5' fill='none' stroke='%239ca3af' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mmc-time{
  color: var(--mmc-danger);
  font-size: 13px;
  white-space: nowrap;
}

/* body */
.mmc-body{
  margin: 10px 0 0;
  color: var(--mmc-text);
  line-height: 1.7;
}
.mmc-body-secret a{
  text-decoration: none;
  color: var(--mmc-text);
}

/* actions row */
.mmc-foot{ margin-top: 14px; }
.mmc-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 8px;
  position: relative;
}

.mmc-act{
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  color: rgba(0,0,0,.70);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 6px;
}

.mmc-act:focus{
  outline: 2px solid var(--mmc-focus);
  outline-offset: 2px;
}

.mmc-act__num{ font-weight:400; }

.mmc-act--decl{
  border-color: var(--mmc-danger);
  color: var(--mmc-danger);
}

.mmc-more{
  width: 34px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  color: rgba(0,0,0,.70);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mmc-menu{
  position:absolute;
  right: 0;
  top: 40px;
  min-width: 120px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  padding: 6px;
  z-index: 60;
}
.mmc-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration:none;
  color: var(--mmc-text);
}
.mmc-menu a:hover{ background: rgba(0,0,0,.05); }

/* empty */
.mmc-empty{
  margin: 0;
  padding: 18px 0;
  color: rgba(0,0,0,.55);
  text-align:center;
}

/* pager */
.mmc-pager{ margin: 16px 0 0; }
.mmc-pager .pg_wrap{ display:flex; justify-content:center; }
.mmc-pager .pg{ display:flex; justify-content:center; }
.mmc-pager .pg a,
.mmc-pager .pg strong{
  min-width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  color: var(--mmc-text);
  text-decoration:none;
  margin: 0 3px;
  border-radius: 4px;
}
.mmc-pager .pg strong{
  background: var(--mmc-brand);
  border-color: var(--mmc-brand);
  color: #fff;
}

/* write */
.mmc-write{ margin-top: 16px; }
.mmc-refresh{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 52px;
  border: 1px solid var(--mmc-line);
  border-radius: 10px;
  text-decoration:none;
  color: var(--mmc-text);
  background:#fff;
}

.mmc-write__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin: 10px 0 8px;
}

.mmc-scoreinp{
  width: 110px;
  height: 34px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 8px;
  padding: 0 10px;
}

.mmc-textarea{
  width: 100%;
  min-height: 92px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 10px 12px;
  resize: vertical;
}

.mmc-write__foot{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-top: 10px;
}

.mmc-write__right{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
}

.mmc-submit{
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  color: var(--mmc-text);
  cursor:pointer;
}

.mmc-bottom{
  display:flex;
  justify-content:flex-end;
  gap: 8px;
  margin-top: 14px;
}

.mmc-back,
.mmc-declare{
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  color: var(--mmc-text);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.mmc-declare{
  border-color: var(--mmc-danger);
  color: var(--mmc-danger);
}

/* mobile tighten */
@media (max-width: 766px){
  .mmc-write__foot{
    flex-direction: column;
    align-items: stretch;
  }
  .mmc-write__right{
    justify-content: flex-end;
  }
  .mmc-pager .pg a,
  .mmc-pager .pg strong{
    min-width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

section.mmv-topgrid .mmv-card.mmv-card--meta{ margin-top:16px; }