/* ============================================================
   CADL 게시판 공용 디자인 (bbs-*)
   — homepage_cnsw BoardListView / PostDetailView 디자인 이식판.
   브랜드 컬러만 CADL 티일로 치환, 레이아웃·구성은 동일.
   ============================================================ */
:root {
  --bbs-primary: #25695c;
  --bbs-primary-hover: #1d5348;
  --bbs-primary-soft: #e9f2ef;
  --bbs-border: #e3e4da;
  --bbs-secondary: #2c2b27;
  --bbs-muted: #74746b;
  --bbs-bg: #f4f4ee;
}

/* ── 검색바 ── */
.bbs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.bbs-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
}
.bbs-sel-wrap { position: relative; }
.bbs-sel-wrap select {
  height: 2.4rem;
  padding: 0 2rem 0 1.05rem;
  font-size: 0.88rem;
  border: 1px solid var(--bbs-border);
  border-radius: 999px;
  background: #fff;
  color: var(--bbs-secondary);
  cursor: pointer;
  appearance: none;
}
.bbs-sel-wrap::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.35rem;
  border-right: 2px solid var(--bbs-muted);
  border-bottom: 2px solid var(--bbs-muted);
  transform: rotate(45deg);
  pointer-events: none;
}
.bbs-search input[type="text"] {
  height: 2.4rem;
  padding: 0 1.05rem;
  font-size: 0.88rem;
  border: 1px solid var(--bbs-border);
  border-radius: 999px;
  background: #fff;
  color: var(--bbs-secondary);
  width: 13rem;
}
.bbs-search input[type="text"]::placeholder { color: var(--bbs-muted); }
.bbs-search input[type="text"]:focus { outline: none; border-color: var(--bbs-primary); }
.bbs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 2.4rem;
  padding: 0 1.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.bbs-btn.primary { background: var(--bbs-primary); color: #fff; }
.bbs-btn.primary:hover { background: var(--bbs-primary-hover); }
.bbs-btn.outline { background: #fff; border-color: var(--bbs-border); color: var(--bbs-secondary); }
.bbs-btn.outline:hover { border-color: var(--bbs-primary); color: var(--bbs-primary); }
.bbs-btn.danger { background: #fff; border-color: #eec5c5; color: #c03434; }
.bbs-btn.danger:hover { background: #fdf3f3; border-color: #c03434; }

/* ── 검색형 select (select2 스타일) ── */
.bbs-s2 { position: relative; min-width: 12rem; }
.bbs-s2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  height: 2.4rem;
  padding: 0 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--bbs-border);
  border-radius: 999px;
  background: #fff;
  color: var(--bbs-secondary);
  cursor: pointer;
  font-family: inherit;
}
.bbs-s2-btn:hover, .bbs-s2.open .bbs-s2-btn { border-color: var(--bbs-primary); }
.bbs-s2-btn .lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bbs-s2-btn .lbl b { color: var(--bbs-primary); }
.bbs-s2-btn .chev {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--bbs-muted);
  border-bottom: 2px solid var(--bbs-muted);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.15s;
}
.bbs-s2.open .bbs-s2-btn .chev { transform: rotate(225deg) translateY(-1px); }
.bbs-s2-panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 60;
  width: max(100%, 15rem);
  background: #fff;
  border: 1px solid var(--bbs-border);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(34, 43, 54, 0.14);
  padding: 0.55rem;
}
.bbs-s2-panel[hidden] { display: none; }
.bbs-s2-panel input {
  width: 100%;
  height: 2.2rem;
  padding: 0 0.8rem;
  font-size: 0.88rem;
  border: 1px solid var(--bbs-border);
  border-radius: 9px;
  margin-bottom: 0.45rem;
  font-family: inherit;
}
.bbs-s2-panel input:focus { outline: none; border-color: var(--bbs-primary); }
.bbs-s2-list { max-height: 15rem; overflow-y: auto; display: grid; gap: 0.1rem; }
.bbs-s2-list a {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  border-radius: 8px;
  color: var(--bbs-secondary);
  text-decoration: none;
}
.bbs-s2-list a:hover { background: var(--bbs-primary-soft); }
.bbs-s2-list a.on { background: var(--bbs-primary); color: #fff; font-weight: 700; }
.bbs-s2-list a .cnt { color: var(--bbs-muted); font-size: 0.8rem; }
.bbs-s2-list a.on .cnt { color: rgba(255, 255, 255, 0.75); }
.bbs-s2-empty { padding: 0.6rem 0.75rem; color: var(--bbs-muted); font-size: 0.85rem; }

/* ── 검색 결과 안내 ── */
.bbs-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.2rem 1rem;
  font-size: 0.88rem;
  color: var(--bbs-muted);
}
.bbs-result svg { color: var(--bbs-primary); flex: 0 0 auto; }
.bbs-result b { color: var(--bbs-secondary); }
.bbs-result .cnt { color: var(--bbs-primary); font-weight: 800; }

