/* Wild Krumpos Trail layout */

.wk-trail-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.wk-trail-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wk-site-title {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.wk-site-tagline {
  color: #6b5e4a;
  font-size: 0.95rem;
}

/* Trail */

.wk-trail {
  position: relative;
  margin: 0 auto;
  padding: 0;
}

.wk-trail-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #e0d2b4, #c4ac7a);
  transform: translateX(-50%);
  opacity: 0.6;
}

.wk-trail-node {
  position: relative;
  margin-bottom: 3rem;
}

.wk-node-inner {
  position: relative;
  max-width: 420px;
}

.wk-node-left {
  padding-right: 50%;
  text-align: right;
}

.wk-node-right {
  padding-left: 50%;
  text-align: left;
}

.wk-node-left .wk-node-inner {
  margin-left: auto;
}

.wk-node-right .wk-node-inner {
  margin-right: auto;
}

/* Node dot */

.wk-node-dot {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: #fef9c3;
  border: 3px solid #b45309;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.4);
}

/* Node card */

.wk-node-content {
  background: #fffdf7;
  border-radius: 12px;
  border: 1px solid #e0d0b2;
  padding: 1rem 1rem 1.25rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.wk-node-date {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #795548;
  margin-bottom: 0.35rem;
}

.wk-node-title {
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.wk-node-title a {
  color: #272421;
  text-decoration: none;
}

.wk-node-title a:hover {
  text-decoration: underline;
}

.wk-node-meta {
  font-size: 0.75rem;
  color: #85735c;
  margin-bottom: 0.5rem;
}

.wk-node-category {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: #ffedd5;
}

.wk-node-excerpt {
  font-size: 0.9rem;
  color: #4a3b2a;
  margin-bottom: 0.5rem;
}

.wk-node-readmore {
  font-size: 0.85rem;
  color: #9a3412;
  text-decoration: none;
}

.wk-node-readmore:hover {
  text-decoration: underline;
}

/* Single */

.wk-single-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.wk-single-header {
  margin-bottom: 1.5rem;
}

.wk-single-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.wk-single-meta {
  font-size: 0.85rem;
  color: #6b5e4a;
}

.wk-single-content {
  line-height: 1.7;
  color: #3b3024;
}

.wk-single-footer {
  margin-top: 2rem;
}

.wk-back-link {
  font-size: 0.9rem;
  color: #9a3412;
  text-decoration: none;
}

.wk-back-link:hover {
  text-decoration: underline;
}

/* General layout */

.wk-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.wk-page-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* Mobile */

@media (max-width: 768px) {
  .wk-trail-line {
    left: 12px;
    transform: none;
  }

  .wk-node-left,
  .wk-node-right {
    padding: 0 0 0 2.5rem;
    text-align: left;
  }

  .wk-node-inner {
    max-width: 100%;
  }

  .wk-node-dot {
    left: 12px;
  }
}
