/*
 * LONST TECH wp.css v2.11
 * WordPress blog/archive/single page only.
 */
.wp-content-shell {
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 5vw, 70px);
}

.wp-post-list {
  border-top: 1px solid var(--line);
}

.wp-post-list article {
  display: grid;
  grid-template-columns: 170px 1fr 150px;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.wp-post-list time {
  font-size: 14px;
}

.wp-post-list h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: .95;
  letter-spacing: -.06em;
}

.wp-post-list .readmore {
  justify-self: end;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wp-article-title {
  margin: 0 0 32px;
  font-size: clamp(54px, 9vw, 130px);
  line-height: .78;
  letter-spacing: -.075em;
}

.wp-entry {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.8;
  font-weight: 700;
}

.wp-entry > * + * {
  margin-top: 1.3em;
}

.wp-entry h2,
.wp-entry h3 {
  line-height: 1;
  letter-spacing: -.05em;
}

.wp-entry h2 {
  font-size: clamp(30px, 4vw, 56px);
}

.wp-entry h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.wp-entry img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
}

.wp-entry a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pagination {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  font-size: 18px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination a,
.pagination span {
  display: inline-grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 12px;
}

.pagination a:hover,
.pagination .current {
  background: var(--accent);
  color: var(--accent-ink);
}

@media (max-width: 680px) {
  .wp-post-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wp-post-list .readmore {
    justify-self: start;
  }

  .wp-article-title {
    font-size: clamp(42px, 13vw, 78px);
  }
}