/* ── 목록 테이블 카드 ── */
.bbs-card {
  background: #fff;
  border: 1px solid rgba(227, 228, 218, 0.7);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(34, 43, 54, 0.06);
}
.bbs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.bbs-table thead tr {
  background: rgba(233, 242, 239, 0.5);
  border-bottom: 1px solid var(--bbs-border);
}
.bbs-table th {
  padding: 0.8rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--bbs-muted);
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 0;
}
.bbs-table th.c, .bbs-table td.c { text-align: center; }
.bbs-table td {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--bbs-border);
  color: var(--bbs-muted);
  vertical-align: middle;
}
.bbs-table tbody tr { transition: background 0.15s; }
.bbs-table tbody tr:hover { background: rgba(233, 242, 239, 0.4); }
.bbs-table tbody tr.pinned { background: rgba(233, 242, 239, 0.3); }
.bbs-table tbody tr.pinned:hover { background: rgba(233, 242, 239, 0.45); }
.bbs-table td.num { color: var(--bbs-muted); font-variant-numeric: tabular-nums; }
.bbs-table td.date, .bbs-table td.views { font-variant-numeric: tabular-nums; white-space: nowrap; }
.bbs-title-cell { display: flex; align-items: center; gap: 0.4rem; min-width: 0; }
.bbs-title-cell a {
  color: var(--bbs-secondary);
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.bbs-title-cell a:hover { color: var(--bbs-primary); }
.bbs-pin-badge {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0.1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--bbs-primary);
  border-radius: 5px;
}
.bbs-cat {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0.08rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bbs-secondary);
  background: var(--bbs-bg);
  border: 1px solid var(--bbs-border);
  border-radius: 999px;
  white-space: nowrap;
}
.bbs-cat.all { background: var(--bbs-secondary); color: #fff; border-color: var(--bbs-secondary); }
.bbs-clip { color: var(--bbs-muted); font-size: 0.8rem; flex: 0 0 auto; }
.bbs-empty { padding: 3rem 1rem; text-align: center; color: var(--bbs-muted); font-size: 0.9rem; }
.bbs-tag {
  display: inline-block;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.bbs-tag.open { background: #f6e3d3; color: #9c5320; }
.bbs-tag.done { background: #e2f0ec; color: var(--bbs-primary); }

/* ── 하단 액션 (목록 · 글쓰기) ── */
.bbs-actions {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.bbs-actions .right { margin-left: auto; display: flex; gap: 0.5rem; }

/* ── 페이지네이션 (원형) ── */
.bbs-pager {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.bbs-pager a, .bbs-pager b {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  border-radius: 50%;
  border: 1px solid var(--bbs-border);
  background: #fff;
  color: var(--bbs-secondary);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.bbs-pager a:hover { border-color: var(--bbs-primary); color: var(--bbs-primary); }
.bbs-pager b { background: var(--bbs-primary); border-color: var(--bbs-primary); color: #fff; font-weight: 700; }

/* ── 상세 보기 ── */
.bbs-view {
  background: #fff;
  border: 1px solid rgba(227, 228, 218, 0.7);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(34, 43, 54, 0.06);
  padding: 1.6rem 1.7rem;
  margin-bottom: 1rem;
}
.bbs-view-head { text-align: center; margin-bottom: 1rem; }
.bbs-view-head .bbs-pin-badge { border-radius: 999px; padding: 0.15rem 0.7rem; margin-bottom: 0.55rem; }
.bbs-view-head .bbs-cat { margin-bottom: 0.55rem; }
.bbs-view-head h2 {
  margin: 0.3rem 0 0;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--bbs-secondary);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.bbs-view-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
  font-size: 0.86rem;
  color: var(--bbs-muted);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--bbs-border);
}
.bbs-view-meta .item { display: inline-flex; align-items: center; gap: 0.35rem; }
.bbs-view-meta .item b { color: var(--bbs-secondary); font-weight: 600; }
.bbs-view-meta .sep { color: var(--bbs-border); }
.bbs-view-body {
  padding: 1.4rem 0.2rem 0.4rem;
  white-space: pre-wrap;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--bbs-secondary);
  min-height: 7rem;
}

/* ── 첨부파일 ── */
.bbs-att { margin-top: 1.3rem; border-top: 1px solid var(--bbs-border); padding-top: 1rem; }
.bbs-att h4 {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bbs-muted);
  letter-spacing: 0.06em;
}
.bbs-att-file {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--bbs-border);
  border-radius: 10px;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  background: #fbfbf7;
}
.bbs-att-file a { color: var(--bbs-primary); font-weight: 600; text-decoration: none; word-break: break-all; }
.bbs-att-file a:hover { text-decoration: underline; }
.bbs-att-file .sz { color: var(--bbs-muted); font-size: 0.8rem; white-space: nowrap; margin-left: auto; }
.bbs-att-imgs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.7rem;
  margin-top: 0.6rem;
}
.bbs-att-imgs a {
  display: block;
  border: 1px solid var(--bbs-border);
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f1;
}
.bbs-att-imgs img { display: block; width: 100%; height: 165px; object-fit: contain; }

/* ── 이전/다음 글 ── */
.bbs-adj {
  background: #fff;
  border: 1px solid rgba(227, 228, 218, 0.7);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.bbs-adj a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.2rem;
  font-size: 0.88rem;
  color: var(--bbs-secondary);
  text-decoration: none;
}
.bbs-adj a + a { border-top: 1px solid var(--bbs-border); }
.bbs-adj a:hover { background: rgba(233, 242, 239, 0.4); }
.bbs-adj .lbl { flex: 0 0 auto; font-weight: 700; color: var(--bbs-muted); font-size: 0.8rem; width: 3.6rem; }
.bbs-adj .ttl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── 학습 자료: 문서(Documentation) 레이아웃 ── */
.doc-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 1.4rem; align-items: start; }
.doc-nav { position: sticky; top: 5rem; background: #fff; border: 1px solid var(--bbs-border); border-radius: 14px; padding: 0.85rem 0.6rem; box-shadow: 0 1px 3px rgba(20, 20, 12, 0.05); }
.doc-nav-title { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bbs-muted); padding: 0.2rem 0.9rem 0.6rem; }
.doc-nav a { display: flex; align-items: center; gap: 0.6rem; padding: 0.52rem 0.9rem; border-left: 2px solid transparent; border-radius: 0 8px 8px 0; color: #57564f; font-size: 0.9rem; text-decoration: none; line-height: 1.4; }
.doc-nav a:hover { color: var(--bbs-primary); background: #f4f8f6; }
.doc-nav a.on { border-left-color: var(--bbs-primary); color: var(--bbs-primary); font-weight: 700; background: #eef5f2; }
.doc-nav .dnum { flex: 0 0 1.3rem; height: 1.3rem; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; background: #f0f0e9; color: var(--bbs-muted); border-radius: 6px; }
.doc-nav a.on .dnum { background: var(--bbs-primary); color: #fff; }
.doc-article { background: #fff; border: 1px solid rgba(227, 228, 218, 0.7); border-radius: 18px; box-shadow: 0 10px 40px rgba(34, 43, 54, 0.06); padding: 2.2rem 2.6rem 2rem; min-width: 0; }
.doc-head { border-bottom: 1px solid #ecece3; padding-bottom: 1.1rem; margin-bottom: 0.4rem; }
.doc-kicker { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bbs-primary); background: var(--bbs-primary-soft); border-radius: 999px; padding: 0.2rem 0.7rem; margin-bottom: 0.6rem; }
.doc-head h1 { margin: 0 0 0.5rem; font-size: 1.42rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.4; color: #232220; }
.doc-meta { display: flex; gap: 0.5rem; font-size: 0.83rem; color: #8b8b82; }
.doc-body { font-size: 0.97rem; line-height: 1.85; color: #3a3a35; }
.doc-body h2 { margin: 2.1rem 0 0.8rem; padding-left: 0.85rem; border-left: 3px solid var(--bbs-primary); font-size: 1.12rem; font-weight: 800; color: #232220; line-height: 1.4; scroll-margin-top: 5.5rem; }
.doc-body h3 { margin: 1.5rem 0 0.4rem; font-size: 0.98rem; font-weight: 800; color: var(--bbs-primary); }
.doc-body p { margin: 0.7rem 0; }
.doc-body ul { margin: 0.6rem 0; padding-left: 1.2rem; display: grid; gap: 0.3rem; }
.doc-body ul.check { list-style: none; padding-left: 0.2rem; }
.doc-body ul.check li { position: relative; padding-left: 1.7rem; }
.doc-body ul.check li::before { content: "✓"; position: absolute; left: 0.2rem; top: 0; width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; color: var(--bbs-primary); background: var(--bbs-primary-soft); border-radius: 5px; }
.doc-body pre { margin: 0.7rem 0; padding: 0.85rem 1.05rem; background: #20241f; color: #d8e6df; border-radius: 10px; font-family: Consolas, "Courier New", monospace; font-size: 0.86rem; line-height: 1.7; overflow-x: auto; white-space: pre; }
.doc-body blockquote { margin: 0.9rem 0; padding: 0.75rem 1.1rem; background: #f4f8f6; border-left: 3px solid #6fb5a8; border-radius: 0 10px 10px 0; font-weight: 600; color: #2c4a43; }
/* ── 리치 에디터 HTML 본문 공통 (h1 섹션·목록·표·이미지 등) ── */
.bbs-view-body.doc-body { white-space: normal; }
.doc-body h1 { margin: 2.2rem 0 0.9rem; padding-left: 0.85rem; border-left: 3px solid var(--bbs-primary); font-size: 1.3rem; font-weight: 800; color: #232220; line-height: 1.35; scroll-margin-top: 5.5rem; }
.doc-body h1:first-child, .doc-body h2:first-child { margin-top: 0.4rem; }
.doc-body ol { margin: 0.6rem 0; padding-left: 1.4rem; display: grid; gap: 0.3rem; }
.doc-body a { color: var(--bbs-primary); }
.doc-body img { max-width: 100%; height: auto; border-radius: 10px; }
.doc-body hr { border: 0; border-top: 1px solid var(--bbs-border); margin: 1.6rem 0; }
.doc-body table { width: 100%; border-collapse: collapse; margin: 0.9rem 0; font-size: 0.93rem; }
.doc-body th, .doc-body td { border: 1px solid var(--bbs-border); padding: 0.5rem 0.75rem; text-align: left; vertical-align: top; }
.doc-body th { background: rgba(233, 242, 239, 0.55); font-weight: 700; }
.doc-body mark { border-radius: 3px; padding: 0 0.12em; }
.doc-body u { text-underline-offset: 0.15em; }
.doc-att { margin-top: 1.8rem; border-top: 1px solid #ecece3; padding-top: 1rem; }
.doc-att h4 { margin: 0 0 0.5rem; font-size: 0.78rem; font-weight: 700; color: var(--bbs-muted); letter-spacing: 0.06em; }
.doc-att a { display: inline-flex; margin-right: 0.9rem; color: var(--bbs-primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.doc-att a:hover { text-decoration: underline; }
.doc-pn { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2rem; border-top: 1px solid #ecece3; padding-top: 1.2rem; }
.doc-pn .pn { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.8rem 1.05rem; border: 1px solid var(--bbs-border); border-radius: 12px; text-decoration: none; color: #3a3a35; transition: border-color 0.15s; }
.doc-pn .pn:hover { border-color: var(--bbs-primary); }
.doc-pn .pn.next { text-align: right; }
.doc-pn .dir { font-size: 0.76rem; font-weight: 700; color: #8b8b82; }
.doc-pn .ttl { font-size: 0.92rem; font-weight: 700; color: #232220; }
@media (max-width: 900px) {
  .doc-layout { grid-template-columns: 1fr; }
  .doc-nav { position: static; display: flex; flex-wrap: wrap; gap: 0.25rem; padding: 0.6rem; }
  .doc-nav-title { display: none; }
  .doc-nav a { border-left: 0; border-radius: 999px; padding: 0.4rem 0.8rem; }
  .doc-nav a.on { background: var(--bbs-primary); color: #fff; }
  .doc-nav a.on .dnum { background: rgba(255, 255, 255, 0.25); color: #fff; }
  .doc-article { padding: 1.5rem 1.2rem; }
  .doc-pn { grid-template-columns: 1fr; }
}

/* ── 에디터(쓰기·수정) 폼 ── */
.bbs-editor { max-width: 780px; }
.bbs-editor input, .bbs-editor select, .bbs-editor textarea, .bbs-editor button { box-sizing: border-box; }
.bbs-editor .ed-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 1rem; }
.bbs-editor label { display: block; font-size: 0.8rem; font-weight: 700; margin: 1rem 0 0.32rem; color: #35342f; }
.bbs-editor label .opt { font-weight: 400; color: var(--bbs-muted); }
.bbs-editor input[type="text"], .bbs-editor select, .bbs-editor textarea {
  width: 100%;
  padding: 0.62rem 0.8rem;
  border: 1px solid #d8d8cd;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #fff;
  font-family: inherit;
}
.bbs-editor input[type="text"]:focus, .bbs-editor select:focus, .bbs-editor textarea:focus {
  outline: none;
  border-color: var(--bbs-primary);
  box-shadow: 0 0 0 3px rgba(37, 105, 92, 0.1);
}
.bbs-editor textarea { min-height: 14rem; resize: vertical; line-height: 1.7; }
.bbs-editor input[type="file"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d8d8cd;
  border-radius: 10px;
  background: #fff;
  font-size: 0.88rem;
  color: var(--bbs-muted);
}
.bbs-editor input[type="file"]::file-selector-button {
  margin-right: 0.8rem;
  padding: 0.45rem 1rem;
  border: 0;
  border-radius: 8px;
  background: var(--bbs-primary-soft);
  color: var(--bbs-primary);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.ed-hint {
  margin-top: 1rem;
  padding: 0.85rem 1.05rem;
  background: #f7f7f1;
  border: 1px solid var(--bbs-border);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #57564f;
  line-height: 1.75;
}
.ed-hint b { color: var(--bbs-primary); }
.ed-hint code { background: #ecece3; border-radius: 4px; padding: 0.05rem 0.4rem; font-family: Consolas, monospace; font-size: 0.8rem; }

/* ── 모바일 ── */
@media (max-width: 640px) {
  .bbs-table th.hide-m, .bbs-table td.hide-m { display: none; }
  .bbs-search input[type="text"] { width: 9rem; }
  .bbs-view { padding: 1.3rem 1.1rem; }
}
