:root {
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-nav: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --accent-color: #db4a37;
  --link-color: #db4a36;
  --border-color: #e0e0e0;
  --text-color: #1d1d1d;
  --heading-color: #111111;
  --content-width: 1080px;
  --narrow-width: 660px;
  --table-alt-row-bg: #f7f7f7;
  --table-hover-bg: #fef3f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-color);
  background: #fff;
  font: 400 16px/1.75 var(--font-body);
  overflow-x: hidden;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: var(--content-width);
  max-width: 97%;
  margin: 0 auto;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wi-content {
  padding: 30px 0 70px;
}

.wi-content.home56-content {
  padding-bottom: 18px;
}

.titlebar56 {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.titlebar56.align-center {
  text-align: center;
}

.titlebar56__label {
  color: #666;
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.titlebar56__title {
  color: var(--heading-color);
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.15;
  margin: 0;
}

.archive56__main {
  padding: 2em 0;
}

.archive56__toparea--category .breadcrumb56 {
  margin-bottom: 10px;
}

.archive56__main--category {
  padding: 1em 0 1.5em;
}

.archive56__main--category .wi-content {
  padding: 0 0 40px;
}

.entry-content h2 {
  color: var(--heading-color);
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0.5em 0 .6em;
}

.entry-content h3 {
  color: var(--heading-color);
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 1.2em 0 .55em;
}

.entry-content table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  margin: 1.5em 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.entry-content table thead {
  background: var(--heading-color);
  color: #fff;
}

.entry-content table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--heading-color);
  white-space: nowrap;
}

.entry-content table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color .15s ease;
}

.entry-content table tbody tr:nth-child(even) {
  background: var(--table-alt-row-bg);
}

.entry-content table tbody tr:hover {
  background: var(--table-hover-bg);
}

.entry-content table tbody td {
  padding: 11px 16px;
  border: 1px solid var(--border-color);
  vertical-align: top;
}

@media only screen and (max-width: 600px) {
  .entry-content table thead th,
  .entry-content table tbody td {
    padding: 9px 12px;
    font-size: 0.875rem;
  }
}

.btn56 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.btn56--primary {
  background: var(--heading-color);
  color: #fff;
}

.btn56--primary:hover {
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
}

.btn56--primary:active {
  transform: translateY(1px);
}

.btn56--primary:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.breadcrumb56 {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.4;
  overflow: visible;
  white-space: nowrap;
}

.breadcrumb56 ol {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.breadcrumb56 li {
  align-items: center;
  display: inline-flex;
  min-width: 0;
}

.breadcrumb56 li + li::before {
  align-items: center;
  color: #777;
  content: "/";
  display: inline-flex;
  margin-right: 8px;
}

.breadcrumb56 li span {
  color: #555;
}

.page404__links {
  columns: 2;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.page404__links li {
  margin-bottom: 8px;
}

@media only screen and (max-width: 840px) {
  .wi-content {
    padding: 20px 0 40px;
  }

  .wi-content.home56-content {
    padding-bottom: 12px;
  }

  .titlebar56__title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    max-width: calc(100% - 20px);
  }

  .wi-content.home56-content {
    padding-bottom: 8px;
  }

  .titlebar56__title {
    font-size: 28px;
  }

  .breadcrumb56 {
    font-size: clamp(10px, 2.7vw, 12px);
  }

  .breadcrumb56 ol {
    gap: 4px;
  }

  .breadcrumb56 li + li::before {
    margin-right: 4px;
  }

  .page404__links {
    columns: 1;
  }

  .archive56__toparea--category .breadcrumb56 {
    margin-bottom: 8px;
  }

  .archive56__main--category {
    padding: .75em 0 1.2em;
  }

  .archive56__main--category .wi-content {
    padding-bottom: 28px;
  }
}
