@charset "UTF-8";
.tmd-layout {
  --tmd-bg: #f1f1ee;
  --tmd-surface: #fafaf8;
  --tmd-raised: #e9e9e5;
  --tmd-line: #d1d2ce;
  --tmd-text: #191a1a;
  --tmd-muted: #6b6d6c;
  --tmd-accent: #5360d6;
  --tmd-accent-ink: #fff;
  --tmd-danger: #b53f3a;
  min-height: 100dvh;
  color: var(--tmd-text);
  background: var(--tmd-bg);
  font: 400 14px/1.5 Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
  letter-spacing: -0.015em;
  color-scheme: light;
}
.tmd-layout[data-tmd-theme="dark"] {
  --tmd-bg: #111314;
  --tmd-surface: #191b1c;
  --tmd-raised: #222526;
  --tmd-line: #303334;
  --tmd-text: #f1f2ef;
  --tmd-muted: #989c99;
  --tmd-accent: #919aff;
  --tmd-accent-ink: #111314;
  --tmd-danger: #ff8b85;
  color-scheme: dark;
}
.tmd-layout *, .tmd-layout *::before, .tmd-layout *::after {
  box-sizing: border-box;
}
.tmd-layout a {
  color: inherit;
  text-decoration: none;
}
.tmd-layout button {
  font: inherit;
}
.tmd-layout :focus-visible {
  outline: 2px solid var(--tmd-accent);
  outline-offset: 3px;
}
.tmd-layout ::selection {
  color: var(--tmd-bg);
  background: var(--tmd-accent);
}
.tmd-layout .tmd-layout__skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--tmd-bg);
  background: var(--tmd-text);
  transform: translateY(-160%);
}
.tmd-layout__skip:focus {
  transform: translateY(0);
}
.tmd-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.5fr) auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 3vw, 42px);
  border-bottom: 1px solid var(--tmd-line);
  background: color-mix(in srgb, var(--tmd-surface) 94%, transparent);
}
.tmd-brand {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px auto;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
}
.tmd-brand__mark {
  position: relative;
  grid-row: 1 / 3;
  width: 23px;
  height: 23px;
  display: block;
  transform: rotate(45deg);
}
.tmd-brand__mark i {
  position: absolute;
  inset: 1px 11px 1px 1px;
  border: 2px solid var(--tmd-accent);
}
.tmd-brand__mark i:last-child {
  inset: 1px 1px 1px 11px;
  border-color: var(--tmd-text);
}
.tmd-brand strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tmd-brand small {
  color: var(--tmd-muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.tmd-header__nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}
.tmd-header__nav a {
  position: relative;
  padding: 27px 0 25px;
  color: var(--tmd-muted);
  font-size: 13px;
  font-weight: 650;
}
.tmd-header__nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: var(--tmd-accent);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.tmd-header__nav a:hover, .tmd-header__nav a.is-current {
  color: var(--tmd-text);
}
.tmd-header__nav a.is-current::after {
  transform: scaleX(1);
}
.tmd-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tmd-login {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--tmd-line);
  font-size: 12px;
  font-weight: 700;
}
.tmd-login:hover {
  border-color: var(--tmd-accent);
}
.tmd-icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--tmd-text);
  border: 1px solid var(--tmd-line);
  background: transparent;
  cursor: pointer;
}
.tmd-icon-button:hover {
  background: var(--tmd-raised);
}
.tmd-icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tmd-layout .tmd-profile {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--tmd-accent-ink);
  background: var(--tmd-accent);
  border-radius: 50%;
  font-weight: 750;
}
.tmd-shell {
  min-height: calc(100dvh - 76px);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
}
.tmd-rail {
  position: sticky;
  top: 76px;
  align-self: start;
  height: calc(100dvh - 76px);
  padding: 24px 14px;
  border-inline-end: 1px solid var(--tmd-line);
  background: var(--tmd-surface);
}
.tmd-rail nav {
  display: grid;
  gap: 5px;
}
.tmd-rail nav a {
  min-height: 46px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  color: var(--tmd-muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 650;
}
.tmd-rail nav a:hover, .tmd-rail nav a.is-current {
  color: var(--tmd-text);
  background: var(--tmd-raised);
}
.tmd-rail nav a.is-current {
  box-shadow: inset 2px 0 0 var(--tmd-accent);
}
.tmd-rail__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  font-size: 14px;
}
.tmd-rail__icon::before {
  content: "•";
}
.tmd-nav-dashboard .tmd-rail__icon::before {
  content: "▦";
}
.tmd-nav-projects .tmd-rail__icon::before {
  content: "□";
}
.tmd-nav-calendar .tmd-rail__icon::before {
  content: "◇";
}
.tmd-nav-team .tmd-rail__icon::before {
  content: "◎";
}
.tmd-nav-chat .tmd-rail__icon::before {
  content: "◫";
}
.tmd-rail nav a:hover .tmd-rail__icon, .tmd-rail nav a.is-current .tmd-rail__icon {
  border-color: var(--tmd-line);
}
.tmd-content {
  min-width: 0;
  padding: clamp(24px, 3.5vw, 52px);
}
.tmd-content__heading {
  margin-bottom: 28px;
}
.tmd-content__heading p {
  margin: 0;
  color: var(--tmd-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}
.tmd-content__heading h1 {
  margin: 5px 0 0;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.tmd-content__body {
  min-width: 0;
  color: var(--tmd-text);
}
.tmd-content__body:has(> .tmd-page-widget) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.tmd-content__body > .tmd-page-widget {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.tmd-content__body > .tmd-page-widget--wide {
  grid-column: 1 / -1;
}
.tmd-content__body > .btnArea {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  margin: 0;
}
.tmd-content__body > .btnArea .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
.tmd-layout .tmd-content__body > .btnArea .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--tmd-text);
  font-size: 13px;
  line-height: 1.2;
  text-shadow: none;
  background: var(--tmd-raised);
  background-image: none;
  border: 1px solid var(--tmd-line);
  border-radius: 0;
  box-shadow: none;
}
.tmd-layout .tmd-content__body > .btnArea .btn:hover, .tmd-layout .tmd-content__body > .btnArea .btn:focus-visible {
  color: var(--tmd-text);
  border-color: var(--tmd-accent);
  background: var(--tmd-surface);
  background-image: none;
}
.tmd-mobile-nav {
  display: none;
}
@media (max-width: 1180px) {
  .tmd-shell {
    grid-template-columns: 176px minmax(0, 1fr);
  }
  .tmd-rail nav a {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
  }
}
@media (max-width: 760px) {
  .tmd-header {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 14px;
  }
  .tmd-brand small, .tmd-header__nav, .tmd-login {
    display: none;
  }
  .tmd-shell {
    min-height: calc(100dvh - 64px);
    display: block;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .tmd-rail {
    display: none;
  }
  .tmd-content {
    padding: 22px 14px;
  }
  .tmd-content__heading {
    margin-bottom: 18px;
  }
  .tmd-content__body:has(> .tmd-page-widget) {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .tmd-content__body > .tmd-page-widget--wide {
    grid-column: auto;
  }
  .tmd-content__body > .btnArea .btn-group, .tmd-content__body > .btnArea .btn {
    width: 100%;
  }
  .tmd-mobile-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    min-height: calc(58px + env(safe-area-inset-bottom));
    display: flex;
    align-items: stretch;
    gap: 2px;
    padding: 5px 8px env(safe-area-inset-bottom);
    border-top: 1px solid var(--tmd-line);
    background: var(--tmd-surface);
    overflow: hidden;
  }
  .tmd-mobile-nav a {
    min-width: 0;
    flex: 1 1 0;
    display: grid;
    place-items: center;
    padding: 8px 4px;
    color: var(--tmd-muted);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
  }
  .tmd-mobile-nav a.is-current {
    color: var(--tmd-text);
    background: var(--tmd-raised);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tmd-layout *, .tmd-layout *::before, .tmd-layout *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
/*# sourceMappingURL=30dd9dfa97a43e290a817005893febab6f3c7224.tmd.scss.map */
