.upute_wrapper {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1520px) {
  .upute_wrapper {
    max-width: 1510px;
  }
}
.upute_layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.upute_sidebar {
  flex: 0 0 260px;
  max-width: 260px;
}

.upute_sidebar_toggle {
  display: none;
}

.upute_sidebar_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.upute_nav_item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  margin-bottom: 6px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  background: #ffffff;
  color: #333;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.upute_nav_item:hover {
  background: #e5e5e5;
}

.upute_nav_item.is-active {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #fff;
}

.upute_pdf_box {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}
.upute_pdf_box a {
  color: #8a0808;
}
.upute_pdf_box a:hover {
  color: #0b0b0b;
}

.upute_pdf_link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #8a0808;
  padding: 4px 0;
}

.upute_content {
  flex: 1 1 auto;
  min-width: 0;
}

.upute_content_inner {
  width: 100%;
}

.upute_card {
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  margin-top: 0;
  font-size: 14px;
}

.upute_logo_title {
  width: 300px;
  height: auto;
}

.upute_card_title_main {
  font-size: 24px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 60px;
  color: #333;
}

.upute_card_title {
  font-size: 21px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #333;
}

.upute_card_subtitle {
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  color: #666;
}

.upute_card p {
  margin: 0 0 12px 0;
  line-height: 1.5;
  text-align: left;
}

.upute_card ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 0 16px 22px;
  padding-left: 0;
}

.upute_card li {
  margin-bottom: 6px;
  text-align: left;
}

.upute_card li ul {
  margin-top: 6px;
  margin-bottom: 0;
}

.upute_card table {
  border: 1px solid #e5e5e5;
}

.upute_card table th {
  background: #e5e5e5;
  font-weight: 600;
}

.upute_card_article_title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
  text-align: left;
  padding-left: 15px;
}

.upute_card h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 22px 0 12px 0;
  color: #333;
  padding-left: 6px;
  text-align: left;
}

.upute_card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 18px 0 10px 0;
  color: #333;
  padding-left: 6px;
  text-align: left;
}

.upute_card h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  color: #333;
  text-align: left;
}

.upute_card table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.upute_card table td,
.upute_card table th {
  border: 1px solid #e5e5e5;
  padding: 6px 8px;
  text-align: left;
}

.upute_card figure {
  margin: 18px 0;
  text-align: center;
}

.upute_card img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}

.upute_card a {
  text-decoration: none;
}

.upute_card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .upute_layout {
    flex-direction: column;
    margin-top: 0.5rem;
  }
  .upute_sidebar {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    position: static;
    top: auto;
  }
  .upute_sidebar_toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    background: #ffffff;
    color: #333;
    border-radius: 4px;
    border: 1px solid #cccccc;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 6px;
  }
  .upute_sidebar_list {
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .upute_sidebar.is-open .upute_sidebar_list {
    display: flex;
  }
  .upute_nav_item {
    padding: 10px 12px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #cccccc;
    font-size: 15px;
    width: 100%;
    text-align: left;
    margin-bottom: 6px;
    white-space: normal;
    line-height: 1.3;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .upute_nav_item.is-active {
    background: #38bdf8;
    border-color: #38bdf8;
    color: #fff;
  }
  .upute_pdf_box {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #e5e5e5;
  }
}/*# sourceMappingURL=upute.css.map */