@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.3/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap");
:root {
  --ink: #0B1A2B;
  --muted: #4C6076;
  --blue: #17558A;
  --blue2: #eaf3fa;
  --warm: #D2601F;
  --paper: #FBFAF8;
  --wash: #F2EFE9;
  --line: #dce3e8;
  --max: 1160px;
  --pad: clamp(20px, 5vw, 48px);
  --display: "Wanted Sans Variable", "Wanted Sans", Pretendard, system-ui, sans-serif;
  --body: "Pretendard Variable", Pretendard, system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  word-break: keep-all;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
button,
a {
  font: inherit;
}
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding-inline: var(--pad);
}
/* Same dimensions and typography as the main page header. */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 249, 246, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(14px);
}
.nav__in { height: 82px; display: flex; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { height: 58px; width: auto; display: block; }
.nav__desktop { margin-left: auto; }
.nav__links { display: flex; gap: 26px; list-style: none; padding: 0; margin: 0; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--muted);
  padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active { border-bottom-color: var(--warm); }
.nav__toggle { display: none; }
.nav__mobile[hidden] { display: none; }
.nav__mobile { border-top: 1px solid var(--line); padding: 12px var(--pad) 20px; }
.nav__mobile .nav__links { display: grid; gap: 0; max-width: 1064px; margin: auto; }
.nav__mobile a { display: block; padding: 12px 0; }
.nav__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: 0.2s;
}
.nav__cta,
.btn--hot {
  background: var(--warm);
  border-color: var(--warm);
  color: #fff;
  box-shadow: 0 12px 24px -14px rgba(220, 95, 22, 0.8);
}
.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.btn--line {
  background: #fff;
}
.btn:hover {
  transform: translateY(-2px);
}
.hero {
  padding: clamp(54px, 8vw, 108px) 0 46px;
  background: linear-gradient(180deg, #eef5fa 0%, var(--paper) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font: 600 12px var(--mono);
  letter-spacing: 0.08em;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.24;
  letter-spacing: -0.045em;
  margin: 22px 0;
}
.hero__lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
}
.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/4.5;
  border-radius: 32px;
  overflow: hidden;
  background: #dbe8f1;
  box-shadow: 0 34px 70px -40px rgba(11, 26, 42, 0.7);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__visual.is-contain img {
  object-fit: contain;
  padding: 20px;
  background: #f5f4f1;
}
.hero__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 250px;
  padding: 14px 17px;
  border-radius: 15px;
  background: rgba(11, 26, 42, 0.84);
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}
.quick {
  margin-top: -1px;
  padding: 0 0 72px;
}
.quick__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.quick__item {
  padding: 24px 26px;
}
.quick__item + .quick__item {
  border-left: 1px solid var(--line);
}
.quick__k {
  color: var(--blue);
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
}
.quick__v {
  margin: 8px 0 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}
