/* ===================== Base (Winter White theme) ===================== */
:root {
  --bg: #e9eef2;          /* 아이시 그레이블루 (바깥 여백) */
  --paper: #fdfeff;       /* 본문 종이 (살짝 차가운 화이트) */
  --ink: #2b353d;
  --ink-soft: #515d67;
  --line: #e3ebf0;
  --point: #6f93b3;       /* 포인트(아이시 블루) */
  --point-soft: #c2d5e3;
  --rose: #c98b8b;        /* 보조 포인트(소프트 로즈) - 일요일/하트 */
  --frost: #eef4f8;       /* 카드/블록 배경 */
  --maxw: 460px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Gowun Batang', 'Nanum Myeongjo', 'Apple SD Gothic Neo', serif;
  line-height: 1.8;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* 가운데 정렬된 모바일 폭 컨테이너 */
.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--paper);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(80,110,135,0.12);
  overflow: hidden;
}

section {
  padding: 64px 28px;
  text-align: center;
  position: relative;
}

.label {
  font-family: 'Great Vibes', cursive;
  font-size: 27px;
  color: var(--point);
  margin: 0 0 6px;
}
.sec-title {
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--point);     /* 색상 변경 (회색 → 포인트색) */
  font-weight: 700;        /* 굵게 */
  margin: 0 0 36px;
  text-transform: uppercase;
}
/* 우리의 순간들 · 오시는 길 · 마음 전하실 곳 은 더 크게 */
.gallery .sec-title,
.location .sec-title,
.accounts .sec-title { font-size: 19px; letter-spacing: 0.22em; }
/* greeting 제목 색 적용 (.greeting p 보다 우선) */
.greeting .sec-title { color: var(--point); }
/* Invitation 라벨 크게 */
.greeting .label { font-size: 36px; }

