/* Paldo Truck production CSS bundle. Source order is intentional. */
:root {
  --ink: #151515;
  --muted: #656565;
  --line: #e7e7e7;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --brand: #08915d;
  --brand-dark: #066b47;
  --accent: #e1492d;
  --sand: #efe4d3;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

main {
  width: 100%;
  margin: 0 auto;
}

.top-line {
  height: 4px;
  background: #000000;
}

.mobile-first-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  grid-template-areas: "logo quick contact";
  gap: clamp(8px, 2vw, 18px);
  justify-items: start;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line, #e7e7e7);
  background: rgba(255, 255, 255, 0.96);
  padding: 0 clamp(12px, 3vw, 18px);
  backdrop-filter: blur(16px);
}

.logo {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: auto;
  min-width: 0;
  color: #111111;
  font-size: clamp(21px, 5.5vw, 27px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.logo span {
  display: block;
}

.header-contact {
  grid-area: contact;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.header-quick-nav {
  grid-area: quick;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0;
}

.header-quick-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #111111;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.header-quick-link:hover,
.header-quick-link:focus-visible,
.header-quick-link[aria-current="page"] {
  border-color: rgba(0, 0, 0, 0.12);
  background: #f5f7f6;
  outline: 0;
}

.header-quick-link:hover {
  transform: translateY(-1px);
}

.header-quick-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.header-quick-illustration {
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line, #e7e7e7);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
}

.contact-phone {
  min-width: auto;
  width: auto;
  padding: 0 14px;
  gap: 8px;
}

.contact-phone strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-phone-desktop {
  display: none;
}

.contact-action .lucide {
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
}

.contact-kakao span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 901px) {
  .top-line {
    height: 2px;
  }

  .mobile-first-header {
    gap: 24px;
    min-height: 64px;
    padding: 0 max(28px, calc((100vw - 1120px) / 2));
  }

  .logo {
    justify-self: start;
    font-size: 25px;
  }

  .header-quick-link {
    width: 44px;
    height: 44px;
  }

  .header-quick-illustration {
    width: 36px;
    height: 36px;
  }

  .contact-phone {
    gap: 8px;
    width: auto;
    min-width: 0;
    padding: 0 14px;
  }

  .contact-phone-mobile {
    display: none;
  }

  .contact-phone-desktop {
    display: inline-flex;
    cursor: pointer;
  }

  .contact-phone strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
  }
}

@media (max-width: 760px) {
  .mobile-first-header {
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 7px;
  }

  .logo {
    font-size: 20px;
  }

  .contact-phone {
    padding: 0 10px;
  }

  .contact-phone strong {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .mobile-first-header {
    gap: 6px;
    min-height: 58px;
    padding: 0 10px;
  }

  .logo {
    font-size: 18px;
  }

  .header-contact {
    gap: 6px;
  }

  .contact-action {
    min-width: 36px;
    height: 36px;
  }

  .contact-phone {
    width: 36px;
    padding: 0;
    gap: 0;
  }

  .contact-phone strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .contact-action .lucide {
    width: 17px;
    height: 17px;
  }

  .header-quick-nav {
    gap: 0;
  }

  .header-quick-link {
    width: 38px;
    height: 38px;
  }

  .header-quick-illustration {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 390px) {
  .mobile-first-header {
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 5px;
    padding: 0 8px;
  }

  .logo {
    font-size: 16px;
  }

  .header-quick-nav {
    gap: 0;
  }

  .header-quick-link {
    width: 34px;
    height: 34px;
  }

  .header-quick-illustration {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 340px) {
  .logo {
    font-size: 15px;
  }

  .contact-kakao {
    display: none;
  }
}

.site-footer {
  border-top: 1px solid #dde4e0;
  background: #f6f8f7;
  color: var(--ink, #151515);
}

.footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 48px clamp(18px, 5vw, 52px) 24px;
}

.footer-dealer {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
  min-width: 0;
}

.footer-dealer > img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  border: 1px solid #dfe5e1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.08);
  image-rendering: auto;
}

.footer-dealer-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.footer-dealer-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-dealer-heading > div {
  min-width: 0;
}

.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 9px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(8, 145, 93, 0.1);
  color: var(--brand-dark, #066b47);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-dealer-copy strong {
  display: block;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.footer-dealer-heading p {
  max-width: 720px;
  margin: 11px 0 0;
  color: var(--muted, #656565);
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.footer-dealer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-call,
.footer-kakao,
.footer-credential {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  border: 1px solid #d7dfda;
  border-radius: 9px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-call {
  border-color: var(--brand-dark, #066b47);
  background: var(--brand-dark, #066b47);
  color: #ffffff;
}

.footer-kakao {
  background: #ffffff;
  color: var(--ink, #151515);
}

.footer-credential {
  flex: 0 0 auto;
  min-height: 40px;
  background: #ffffff;
  color: var(--ink, #151515);
}

.footer-call:hover,
.footer-call:focus-visible {
  border-color: var(--brand, #08915d);
  background: var(--brand, #08915d);
}

.footer-kakao:hover,
.footer-kakao:focus-visible,
.footer-credential:hover,
.footer-credential:focus-visible {
  border-color: var(--brand-dark, #066b47);
  color: var(--brand-dark, #066b47);
}

.footer-call:active,
.footer-kakao:active,
.footer-credential:active {
  transform: translateY(1px);
}

.footer-call .lucide,
.footer-kakao .lucide,
.footer-credential .lucide {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.footer-call-desktop {
  display: none;
}

.footer-business-info {
  overflow: hidden;
  border: 1px solid #dfe5e1;
  border-radius: 12px;
  background: #ffffff;
}

.footer-business-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 17px 20px;
  border-bottom: 1px solid #e8ece9;
  background: #fbfcfb;
}

.footer-business-intro strong {
  color: var(--ink, #151515);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-business-intro p {
  margin: 0;
  color: var(--muted, #656565);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
  word-break: keep-all;
}

.footer-business-info dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  padding: 6px 20px;
}

.footer-business-info dl > div {
  display: grid;
  grid-template-columns: minmax(132px, auto) minmax(0, 1fr);
  gap: 13px;
  align-items: baseline;
  min-width: 0;
  padding: 11px 0;
  border-bottom: 1px solid #edf0ee;
}

.footer-business-info dl > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.footer-business-info dl > .footer-business-manager {
  align-items: center;
}

.footer-business-manager dt {
  display: grid;
  gap: 2px;
}

.footer-business-address dd {
  font-weight: 700;
}

.footer-business-info dt {
  margin: 0;
  color: var(--muted, #656565);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-business-info dd {
  min-width: 0;
  margin: 0;
  color: var(--ink, #151515);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.footer-business-info .footer-operator-notice {
  margin: 0;
  padding: 13px 20px 15px;
  border-top: 1px solid #e8ece9;
  background: #fbfcfb;
  color: var(--muted, #656565);
  font-size: 11px;
  line-height: 1.65;
  word-break: keep-all;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #dfe5e1;
}

.footer-bottom > p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.footer-bottom > p strong {
  color: var(--ink, #151515);
  font-size: 13px;
  font-weight: 900;
}

.footer-bottom > p span {
  color: var(--muted, #656565);
  font-size: 11px;
}

.footer-admin-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 14px;
}

.footer-admin-links a {
  color: var(--muted, #656565);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.footer-admin-links a:hover,
.footer-admin-links a:focus-visible {
  color: var(--ink, #151515);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 901px) {
  .footer-call-mobile {
    display: none;
  }

  .footer-call-desktop {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    padding-top: 40px;
  }

  .footer-dealer {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    gap: 24px;
  }

  .footer-dealer-heading {
    flex-direction: column;
    gap: 14px;
  }

  .footer-credential {
    align-self: flex-start;
  }

  .footer-business-intro {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-business-intro p {
    text-align: left;
  }

  .footer-business-info dl {
    grid-template-columns: 1fr;
  }

  .footer-business-info dl > div:nth-last-child(-n + 2) {
    border-bottom: 1px solid #edf0ee;
  }

  .footer-business-info dl > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    padding: 32px 20px 22px;
  }

  .footer-dealer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-dealer > img {
    width: min(150px, 44vw);
    justify-self: start;
    border-radius: 12px;
  }

  .footer-dealer-copy {
    gap: 15px;
  }

  .footer-eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .footer-dealer-copy strong {
    font-size: 21px;
    line-height: 1.35;
  }

  .footer-dealer-heading p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.65;
  }

  .footer-dealer-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-call,
  .footer-kakao {
    justify-content: flex-start;
    width: 100%;
  }

  .footer-credential {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-business-intro {
    padding: 15px 16px;
  }

  .footer-business-info dl {
    padding: 4px 16px;
  }

  .footer-business-info dl > div {
    grid-template-columns: minmax(132px, auto) minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .footer-business-info dt {
    font-size: 11px;
  }

  .footer-business-info dd {
    font-size: 12px;
  }

  .footer-business-info .footer-operator-notice {
    padding: 12px 16px 14px;
    font-size: 10px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .footer-admin-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .footer-business-info dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-business-info dt {
    white-space: normal;
  }
}

:root {
  --muted: #646464;
}

body.note-modal-open {
  overflow: hidden;
}

.notes-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 52px) 72px;
}

.notes-breadcrumb {
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.notes-breadcrumb ol,
.note-detail-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.notes-breadcrumb li:not(:last-child)::after,
.note-detail-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.notes-intro {
  max-width: 1240px;
  margin: 10px 0 clamp(18px, 3vw, 28px);
  padding: clamp(14px, 2.4vw, 24px) clamp(18px, 4vw, 36px);
  border-left: 3px solid rgba(8, 145, 93, 0.32);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.68);
}

.notes-intro h1,
.notes-intro h2 {
  max-width: 960px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(29px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.notes-intro p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2.1vw, 17px);
  font-weight: 600;
  line-height: 1.72;
}

.notes-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.notes-category-filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.notes-category-filter a.active,
.notes-category-filter a:focus-visible {
  border-color: rgba(8, 145, 93, 0.28);
  background: #edf7f2;
  color: var(--brand-dark);
  outline: 0;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.notes-pagination {
  display: flex;
  margin: 0 0 16px;
}

.notes-pagination-bottom {
  margin: 18px 0 0;
  justify-content: center;
}

.notes-pagination-top {
  justify-content: flex-start;
}

.notes-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.notes-page-link:hover,
.notes-page-link:focus-visible {
  border-color: rgba(0, 112, 74, 0.34);
  background: #edf7f2;
  color: var(--brand-dark);
  outline: 0;
}

.notes-page-link[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.62;
}

.note-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: inherit;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.note-card:hover,
.note-card:focus-visible {
  border-color: #cfcfcf;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

.note-card-media {
  position: relative;
  display: block;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.note-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.note-card-media figcaption {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--paper);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 800;
}

.note-card-body {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.note-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.note-card-meta span {
  color: var(--brand-dark);
}

.note-card h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.note-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.65;
}

.notes-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  padding: 28px;
  text-align: center;
  font-weight: 800;
}

.note-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  background: rgba(15, 15, 15, 0.54);
  backdrop-filter: blur(2px);
}

.note-modal-backdrop.open {
  display: block;
}

.note-modal-backdrop.intro-open {
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: none;
}

.note-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 60;
  display: none;
  width: min(960px, calc(100vw - 64px));
  max-width: 960px;
  max-height: calc(100svh - 56px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.note-modal.open {
  display: block;
}

.note-modal.intro-open {
  width: auto;
  max-width: min(680px, calc(100vw - 40px));
  max-height: calc(100svh - 80px);
  padding: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.note-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.note-modal-close .lucide {
  width: 20px;
  height: 20px;
}

.note-modal.intro-open .note-modal-close {
  display: none;
}

#noteModalContent {
  display: block;
  max-height: calc(100svh - 56px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--paper);
}

#noteModalContent.intro-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-height: calc(100svh - 80px);
  overflow: hidden;
  padding: clamp(20px, 3.5vw, 36px);
}

.note-modal-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.intro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 640px;
}

.intro-avatar-wrap {
  width: min(320px, 46vw);
  max-width: 340px;
  aspect-ratio: 1537 / 1023;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(4, 8, 12, 0.18);
}

.intro-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
}

.intro-text {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(6, 107, 71, 0.06);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 145, 93, 0.03), rgba(255, 255, 255, 0.02));
  padding: 14px 16px;
}

.intro-text::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 12px;
  width: 4px;
  border-radius: 4px;
  background: var(--brand);
}

.intro-message {
  margin: 0;
  padding-left: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (min-width: 901px) {
  #noteModalContent.intro-layout .intro-card {
    max-width: 520px;
  }

  #noteModalContent.intro-layout .intro-avatar-wrap {
    width: 100%;
    max-width: 100%;
  }
}

.note-detail-article {
  max-height: none;
  overflow: visible;
  scroll-padding-top: 24px;
}

.note-detail-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(22px, 4vw, 42px) clamp(66px, 6vw, 72px) clamp(16px, 2.5vw, 24px) clamp(22px, 5vw, 56px);
}

.note-detail-breadcrumb {
  margin-top: 18px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.note-detail-breadcrumb a {
  color: var(--brand-dark);
}

.note-detail-category {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.note-detail-header h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
}

.note-detail-header > p {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.note-detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 16px 0 0;
}

.note-detail-meta div {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  border-radius: 999px;
  background: #f4f6f5;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.note-detail-meta dt,
.note-detail-meta dd {
  margin: 0;
}

.note-detail-meta dt {
  color: var(--muted);
}

.note-detail-body {
  min-width: 0;
  padding: clamp(18px, 4vw, 36px) clamp(22px, 5vw, 56px) clamp(28px, 5vw, 52px);
}

.note-detail-figure {
  display: grid;
  gap: 8px;
  margin: 0 clamp(22px, 5vw, 56px);
}

.note-detail-figure img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--soft);
}

.note-detail-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.note-detail-main {
  min-width: 0;
  max-width: 820px;
  margin: 0 auto;
}

.note-content {
  --note-text: #2f3431;
  --note-muted: #5c655f;
  --note-border: #dce4df;
  --note-soft: #f7faf8;
  --note-accent-soft: #edf7f2;
  --note-code-bg: #1f2924;
  --note-code-text: #f6faf8;
  max-width: 760px;
  margin: 0 auto;
  color: var(--note-text);
  font-size: 17px;
  line-height: 1.86;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-rendering: optimizeLegibility;
}

.note-content > :first-child,
.note-content :where(section, article, aside, nav, details) > :first-child,
.note-content :where(header, footer) > :first-child {
  margin-top: 0;
}

.note-content > :last-child,
.note-content :where(section, article, aside, nav, details) > :last-child,
.note-content :where(header, footer) > :last-child {
  margin-bottom: 0;
}

.note-content :where(p, li, dd, td, th, figcaption, summary) {
  text-wrap: pretty;
}

.note-content p {
  margin: 0 0 1.15em;
}

.note-content > p:first-child {
  color: #252b28;
  font-size: 1.06em;
  line-height: 1.82;
}

.note-content :where(h2, h3, h4, h5, h6) {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.36;
  letter-spacing: -0.018em;
  scroll-margin-top: 96px;
  text-wrap: balance;
}

.note-content h2 {
  margin: 3.15em 0 0.82em;
  padding: 0.08em 0 0.5em 0.72em;
  border-bottom: 1px solid var(--note-border);
  border-left: 4px solid var(--brand-dark);
  font-size: clamp(24px, 3vw, 28px);
}

.note-content h3 {
  margin: 2.25em 0 0.68em;
  padding-bottom: 0.38em;
  border-bottom: 1px solid #edf0ee;
  font-size: clamp(20px, 2.4vw, 22px);
}

.note-content h4 {
  margin: 1.9em 0 0.58em;
  color: #26302b;
  font-size: 18px;
}

.note-content h5 {
  margin: 1.65em 0 0.5em;
  color: #303934;
  font-size: 16px;
}

.note-content h6 {
  margin: 1.45em 0 0.45em;
  color: var(--note-muted);
  font-size: 15px;
  letter-spacing: 0;
}

.note-content :where(section, article) {
  margin: 3.1em 0;
}

.note-content :where(section, article) > :where(h2, h3, h4):first-child {
  margin-top: 0;
}

.note-content :where(section, article) > header {
  margin-bottom: 1.4em;
}

.note-content :where(section, article) > footer {
  margin-top: 1.8em;
  padding-top: 1em;
  border-top: 1px solid var(--note-border);
  color: var(--note-muted);
  font-size: 0.92em;
}

.note-content :where(ul, ol) {
  margin: 0 0 1.45em;
  padding-left: 1.55em;
}

.note-content :where(ul, ol) :where(ul, ol) {
  margin: 0.55em 0 0.25em;
}

.note-content li {
  margin: 0.5em 0;
  padding-left: 0.16em;
  line-height: 1.76;
}

.note-content li + li {
  margin-top: 0.62em;
}

.note-content li::marker {
  color: var(--brand-dark);
  font-weight: 900;
}

.note-content li > :where(p, ul, ol):last-child {
  margin-bottom: 0;
}

.note-content dl {
  margin: 1.75em 0;
  overflow: hidden;
  border: 1px solid var(--note-border);
  border-radius: 10px;
  background: #ffffff;
}

.note-content dt {
  margin: 0;
  padding: 0.9em 1em 0.28em;
  color: #243029;
  font-weight: 900;
}

.note-content dd {
  margin: 0;
  padding: 0 1em 0.95em;
  border-bottom: 1px solid #edf1ee;
  color: var(--note-text);
}

.note-content dd:last-child {
  border-bottom: 0;
}

.note-content aside {
  margin: 2em 0;
  padding: 1.1em 1.2em;
  border: 1px solid #d3e5da;
  border-left: 4px solid var(--brand-dark);
  border-radius: 0 10px 10px 0;
  background: var(--note-accent-soft);
  color: #29352f;
}

.note-content nav {
  margin: 2em 0;
  padding: 1.1em 1.2em;
  border: 1px solid var(--note-border);
  border-radius: 10px;
  background: var(--note-soft);
}

.note-content nav :where(ul, ol) {
  margin-bottom: 0;
}

.note-content blockquote {
  margin: 2em 0;
  padding: 1.15em 1.25em;
  border-left: 4px solid var(--brand-dark);
  border-radius: 0 10px 10px 0;
  background: var(--note-soft);
  color: #2e3732;
}

.note-content blockquote > :last-child {
  margin-bottom: 0;
}

.note-content blockquote cite {
  display: block;
  margin-top: 0.8em;
  color: var(--note-muted);
  font-size: 0.88em;
  font-style: normal;
  font-weight: 700;
}

.note-content q {
  quotes: "“" "”" "‘" "’";
}

.note-content q::before {
  content: open-quote;
}

.note-content q::after {
  content: close-quote;
}

.note-content details {
  margin: 1.55em 0;
  overflow: hidden;
  border: 1px solid var(--note-border);
  border-radius: 10px;
  background: #ffffff;
}

.note-content summary {
  min-height: 46px;
  padding: 0.85em 1em;
  color: #243029;
  font-weight: 900;
  line-height: 1.55;
  cursor: pointer;
}

.note-content summary::marker {
  color: var(--brand-dark);
}

.note-content details[open] > summary {
  border-bottom: 1px solid var(--note-border);
  background: var(--note-accent-soft);
}

.note-content details > :not(summary) {
  margin-right: 1em;
  margin-left: 1em;
}

.note-content details > summary + * {
  margin-top: 1em;
}

.note-content details > :not(summary):last-child {
  margin-bottom: 1em;
}

.note-content summary:focus-visible {
  outline: 3px solid rgba(6, 107, 71, 0.34);
  outline-offset: -3px;
}

.note-content figure {
  max-width: 100%;
  margin: 2.15em 0;
}

.note-content img {
  max-width: 100%;
  height: auto;
}

.note-content figure > img {
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #e0e5e2;
  border-radius: 10px;
  background: var(--soft);
}

.note-content figcaption {
  margin-top: 0.72em;
  color: var(--note-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.note-content table {
  width: 100%;
  margin: 1.8em 0;
  overflow: hidden;
  border: 1px solid #d5ddd8;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #2f3431;
  font-size: 15px;
  line-height: 1.58;
}

.note-content caption {
  caption-side: top;
  padding: 0 0 0.72em;
  color: #29332e;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
}

.note-content figure table {
  margin: 0;
}

.note-content :where(th, td) {
  padding: 0.82em 0.92em;
  border-right: 1px solid #dfe5e1;
  border-bottom: 1px solid #dfe5e1;
  vertical-align: top;
}

.note-content tr > :last-child {
  border-right: 0;
}

.note-content tbody tr:last-child > *,
.note-content tfoot tr:last-child > * {
  border-bottom: 0;
}

.note-content thead th {
  background: #edf6f1;
  color: #1f2d26;
  font-weight: 900;
  text-align: center;
}

.note-content tbody th {
  background: #f8faf9;
  color: #26312b;
  font-weight: 900;
  text-align: left;
}

.note-content tbody tr:nth-child(even) td {
  background: #fbfcfb;
}

.note-content tfoot :where(th, td) {
  background: #f4f7f5;
  color: #303934;
  font-weight: 800;
}

.note-content tbody td {
  text-align: left;
}

.note-content td.is-number,
.note-content th.is-number,
.note-content td[data-type="number"],
.note-content th[data-type="number"],
.note-content td[data-align="right"],
.note-content th[data-align="right"] {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.note-content pre {
  max-width: 100%;
  margin: 1.8em 0;
  overflow-x: auto;
  border-radius: 10px;
  background: var(--note-code-bg);
  padding: 1em 1.1em;
  color: var(--note-code-text);
  font-family: Consolas, "SFMono-Regular", "Liberation Mono", monospace;
  font-size: 0.88em;
  line-height: 1.72;
  tab-size: 2;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
}

.note-content code,
.note-content kbd,
.note-content samp,
.note-content var {
  font-family: Consolas, "SFMono-Regular", "Liberation Mono", monospace;
}

.note-content :not(pre) > code {
  border: 1px solid #dce5df;
  border-radius: 5px;
  background: #f2f7f4;
  padding: 0.12em 0.38em;
  color: #1f5f45;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.note-content pre code {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.note-content kbd {
  display: inline-block;
  border: 1px solid #adb7b1;
  border-bottom-width: 2px;
  border-radius: 5px;
  background: #ffffff;
  padding: 0.08em 0.38em;
  color: #222a26;
  font-size: 0.84em;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.note-content samp {
  color: #37423c;
}

.note-content var {
  color: #404a45;
  font-style: italic;
}

.note-content strong,
.note-content b {
  color: #202622;
  font-weight: 900;
}

.note-content :where(em, i) {
  color: #37413b;
}

.note-content dfn {
  color: #26342c;
  font-style: normal;
  font-weight: 900;
}

.note-content mark {
  border-radius: 3px;
  background: #fff0ad;
  padding: 0.02em 0.18em;
  color: #242424;
}

.note-content abbr[title] {
  text-decoration: underline dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: help;
}

.note-content time {
  font-variant-numeric: tabular-nums;
}

.note-content address {
  margin: 1.5em 0;
  color: #3a443e;
  font-style: normal;
  line-height: 1.72;
}

.note-content small {
  color: var(--note-muted);
  font-size: 0.86em;
  line-height: 1.65;
}

.note-content :where(sub, sup) {
  font-size: 0.72em;
  line-height: 0;
}

.note-content ins {
  background: #e8f5ed;
  color: #244a35;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.note-content :where(del, s, strike) {
  color: #6c736f;
}

.note-content hr {
  height: 1px;
  margin: 2.7em 0;
  border: 0;
  background: var(--note-border);
}

.note-content a {
  border-radius: 3px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.note-content a:hover {
  background: var(--note-accent-soft);
  color: #044f35;
}

.note-content a:focus-visible {
  outline: 3px solid rgba(6, 107, 71, 0.34);
  outline-offset: 3px;
}

.note-section-heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  margin: 0 0 14px;
}

.note-section-heading span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.note-section-heading h2,
.note-reference-section h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.note-related-section,
.note-reference-section,
.note-adjacent-nav {
  margin-top: 34px;
}

.note-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.note-related-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.note-related-card:focus-visible,
.note-related-card:hover {
  border-color: rgba(0, 112, 74, 0.32);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

.note-related-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  background: var(--soft);
}

.note-related-card img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.note-related-card.is-truck-category {
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 126px;
  background: #fbfbfb;
}

.note-related-card.is-truck-category figure {
  color: var(--ink);
  background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
}

.note-related-category-svg {
  width: 78px;
  height: auto;
}

.note-related-card.is-truck-category div {
  padding: 15px 46px 15px 18px;
}

.note-related-card.is-truck-category h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.note-related-card.is-truck-category p {
  max-width: 430px;
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
}

.note-related-card.is-truck-category small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.note-related-card div {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 18px 48px 18px 20px;
}

.note-related-card span {
  display: inline-flex;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.note-related-card h3 {
  margin: 5px 0 6px;
  max-width: 420px;
  font-size: 17px;
  line-height: 1.35;
}

.note-related-card p {
  display: -webkit-box;
  margin: 0;
  max-width: 520px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.note-related-card small {
  display: block;
  margin-top: 12px;
  color: #3d3d3d;
  font-size: 12px;
  font-weight: 900;
}

.note-related-card .lucide {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  color: var(--brand-dark);
}

.note-reference-section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.note-reference-section ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.note-reference-section li {
  display: grid;
  gap: 3px;
  color: #333333;
  font-size: 14px;
}

.note-reference-section a {
  color: var(--brand-dark);
  font-weight: 900;
}

.note-reference-section em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.note-adjacent-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.note-adjacent-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 14px;
  color: inherit;
  text-decoration: none;
}

.note-adjacent-card.is-empty {
  color: var(--muted);
  background: #ffffff;
}

.note-adjacent-card:not(.is-empty):focus-visible,
.note-adjacent-card:not(.is-empty):hover {
  border-color: rgba(0, 112, 74, 0.28);
  background: #edf7f2;
  outline: 0;
}

.note-adjacent-nav span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.note-adjacent-nav strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
}

.note-back-row {
  margin-top: 24px;
}

.note-back-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #ffffff;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .note-modal {
    width: min(920px, calc(100vw - 36px));
  }
}

@media (max-width: 720px) {
  .notes-intro {
    margin-top: 8px;
    margin-bottom: 18px;
    padding: 16px 16px;
    border-left-width: 3px;
    border-radius: 16px;
  }

  .notes-intro h1,
  .notes-intro h2 {
    margin-bottom: 8px;
    font-size: 27px;
  }

  .notes-intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .note-modal {
    inset: auto;
    left: 50%;
    top: 50%;
    width: min(94vw, calc(100vw - 36px));
    max-width: none;
    max-height: calc(100svh - 18px);
    border-radius: var(--radius);
    transform: translate(-50%, -50%);
  }

  .note-modal.open {
    display: block;
  }

  .note-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  #noteModalContent {
    min-height: 0;
    max-height: calc(100svh - 18px);
  }

  .note-detail-article {
    max-height: none;
    overflow: visible;
  }

  .note-detail-header {
    padding: 18px 18px 14px 18px;
  }

  .note-detail-header h1 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .note-detail-header > p {
    font-size: 14px;
  }

  .note-detail-figure {
    margin: 0 18px;
  }

  .note-detail-figure img {
    max-height: 270px;
    aspect-ratio: 16 / 10;
  }

  .note-detail-body {
    padding: 18px 18px 32px;
  }

  .note-detail-main {
    max-width: none;
  }

  .note-content {
    max-width: none;
    font-size: 16px;
    line-height: 1.8;
  }

  .note-content > p:first-child {
    font-size: 1.03em;
  }

  .note-content h2 {
    margin: 2.55em 0 0.72em;
    padding-left: 0.62em;
    font-size: 22px;
  }

  .note-content h3 {
    margin: 2em 0 0.62em;
    font-size: 19px;
  }

  .note-content h4 {
    margin-top: 1.7em;
    font-size: 17px;
  }

  .note-content h5 {
    font-size: 16px;
  }

  .note-content h6 {
    font-size: 15px;
  }

  .note-content :where(section, article) {
    margin: 2.5em 0;
  }

  .note-content :where(ul, ol) {
    margin-bottom: 1.3em;
    padding-left: 1.35em;
  }

  .note-content li {
    line-height: 1.72;
  }

  .note-content :where(aside, nav, blockquote) {
    margin: 1.6em 0;
    padding: 1em;
  }

  .note-content dl,
  .note-content details {
    margin: 1.4em 0;
  }

  .note-content summary {
    min-height: 44px;
    padding: 0.8em 0.9em;
  }

  .note-content details > :not(summary) {
    margin-right: 0.9em;
    margin-left: 0.9em;
  }

  .note-content figure {
    margin: 1.75em 0;
  }

  .note-content figcaption {
    font-size: 13px;
  }

  .note-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1.55em 0;
    overflow-x: auto;
    border-radius: 8px;
    font-size: 14px;
    white-space: normal;
    -webkit-overflow-scrolling: touch;
  }

  .note-content figure table {
    margin: 0;
  }

  .note-content :where(th, td) {
    min-width: 132px;
    padding: 0.72em 0.78em;
  }

  .note-content pre {
    margin: 1.5em 0;
    border-radius: 8px;
    padding: 0.9em;
    font-size: 0.84em;
  }

  .note-content hr {
    margin: 2.2em 0;
  }

  .note-related-grid,
  .note-adjacent-nav {
    grid-template-columns: 1fr;
  }

  .note-related-card {
    grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
  }

  .note-related-card.is-truck-category {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .note-related-category-svg {
    width: 68px;
  }

  .note-related-card div {
    padding: 14px 42px 14px 14px;
  }

  .note-related-card h3 {
    font-size: 15px;
  }

  .note-related-card p {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .intro-avatar-wrap {
    width: 88vw;
  }

  .intro-message {
    font-size: 14px;
  }

  .notes-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .note-card-body {
    padding: 14px;
  }

  .note-related-card {
    grid-template-columns: 1fr;
  }

  .note-related-card.is-truck-category {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .note-related-card.is-truck-category div {
    padding: 13px 38px 13px 13px;
  }

  .note-related-category-svg {
    width: 58px;
  }

  .note-related-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .note-related-card div {
    padding: 14px 40px 16px 14px;
  }

  .note-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