.section {
  padding: clamp(72px, 10vw, 128px) 0;
}
.section--wash {
  background: var(--wash);
}
.section--dark {
  background: var(--ink);
  color: #fff;
}
.head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  margin-bottom: 46px;
  align-items: end;
}
.head h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.06em;
  margin: 14px 0 0;
}
.head__desc {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.section--dark .head__desc {
  color: #b9cad9;
}
.section--dark .eyebrow {
  color: #83c4f5;
}
.scope {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.scope__card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.scope__num {
  font: 500 11px var(--mono);
  color: var(--blue);
}
.scope__card h3 {
  font-size: 21px;
  margin: 24px 0 10px;
  letter-spacing: -0.04em;
}
.scope__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
.scope__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}
.scope__tags span {
  font-size: 11px;
  padding: 6px 9px;
  border-radius: 99px;
  background: var(--blue2);
  color: var(--blue);
  font-weight: 700;
}
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  overflow: hidden;
}
.process__item {
  counter-increment: step;
  padding: 30px 25px;
  min-height: 240px;
  background: var(--ink);
}
.process__item:before {
  content: "0" counter(step);
  font: 500 12px var(--mono);
  color: #83c4f5;
}
.process__item h3 {
  margin: 38px 0 12px;
  font-size: 19px;
}
.process__item p {
  margin: 0;
  color: #b9cad9;
  font-size: 14px;
  line-height: 1.75;
}
.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #e8edf0;
}
.gallery figure:first-child {
  grid-row: 1/3;
}
.gallery img,
.gallery video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f4f1;
  display: block;
}
.gallery .contain img,
.gallery .contain video {
  object-fit: contain;
  padding: 16px;
  background: #f5f4f1;
}
.gallery figcaption {
  position: absolute;
  left: 13px;
  bottom: 13px;
  background: rgba(11, 26, 42, 0.76);
  color: #fff;
  border-radius: 99px;
  padding: 7px 12px;
  font-size: 11px;
}
.gallery--single {
  display: block;
}
.gallery--single figure {
  width: min(100%, 820px);
  height: auto;
  aspect-ratio: auto;
  margin-inline: auto;
}
.gallery--single img,
.gallery--single video {
  height: auto;
  object-fit: contain;
}
.gallery--single figure:first-child {
  grid-row: auto;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.compare__col {
  padding: 32px;
  background: #fff;
}
.compare__col + .compare__col {
  border-left: 1px solid var(--line);
  background: #f7fafc;
}
.compare h3 {
  margin: 0 0 22px;
  font-size: 21px;
}
.check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}
.check li {
  position: relative;
  padding-left: 27px;
  color: var(--muted);
  line-height: 1.65;
}
.check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.check--no li:before {
  content: "—";
  color: #9caab7;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
  padding: 24px 42px 24px 0;
  position: relative;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 8px;
  font-size: 22px;
  color: var(--blue);
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  margin: 0;
  padding: 0 40px 25px 0;
  color: var(--muted);
  line-height: 1.8;
}
.cta {
  padding: clamp(70px, 9vw, 110px) 0;
  background: #eaf3fa;
}
.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  font-size: clamp(32px, 5vw, 50px);
  letter-spacing: -0.06em;
  line-height: 1.2;
  margin: 0;
}
.cta p {
  margin: 14px 0 0;
  color: var(--muted);
}
.cta__actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.foot {
  background: var(--ink);
  color: #b9cad9;
  padding: 46px 0;
}
.foot__in {
  font-size: 13px;
}
.foot__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.foot a {
  color: #fff;
}
.foot__brand,
.foot__contact {
  display: grid;
  gap: 3px;
}
.foot__brand strong {
  color: #fff;
  font-size: 15px;
}
.foot__contact {
  text-align: right;
}
.foot__contact a {
  font-weight: 800;
  text-decoration: none;
}
.foot__biz {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-top: 26px;
}
.foot__biz a,
.foot__policy {
  color: inherit;
  text-decoration: none;
}
.foot__biz a:hover,
.foot__policy:hover {
  color: #fff;
}
.foot__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.foot__policy {
  color: #d6e7f5;
  font-weight: 800;
}
.foot__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}
.foot__social {
  display: flex;
  gap: 9px;
}
.foot__social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #d6e7f5;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.foot__social a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.foot__social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.foot__social svg .is-fill {
  fill: currentColor;
  stroke: none;
}
.foot__karrot-mark {
  width: 15px;
  height: 25px;
  display: block;
  background: currentColor;
  -webkit-mask: url("images/icon-daangn.png") center / contain no-repeat;
  mask: url("images/icon-daangn.png") center / contain no-repeat;
}
.foot__glyph {
  font: 700 22px/1 var(--body);
}
.foot__glyph--naver {
  font-size: 16px;
  font-weight: 900;
}
@media (max-width: 999px) {
  .nav__desktop { display: none; }
  .nav__in { gap: 16px; }
  .nav__cta { margin-left: auto; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line);
    border-radius: 50%; background: transparent; cursor: pointer; flex: none;
  }
  .nav__toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform .2s; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    aspect-ratio: 16/10;
  }
  .head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scope {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 220px;
  }
  .gallery figure:first-child {
    grid-column: 1/3;
    grid-row: auto;
  }
  .cta__box {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 620px) {
  .hero {
    padding-top: 44px;
  }
  .hero__visual {
    aspect-ratio: 1/1;
  }
  .quick__grid,
  .scope,
  .process,
  .compare {
    grid-template-columns: 1fr;
  }
  .quick__item + .quick__item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .process__item {
    min-height: 190px;
  }
  .compare__col + .compare__col {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery figure,
  .gallery figure:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1/1;
  }
  .gallery--single figure,
  .gallery--single figure:first-child {
    aspect-ratio: auto;
  }
  .gallery--single img,
  .gallery--single video {
    height: auto;
  }
  .foot__in {
    width: 100%;
  }
  .foot__top { flex-direction: column; }
  .foot__contact { text-align: left; }
  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }
}