/* 장식 구분선 (가운데 눈송이) */
.divider {
  position: relative;
  width: 130px;
  height: 16px;
  margin: 0 auto 30px;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--point-soft) 25%, var(--point-soft) 75%, transparent);
}
.divider::after {
  content: "\2744";          /* ❄ */
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 10px;
  color: var(--point);
  font-size: 13px;
}

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ===================== Snowfall (CSS animation) ===================== */
.snowfall {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 60;
}
.flake {
  position: absolute;
  top: -6vh;
  left: var(--l, 50%);
  width: var(--s, 6px);
  height: var(--s, 6px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(150,182,208,0.9));
  opacity: 0;
  filter: blur(0.3px);
  animation: snow-fall var(--t, 12s) linear var(--d, 0s) infinite;
}
.flake:nth-child(even) { animation-name: snow-fall-2; }
@keyframes snow-fall {
  0%   { transform: translate3d(0, -6vh, 0); opacity: 0; }
  10%  { opacity: var(--o, 0.6); }
  90%  { opacity: var(--o, 0.6); }
  100% { transform: translate3d(16px, 106vh, 0); opacity: 0; }
}
@keyframes snow-fall-2 {
  0%   { transform: translate3d(0, -6vh, 0); opacity: 0; }
  10%  { opacity: var(--o, 0.6); }
  90%  { opacity: var(--o, 0.6); }
  100% { transform: translate3d(-18px, 106vh, 0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .snowfall { display: none; }
}

/* ===================== Cover ===================== */
.cover {
  padding: 0;
  background: linear-gradient(180deg, #dce8ef 0%, #eef4f8 55%, var(--paper) 100%);
}
.cover-inner {
  position: relative;
  padding: 56px 28px 64px;
}
.cover-inner::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(111,147,179,0.30);
  border-radius: 2px;
  pointer-events: none;
}
.cover .season {
  font-family: 'Great Vibes', cursive;
  font-size: 31px;
  color: var(--point);
  margin-bottom: 18px;
}
.cover-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #dbe7ef url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 24 24" fill="none" stroke="%236f93b3" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2"/><circle cx="8.5" cy="8.5" r="1.5"/><path d="M21 15l-5-5L5 21"/></svg>') center/96px no-repeat;
  border-radius: 4px;
  margin: 0 auto 30px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; color: #fff; padding: 24px 24px 42px; pointer-events: none;
  background: linear-gradient(180deg, rgba(40,52,62,0.05) 0%, rgba(40,52,62,0.10) 50%, rgba(40,52,62,0.45) 100%);
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.co-flower { font-size: 24px; margin-bottom: 4px; }
.co-title { font-family: 'Great Vibes', cursive; font-size: 44px; line-height: 1.05; }
.co-date { margin-top: 12px; font-size: 15px; letter-spacing: 0.06em; }
.cover-names {
  font-size: 31px;
  letter-spacing: 0.08em;
  margin: 8px 0 4px;
}
.cover-names .amp { color: var(--rose); margin: 0 10px; font-size: 24px; }
.cover-when {
  margin-top: 18px;
  font-size: 15px;
  color: var(--ink-soft);
}
.cover-when strong { color: var(--ink); font-weight: 400; }
.cover-where { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

/* ===================== Greeting ===================== */
.greeting p { font-size: 16px; color: #3f4a54; margin: 0 0 14px; white-space: pre-line; }
.greeting .parents {
  margin-top: 34px;
  font-size: 17px;
  line-height: 2.4;
  display: grid;
  grid-template-columns: auto auto auto auto; /* 부모 | 의 | 아들·딸 | 자녀 */
  justify-content: center;                     /* 묶음을 가운데로 */
  column-gap: 7px;
  align-items: baseline;
}
.greeting .parents > div { display: contents; } /* 안쪽 div 해제 → span들이 그리드 셀로 */
.greeting .parents .pname { color: var(--ink-soft); justify-self: end; }    /* 부모 우측정렬 → 이경미·김영순 맞춤 */
.greeting .parents .rel-eui { color: var(--point); font-size: 14px; justify-self: start; }  /* 의 정렬 */
.greeting .parents .rel-word { color: var(--point); font-size: 14px; justify-self: end; }   /* 아들·딸 우측정렬 → 들·딸 맞춤 */
.greeting .parents .child { color: var(--ink); justify-self: start; }       /* 자녀 좌측정렬 → 조성관·강지혜 맞춤 */

/* ===================== Calendar ===================== */
.calendar { background: var(--frost); } /* 날짜 섹션 전체를 한 색으로 덮음 */
.cal {
  max-width: 320px;
  margin: 0 auto;
}
.cal table { width: 100%; border-collapse: collapse; }
.cal th, .cal td {
  padding: 9px 0;
  font-size: 14px;
  text-align: center;
}
.cal th { color: var(--ink-soft); font-weight: 400; font-size: 12px; }
.cal td.sun { color: var(--rose); }
.cal td.empty { color: transparent; }
.cal td .day-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
}
.cal td.today .day-mark {
  background: var(--point);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(111,147,179,0.45);
}
.countdown {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.countdown .box {
  background: rgba(255,255,255,0.72);
  border-radius: 12px;
  padding: 12px 0;
  width: 58px;
}
.countdown .num { font-size: 22px; color: var(--point); }
.countdown .unit { font-size: 11px; color: var(--ink-soft); }
.countdown-text { margin-top: 22px; font-size: 15px; color: var(--ink-soft); }
.countdown-text b { color: var(--point); font-weight: 700; }

/* ===================== Gallery ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-grid .cell {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--frost);
  border-radius: 3px;
  cursor: pointer;
}
.gallery-grid .cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid .cell:hover img { transform: scale(1.06); }
.gallery-empty {
  color: var(--ink-soft);
  font-size: 14px;
  padding: 40px 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
}
.gallery-empty a { color: var(--point); text-decoration: underline; }

/* 캘린더 날짜 (날짜 크게 / 요일+시간 한 줄) */
.cal-when { text-align: center; margin: 0 0 32px; }
.cal-date-big { font-size: 25px; font-weight: 700; color: var(--point); letter-spacing: 0.02em; }
.cal-dow-time { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 10px; letter-spacing: 0.02em; }

/* 갤러리 캐러셀 (큰 사진 + 좌우 화살표 + 카운터, 모달 없음) */
.gallery-carousel { margin-top: 4px; }
.gc-stage { position: relative; }
/* 이미지 틀: 높이 고정(3:4) → 비율 달라도 화살표 위치 안 흔들림 */
.gc-frame { position: relative; aspect-ratio: 3 / 4; background: var(--frost); border-radius: 6px; overflow: hidden; }
.gc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; opacity: 0; }
.gc-img.active { opacity: 1; }
/* 화살표는 틀 바깥(가장자리 여백)으로 빼서 사진을 덜 가림 */
.gc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.85); color: #3d3a36; font-size: 24px; line-height: 1;
  cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.gc-arrow:hover { background: #fff; }
.gc-prev { left: -16px; }
.gc-next { right: -16px; }
.gc-counter { text-align: center; margin-top: 14px; font-size: 14px; color: var(--ink-soft); letter-spacing: 0.12em; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,30,40,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 86%; object-fit: contain; }
.lightbox .lb-close {
  position: absolute; top: 18px; right: 22px;
  color: #fff; font-size: 30px; cursor: pointer;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 38px; padding: 0 16px; cursor: pointer; user-select: none;
}
.lightbox .lb-prev { left: 0; }
.lightbox .lb-next { right: 0; }

/* ===================== Location ===================== */
.location .venue-name { font-size: 19px; margin-bottom: 4px; }
.location .venue-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 4px; }
.map-placeholder {
  margin: 22px auto 18px;
  height: 200px;
  border-radius: 12px;
  background: var(--frost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 13px;
  border: 1px solid var(--line);
}
.kakao-map {
  margin: 22px auto 18px;
  height: 230px;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-fallback {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 13px;
  background: var(--frost);
}
.map-buttons {
  display: flex; align-items: stretch; justify-content: center;
  background: var(--frost); border-radius: 12px; padding: 4px;
}
.map-buttons a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 4px; font-size: 13px; color: var(--ink); background: none; border: none;
  transition: opacity .2s;
}
.map-buttons a + a { border-left: 1px solid var(--line); }
.map-buttons a:hover { opacity: 0.65; }
.mb-ico {
  width: 22px; height: 22px; border-radius: 6px; flex: 0 0 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.mb-ico.naver { background: #03C75A; }
.mb-ico.kakao { background: #FEE500; color: #3a1d1d; }
.mb-ico.tmap  { background: #00B3A4; }
.transport { margin-top: 22px; font-size: 14px; color: var(--ink-soft); white-space: pre-line; text-align: left; }

/* ===================== Accounts ===================== */
.acc-group { margin-bottom: 12px; }
.acc-toggle {
  width: 100%;
  background: var(--frost);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .25s;
}
.acc-toggle:hover { background: #e6eef4; }
.acc-toggle .arrow { transition: transform .3s; color: var(--point); }
.acc-group.open .acc-toggle .arrow { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.acc-group.open .acc-body { max-height: 600px; }
.acc-item {
  border: 1px solid var(--line);
  border-top: none;
  padding: 16px;
  text-align: left;
  font-size: 14px;
}
.acc-item:first-child { border-top: 1px solid var(--line); margin-top: 8px; }
.acc-item .bank { color: var(--ink-soft); }
.acc-item .num { font-size: 15px; margin: 2px 0 10px; }
.acc-item .holder { color: var(--ink-soft); font-size: 13px; }
.acc-item .copy-btn {
  margin-top: 8px;
  border: 1px solid var(--point-soft);
  background: #fff;
  color: var(--point);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.acc-item .copy-btn:hover { background: var(--point); color: #fff; }
.acc-empty { color: var(--ink-soft); font-size: 13px; padding: 14px; }

/* ===================== Contact ===================== */
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 4px;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .who { text-align: left; }
.contact-row .who .role { font-size: 12px; color: var(--ink-soft); }
.contact-row .who .nm { font-size: 16px; }
.contact-row .acts a {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  margin-left: 8px;
  border: 1px solid var(--line);
  font-size: 16px;
  transition: transform .2s, border-color .2s;
}
.contact-row .acts a:hover { transform: translateY(-2px); border-color: var(--point-soft); }
.contact-row .acts .call { color: var(--point); }
.contact-row .acts .sms { color: var(--rose); }

/* ===================== Guestbook ===================== */
.gb-form { text-align: left; margin-bottom: 26px; }
.gb-form .row { display: flex; gap: 8px; margin-bottom: 8px; }
.gb-form input, .gb-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
}
.gb-form input:focus, .gb-form textarea:focus { outline: none; border-color: var(--point); }
.gb-form textarea { resize: vertical; min-height: 80px; }
.gb-form .submit {
  width: 100%;
  background: var(--point);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  margin-top: 2px;
  transition: background .25s;
}
.gb-form .submit:hover { background: #5f81a0; }
.gb-list { text-align: left; }
.gb-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: #fff;
}
.gb-card .head { display: flex; justify-content: space-between; align-items: center; }
.gb-card .nm { font-size: 14px; }
.gb-card .meta { font-size: 11px; color: var(--ink-soft); }
.gb-card .msg { font-size: 14px; color: var(--ink-soft); margin-top: 8px; white-space: pre-line; }
.gb-card .del { font-size: 11px; color: var(--ink-soft); background: none; border: none; cursor: pointer; margin-left: 8px; }
.gb-empty { color: var(--ink-soft); font-size: 14px; padding: 30px 0; }

/* ===================== Share / Footer ===================== */
.share-buttons { display: flex; gap: 10px; justify-content: center; }
.share-buttons button {
  border: none;
  border-radius: 24px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.share-buttons button:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(80,110,135,0.18); }
.btn-kakao { background: #fee500; color: #3c1e1e; }
.btn-link { background: var(--frost); color: var(--ink); }

.footer {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, #dce8ef 100%);
  padding: 40px 28px 52px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
}
.footer .heart { color: var(--rose); }
/* 최하단 날짜 = 숨은 관리자 진입 (눈에 띄지 않게, 클릭만 동작) */
.footer-date { cursor: default; user-select: none; }
/* 최하단에 숨긴 관리자 입구 (눈에 거의 안 띔) */
.admin-entry { margin-top: 26px; }
.admin-entry a {
  display: inline-block;
  color: var(--ink-soft);
  opacity: 0.2;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 8px 16px;
}
.admin-entry a:hover { opacity: 0.5; }

/* toast */
.toast {
  position: fixed;
  left: 50%; bottom: 40px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(40,52,62,0.95);
  color: #fff;
  padding: 11px 20px;
  border-radius: 24px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===================== Admin / Edit mode ===================== */
.cover-photo.has-img { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* 우측 하단 숨은 진입 버튼 (거의 안 보임) */
#admin-hotspot {
  position: fixed; right: 0; bottom: 0;
  width: 54px; height: 54px;
  background: transparent; border: none;
  opacity: 0; cursor: default; z-index: 300;
}

/* 섹션별 ⚙ 편집 버튼 */
.edit-btn {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  background: var(--point); color: #fff; border: none;
  border-radius: 16px; padding: 6px 12px;
  font-family: inherit; font-size: 12px; cursor: pointer; text-decoration: none;
  box-shadow: 0 2px 8px rgba(80,110,135,0.3);
}
.edit-btn:hover { background: #5f81a0; }

/* 편집 모드 안내 바 */
.edit-bar {
  position: fixed; left: 0; right: 0; top: 0;
  background: rgba(111,147,179,0.96); color: #fff;
  font-size: 13px; text-align: center; padding: 9px 12px; z-index: 250;
  transition: opacity .6s ease, transform .6s ease;
}
.edit-bar.hide { opacity: 0; transform: translateY(-100%); pointer-events: none; }
.edit-bar a { color: #fff; text-decoration: underline; margin-left: 8px; }
.edit-bar b { color: #fff; }

/* 모달 */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(20,30,40,0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 400; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 14px;
  max-width: 420px; width: 100%; max-height: 88vh; overflow-y: auto;
  padding: 22px; box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.modal-box h3 { margin: 0 0 14px; font-size: 17px; color: var(--ink); }
.modal-box label { display: block; font-size: 12px; color: var(--ink-soft); margin: 10px 0 4px; }
.modal-box input, .modal-box textarea, .modal-box select {
  width: 100%; box-sizing: border-box;
  border: 1px solid var(--line); border-radius: 8px; padding: 10px;
  font-family: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
.modal-box textarea { resize: vertical; }
.modal-actions { display: flex; gap: 8px; margin-top: 16px; }
.m-save { flex: 1; background: var(--point); color: #fff; border: none; border-radius: 8px; padding: 11px; font-family: inherit; font-size: 14px; cursor: pointer; }
.m-save:hover { background: #5f81a0; }
.m-cancel { flex: 1; background: var(--frost); color: var(--ink); border: none; border-radius: 8px; padding: 11px; font-family: inherit; font-size: 14px; cursor: pointer; }
.m-del { background: var(--rose); color: #fff; border: none; border-radius: 6px; padding: 6px 10px; font-size: 12px; cursor: pointer; font-family: inherit; }
.m-hint { font-size: 11px; color: var(--ink-soft); margin: 8px 0 0; }
.m-preview { width: 100%; border-radius: 8px; margin-bottom: 8px; border: 1px solid var(--line); }

/* 앱스러운 파일 선택 버튼 (모달 내 커버 업로드) */
.file-btn {
  display: inline-block; cursor: pointer;
  background: linear-gradient(135deg, var(--point), #8aa9c4);
  color: #fff; border: none; border-radius: 12px;
  padding: 13px 22px; font-family: inherit; font-size: 14px; font-weight: 600;
  box-shadow: 0 3px 12px rgba(111,147,179,0.4);
  transition: transform .15s, box-shadow .15s;
}
.file-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(111,147,179,0.5); }
.file-btn:active { transform: translateY(0); }
.acc-edit-list { margin-bottom: 12px; }
.acc-edit-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; margin-bottom: 6px; font-size: 13px; }
.acc-add { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
.acc-add .m-save { grid-column: 1 / -1; }
