/* Blog post detail page. */
/* Post detail */
.gu-post {
  max-width: 760px;
  margin-inline: auto;
}

.gu-post__breadcrumbs {
  font-size: 13px;
  color: var(--gu-text-faint);
  margin-bottom: 26px;
}

.gu-post__title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.gu-post__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--gu-text-dim);
  margin-bottom: 34px;
}

.gu-post__cover {
  width: 100%;
  height: auto;
  border-radius: var(--gu-radius-lg);
  margin-bottom: 34px;
}

.gu-post__tldr {
  background: var(--gu-accent-tint);
  border: 1px solid var(--gu-border-accent-soft);
  border-radius: var(--gu-radius-md);
  padding: 22px 26px;
  margin-bottom: 38px;
}

.gu-post__tldr-title {
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gu-accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.gu-post__tldr-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--gu-text-soft);
}

.gu-post__body {
  font-family: var(--gu-font-serif);
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--gu-text-soft);
}

.gu-post__body h2,
.gu-post__body h3 {
  font-family: var(--gu-font-sans);
  color: var(--gu-text);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 1.6em 0 0.6em;
}

.gu-post__body h2 {
  font-size: 26px;
}

.gu-post__body h3 {
  font-size: 20px;
}

.gu-post__body code {
  color: var(--gu-accent-light);
  background: var(--gu-bg-raised);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.85em;
}

.gu-post__body pre {
  background: var(--gu-bg-raised);
  border: 1px solid var(--gu-border-3);
  border-radius: var(--gu-radius-md);
  padding: 18px 20px;
  overflow-x: auto;
}

.gu-post__body pre code {
  background: none;
  padding: 0;
}

.gu-post__body blockquote {
  border-left: 3px solid var(--gu-accent);
  padding-left: 20px;
  color: var(--gu-text-dim);
  font-style: italic;
}

.gu-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--gu-radius-md);
}

.gu-post__body .gu-table-wrap,
.gu-post__body table {
  max-width: 100%;
}

.gu-post__body table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--gu-font-sans);
  font-size: 14.5px;
}

.gu-post__body th,
.gu-post__body td {
  border: 1px solid var(--gu-border-4);
  padding: 10px 14px;
  text-align: left;
}

.gu-post__body th {
  color: var(--gu-text);
  background: var(--gu-bg-raised);
}

/* FAQ */
.gu-post__faq {
  margin-top: 54px;
  border-top: 1px solid var(--gu-border);
  padding-top: 38px;
}

.gu-post__faq-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 22px;
}

.gu-faq-item {
  border: 1px solid var(--gu-border-3);
  border-radius: var(--gu-radius-md);
  margin-bottom: 12px;
  background: var(--gu-bg-alt);
}

.gu-faq-item__q {
  font-weight: 700;
  font-size: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.gu-faq-item__q::-webkit-details-marker {
  display: none;
}

.gu-faq-item__a {
  padding: 0 22px 18px;
  font-family: var(--gu-font-serif);
  color: var(--gu-text-soft);
  line-height: 1.7;
}

/* Author box */
.gu-post__author {
  margin-top: 44px;
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--gu-bg-alt);
  border: 1px solid var(--gu-border-3);
  border-radius: var(--gu-radius-lg);
  padding: 24px 26px;
}

.gu-post__author-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.gu-post__author-name {
  font-weight: 700;
  font-size: 16px;
}

.gu-post__author-bio {
  font-size: 13.5px;
  color: var(--gu-text-dim);
  margin: 4px 0 0;
}

/* Blog hero */
.gu-blog-hero {
  padding-block: 72px 54px;
}