body { line-height: 1.7; -webkit-font-smoothing: antialiased; letter-spacing: -.01em; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; }
:focus-visible { outline: 2.5px solid var(--warm); outline-offset: 4px; }
.nav__cta {
  min-height: 0; padding: 11px 19px; font-size: 13.8px; font-weight: 700;
  line-height: normal; letter-spacing: -.025em; border: 1.5px solid transparent; white-space: nowrap;
  box-shadow: 0 8px 22px -10px rgba(210,96,31,.9); flex: none;
}
.nav__cta:hover, .btn--hot:hover { background: #A6420E; }
.hero { padding-top: clamp(40px, 6vw, 80px); }
.hero__lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.85; }
.hero__visual { border-radius: 20px; }
.hero__badge { max-width: calc(100% - 40px); }
.quick { padding-bottom: 0; }
.quick__k { font: 600 12px var(--body); letter-spacing: 0; }
.needs .scope__card { background: transparent; min-height: 190px; }
.needs .scope__card h3 { margin-top: 16px; }
.needs .scope__tags:empty { display: none; }
.gallery video { padding-bottom: 0; }
.gallery figure:has(video) figcaption { top: 13px; bottom: auto; pointer-events: none; }
.cta p { line-height: 1.8; }
@media (max-width: 520px) {
  .nav__in { height: 70px; gap: 10px; }
  .logo img { height: 48px; }
  .nav__cta { padding: 11px 19px; }
  .hero h1 { font-size: clamp(30px, 8.2vw, 40px); }
  .hero__visual { aspect-ratio: 4/3; }
  .quick__item { padding: 18px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
  .quick__v { font-size: 15px; margin: 0; text-align: right; }
  .quick__k { flex: none; }
  .scope__card { min-height: 0; padding: 24px; }
  .scope__card h3 { margin-top: 14px; }
  .cta__actions { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Keep the supplied square move-in photo and its corner logo fully visible. */
body[data-service="movein"] .hero__visual { aspect-ratio: 1; }
body[data-service="movein"] .hero__visual img { object-fit: contain; }
body[data-service="movein"] .hero__badge { top: 20px; bottom: auto; }

/* Size the completed-space gallery around the original photo, not a fixed crop. */
body[data-service="movein"] .gallery { grid-template-rows: repeat(2, auto); }
body[data-service="movein"] .gallery figure:first-child { aspect-ratio: 1; }
body[data-service="movein"] .gallery figure:first-child img { height: 100%; object-fit: contain; }
@media (min-width: 901px) {
  body[data-service="movein"] .gallery figure:not(:first-child) img { position: absolute; inset: 0; }
}

/* Room-by-room scope replaces stock imagery with a useful, scannable checklist. */
.room-scope {
  display: grid;
  gap: 22px;
}
.room-scope__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.room-scope__tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(11, 26, 42, .32);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.room-scope__tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.room-scope__tab.is-active {
  border-color: var(--blue);
  background: var(--blue2);
  color: var(--blue);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--blue);
}
.room-scope__panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px -38px rgba(11, 26, 42, .45);
}
.room-scope__panel[hidden] { display: none; }
.room-scope__name {
  margin: 0 0 22px;
  color: var(--blue);
  font-weight: 800;
}
.room-scope__panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.room-scope__panel li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 13px;
  background: #f7fafc;
  font-size: 14px;
  font-weight: 700;
}
.room-scope__panel li span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}
.room-scope__notes {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Larger field gallery for the newly supplied move-in photos. */
.gallery--many {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: 255px;
}
.gallery--many figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery--many img {
  object-fit: cover;
  padding: 0;
}
body[data-service="movein"] .gallery--many,
body[data-service="movein"] .gallery--many figure:first-child {
  aspect-ratio: auto;
}
body[data-service="movein"] .gallery--many figure:first-child img {
  object-fit: cover;
}

@media (max-width: 900px) {
  .room-scope__panel ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery--many {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 260px;
  }
  .gallery--many figure:first-child { grid-column: span 2; }
}
@media (max-width: 620px) {
  .room-scope__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 3px 3px 8px;
    scrollbar-width: none;
  }
  .room-scope__tabs::-webkit-scrollbar { display: none; }
  .room-scope__tab { flex: none; }
  .room-scope__panel ul { grid-template-columns: 1fr 1fr; }
  .room-scope__panel li { min-height: 58px; padding: 13px; font-size: 13px; }
  .gallery--many {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .gallery--many figure,
  .gallery--many figure:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }
  .gallery--many figure:first-child { grid-column: span 2; }
}

/* Supplied site photos alongside each room's scope. */
body[data-service="movein"] .hero__visual img { object-fit: cover; object-position: center; }
.room-scope__panel { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr); padding: 0; overflow: hidden; align-items: stretch; }
.room-scope__photo { position: relative; margin: 0; min-height: 380px; background: #e8eef2; }
.room-scope__photo img { display: block; width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.room-scope__photo figcaption { position: absolute; inset: auto 0 0; padding: 42px 24px 22px; background: linear-gradient(transparent, rgba(11,26,42,.72)); color: #fff; font-size: 13px; font-weight: 600; }
.room-scope__content { padding: clamp(24px, 3vw, 42px); align-self: center; }
.room-scope__content ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.room-scope__content li { min-height: 60px; padding: 13px; }
@media (max-width: 700px) {
  .room-scope__panel { grid-template-columns: 1fr; }
  .room-scope__photo { min-height: 0; aspect-ratio: 4 / 3; }
  .room-scope__content { padding: 24px 18px; }
  .room-scope__content li { font-size: 13px; }
}
