@font-face {
  font-family: 'Pretendard';
  src: url('/assets/fonts/pretendard/Pretendard-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('/assets/fonts/pretendard/Pretendard-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('/assets/fonts/pretendard/Pretendard-ExtraBold.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}

body {
  padding-bottom: calc(122px + env(safe-area-inset-bottom, 0px));
}
.jjr-app-tabs {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 210;
  transform: translateX(-50%);
  width: min(90vw, 387px);
  height: 92px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 9px 5px 7px;
  border: 1px solid rgba(234,223,195,.42);
  border-radius: 28px;
  background: rgba(244,239,226,.2);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 16px 38px rgba(17,17,20,.16);
  overflow: hidden;
}
.jjr-app-tabs a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 18px;
  color: #8a7b68;
  text-decoration: none;
  font: 900 15px/1.18 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.jjr-app-tabs svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.jjr-app-tabs a.is-on {
  color: #854c1e;
  font-weight: 900;
}
body.jjr-tabs-mounted #botnav.botnav {
  display: none;
}
@media (min-width: 760px) {
  .jjr-app-tabs {
    width: 387px;
  }
}
/* 좁은 폰에서는 한 칸이 58px 남짓이라 '동네소식' 네 글자가 넘친다.
   그때만 원래 크기로 되돌린다. */
@media (max-width: 360px) {
  .jjr-app-tabs a { font-size: 13.5px; }
  .jjr-app-tabs svg { width: 27px; height: 27px; }
}
