/* Guide pages - author byline */
.article-byline, .blog-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: #5A6A78;
}
.byline-author { font-weight: 600; color: #0D1823; }
.byline-reviewed { color: #8A9BAB; }
.byline-reviewed::before { content: '\00B7\0020'; }

/* Guide pages - FAQ accordion styles */
.faq-accordion details { border-bottom: 1px solid #E2E8EE; }
.faq-accordion details:first-child { border-top: 1px solid #E2E8EE; }
.faq-accordion summary { padding: 16px 0; cursor: pointer; font-weight: 600; font-size: 15px; color: #0D1823; list-style: none; display: flex; justify-content: space-between; }
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after { content: '+'; color: #3DAA8E; font-size: 20px; }
.faq-accordion details[open] summary::after { content: '\2212'; }
.faq-accordion details p { padding: 0 0 16px; color: #5A6A78; font-size: 14px; line-height: 1.7; }
