:root {
  --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
}
a.post_item {
  color: inherit;
  text-decoration: none;
}
a.post_card_link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.post_summary {
  display: flex;
  flex-direction: column;
  gap: var(--_spacing---space--md, 1rem);
  background-color: var(--swatch--ivory, #f8f7f4);
  border: 1px solid var(--swatch--border-soft, rgba(27, 42, 74, 0.08));
  border-radius: var(--radius--md, 0.5rem);
  padding: var(--_spacing---space--lg, 1.5rem);
}
.post_body_grid .post_summary {
  background-color: var(--swatch--paper, #fdfdfc);
}
.post_summary_head {
  display: flex;
  align-items: center;
  gap: var(--_spacing---space--sm, 0.75rem);
}
.post_summary_icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius--sm, 0.25rem);
}
.post_summary_label {
  color: var(--swatch--secondary-text, rgba(27, 42, 74, 0.6));
}
.post_summary_text {
  margin: 0;
}
.u-rich-text-post .stat-block,
.u-rich-text-post .code-block {
  max-width: none;
  width: 100%;
  text-align: left;
}
.u-rich-text-post .stat-block__caption,
.u-rich-text-post .stat-block__lead,
.u-rich-text-post .stat-block__detail {
  text-align: left;
}
.u-rich-text-post .stat-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;                                   
  border-left: 2px solid var(--swatch--copper);
  border-bottom: 2px solid var(--swatch--copper);
  margin: 2rem 0;                              
  padding: 0 4.5rem 1.25rem 1.25rem;           
}
.u-rich-text-post .stat-block__number {
  margin: 0;                                   
  color: var(--swatch--navy);
  font-size: 3.5rem;                           
  font-weight: 400;                            
  line-height: 0.95;
  letter-spacing: -0.03em;                     

  font-variant-numeric: tabular-nums lining-nums;
}
.u-rich-text-post .stat-block__caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;                                
  margin: 0;
}
.u-rich-text-post .stat-block__lead {
  margin: 0;
  color: var(--swatch--navy);
  font-size: var(--_typography---font-size--body-lg);  
  font-weight: 400;                            
  line-height: 1.5;
}
.u-rich-text-post .stat-block__detail {
  margin: 0;
  color: var(--swatch--navy);
  font-family: var(--_typography---mono-family), "Ibm Plex Mono", ui-monospace, monospace;

  font-weight: 400;
  font-size: 0.875rem;                         
  line-height: 1.5;
}
.u-rich-text-post .stat-block__detail b,
.u-rich-text-post .stat-block__detail strong {
  font-weight: 500;
}
@media (max-width: 479px) {
  .u-rich-text-post .stat-block {
    padding-right: 1.25rem;
  }
}
.u-rich-text-post .code-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;                       
  background-color: #fdfdfc;          
  border: 1px solid #dddbd4;          
  border-radius: var(--radius--base); 
  margin: 1rem 0 1.5rem;              
  padding: 2rem 1.75rem;              
  position: relative;
}
.u-rich-text-post .code-block__pre {
  margin: 0;
  padding: 0;                         
  overflow-x: auto;
  overscroll-behavior-x: contain;     

  background:
    linear-gradient(to right, #fdfdfc 40%, #fdfdfc00) left center,
    linear-gradient(to left,  #fdfdfc 40%, #fdfdfc00) right center,
    radial-gradient(farthest-side at 0 50%,   #0f1a3020, #0f1a3000) left center,
    radial-gradient(farthest-side at 100% 50%, #0f1a3020, #0f1a3000) right center;
  background-repeat: no-repeat;
  background-size: 3rem 100%, 3rem 100%, 0.75rem 100%, 0.75rem 100%;
  background-attachment: local, local, scroll, scroll;

  scrollbar-width: thin;
  scrollbar-color: #0f1a3033 transparent;
}
.u-rich-text-post .code-block__pre::-webkit-scrollbar { height: 0.5rem; }
.u-rich-text-post .code-block__pre::-webkit-scrollbar-track { background: transparent; }
.u-rich-text-post .code-block__pre::-webkit-scrollbar-thumb {
  background-color: #0f1a3033;
  border-radius: 99px;
}
.u-rich-text-post .code-block__pre:hover::-webkit-scrollbar-thumb { background-color: #0f1a3055; }
.u-rich-text-post .code-block__pre:focus-visible {
  outline: 2px solid var(--swatch--copper);
  outline-offset: 4px;
  border-radius: 2px;
}
.u-rich-text-post .code-block__pre code {
  display: block;
  color: #0f1a30;                     
  font-family: var(--_typography---mono-family), "Ibm Plex Mono", ui-monospace, monospace;

  font-weight: 400;
  font-size: 1rem;                    
  line-height: 1.5;
  white-space: pre;                   
  tab-size: 4;

  padding-right: 4rem;
}
@media (max-width: 767px) {
  .u-rich-text-post .code-block__pre {
    background: none;
  }
}
@media (max-width: 479px) {
  .u-rich-text-post .code-block {
    padding: 1.5rem 1.25rem;
  }
  .u-rich-text-post .code-block__pre code {
    font-size: 0.875rem;              
  }
}
.u-rich-text-post .tok-comment   { color: var(--swatch--secondary-text); font-style: italic; }
.u-rich-text-post .tok-string    { color: var(--swatch--semantic-success); }
.u-rich-text-post .tok-number    { color: var(--swatch--semantic-info); }
.u-rich-text-post .tok-keyword   { color: var(--swatch--copper); }
.u-rich-text-post .tok-builtin   { color: var(--swatch--semantic-info); }
.u-rich-text-post .tok-decorator { color: var(--swatch--copper); }
.u-rich-text-post .tok-fn        { color: var(--swatch--navy); font-weight: 600; }
.u-rich-text-post .tok-key       { color: var(--swatch--navy); font-weight: 600; }
.u-rich-text-post .code-block__copy {
  position: absolute;
  top: 0.5rem;                        
  right: 0.604rem;                    
  display: grid;
  place-items: center;
  height: 2.375rem;                   
  padding: 0.5625rem 1.0625rem;       
  color: var(--swatch--navy);
  background-color: transparent;
  backdrop-filter: blur(10px);
  border: 1px solid var(--swatch--navy);
  border-radius: var(--radius--sm);   
  cursor: pointer;

  transition: color 200ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 150ms ease-out;
}
.u-rich-text-post .code-block__copy::after {
  content: "";
  position: absolute;
  inset: -3px;
}
.u-rich-text-post .code-block__copy:hover {
  color: var(--swatch--copper);
  border-color: var(--swatch--copper);
}
.u-rich-text-post .code-block__copy:active {
  transform: scale(0.96);             
}
.u-rich-text-post .code-block__copy:focus-visible {
  outline: 2px solid var(--swatch--copper);
  outline-offset: 2px;
}
.u-rich-text-post .code-block__copy.is-copied {
  color: var(--swatch--semantic-success);
  border-color: var(--swatch--semantic-success);
}
.u-rich-text-post .code-block__copy.is-failed {
  color: var(--swatch--semantic-danger);
  border-color: var(--swatch--semantic-danger);
}
.u-rich-text-post .code-block__icon {
  grid-area: 1 / 1;
  width: 1.25rem;                     
  height: 1.25rem;
  transition: opacity 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.u-rich-text-post .code-block__icon.is-done { opacity: 0; }
.u-rich-text-post .code-block__copy.is-copied .is-copy { opacity: 0; }
.u-rich-text-post .code-block__copy.is-copied .is-done { opacity: 1; }
.u-rich-text-post .code-block__status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .u-rich-text-post .code-block__copy,
  .u-rich-text-post .code-block__icon {
    transition: none;
  }
  .u-rich-text-post .code-block__copy:active {
    transform: none;
  }
}
.post_share,
.post_contents_link {
  transition: color 200ms var(--ease-reveal), border-color 200ms var(--ease-reveal),
              background-color 200ms var(--ease-reveal), transform 150ms ease-out;
}
.post_share:active {
  transform: scale(0.96);             
}
.post_share:focus-visible,
.post_contents_link:focus-visible {
  outline: 2px solid var(--swatch--copper);
  outline-offset: 2px;
}
.post_share_check {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.post_share .icon_back .u-svg,
.post_share_check {
  transition: opacity 200ms var(--ease-reveal);
}
.post_share.is-copied .icon_back .u-svg { opacity: 0; }
.post_share.is-copied .post_share_check { opacity: 1; }
.post_share_status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.u-section:has(.post_sidebar) .main_container { overflow: clip; }
.post_sidebar {
  position: sticky;
  top: 6rem;                    
  align-self: start;            

  max-height: calc(100vh - 7rem);
  overflow-y: auto;
}
.post_contents_link {
  color: var(--swatch--secondary-text);
  text-decoration: none;
  border-left: 1px solid var(--_theme---border);
  padding-left: 0.75rem;
}
.post_contents_link:hover,
.post_contents_link:focus-visible,
.post_contents_link.is-active {
  color: var(--_theme---heading-text);
  border-left-color: var(--swatch--copper);
}
.u-rich-text-post h2[id],
.u-rich-text-post h3[id] {
  scroll-margin-top: 6rem;
}
@media (prefers-reduced-motion: reduce) {
  .post_share,
  .post_share .icon_back .u-svg,
  .post_share_check,
  .post_contents_link {
    transition: none;
  }
  .post_share:active {
    transform: none;
  }
  .u-rich-text-post h2[id],
  .u-rich-text-post h3[id] {
    scroll-behavior: auto;
  }
}
@media (max-width: 991px) {
  .post_hero_wrap .column_content {
    grid-column: span 12 / span 12;
  }
}
@media (max-width: 767px) {
  .hero_wrap .column_content {
    grid-column: span 12 / span 12;
  }
}
@media (max-width: 991px) {
  .post_body_grid .column_content {
    grid-column: span 12 / span 12;
  }
  .post_body_grid .post_sidebar_wrap {
    display: none;
  }
}
@media (max-width: 991px) {

  .posts_layout .bento_cell.is-filled,
  .posts_layout .bento_cell.is-featured-post,
  .posts_layout .bento_cell.is-featured-post-archived {
    grid-column: span 3 / span 3;       
  }
}
@media (max-width: 767px) {

  .posts_layout .bento_cell.is-featured-post,
  .posts_layout .bento_cell.is-featured-post-archived {
    grid-column: span 6 / span 6;       
  }
}
@media (max-width: 479px) {
  .posts_layout .bento_cell.is-filled {
    grid-column: span 6 / span 6;       
  }
}
.posts_layout .post_card_link .bento_cell.is-featured-post {
  transition: background-color 250ms ease;
}
.posts_layout .post_card_link:is(:hover, :focus-visible) .bento_cell.is-featured-post {
  background-color: var(--swatch--ivory);
}
.posts_layout .bento_cell.is-filled {
  transition: background-color 250ms ease;
}
.posts_layout .bento_cell.is-filled:has(> .post_item:is(:hover, :focus-visible)) {
  background-color: var(--swatch--ivory);
}
@media (prefers-reduced-motion: reduce) {
  .posts_layout .post_card_link .bento_cell.is-featured-post,
  .posts_layout .bento_cell.is-filled {
    transition: none;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--_spacing---space--sm, 0.5rem);
  width: fit-content;

  margin: 0 auto;
  padding: 0.375rem 0.75rem;
  background: var(--swatch--pure-white, #fff);
  border: 1px solid var(--swatch--border, #e5e5e5);
  border-radius: var(--radius--sm, 0.25rem);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--swatch--navy, #1b2a4a) 6%, transparent);
}
.pagination_link,
.pagination_arrow,
.pagination_gap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius--xs, 0.125rem);
  color: color-mix(in srgb, var(--swatch--navy, #1b2a4a) 80%, transparent);
  text-decoration: none;
  font-variant-numeric: tabular-nums lining-nums;
}
.pagination_link,
.pagination_gap {
  min-width: 2.25rem;
  height: 2rem;
}
.pagination_arrow { padding: 0.375rem 0.75rem; }
.pagination_icon { display: flex; width: 1.25rem; height: 1.25rem; }
.pagination_icon svg { width: 100%; height: 100%; }
.pagination_link::after,
.pagination_arrow:not(.is-disabled)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 2.75rem;
  height: 2.75rem;
  transform: translate(-50%, -50%);
}
.pagination_link:hover,
.pagination_arrow:not(.is-disabled):hover {
  background: var(--swatch--ivory, #f8f7f4);
  color: var(--swatch--navy, #1b2a4a);
}
.pagination_link:focus-visible,
.pagination_arrow:focus-visible {
  outline: 2px solid var(--swatch--navy, #1b2a4a);
  outline-offset: 2px;
}
.pagination_link.is-current {
  border: 1px solid var(--swatch--navy, #1b2a4a);
  color: var(--swatch--navy, #1b2a4a);
}
.pagination_link.is-current:hover { background: none; }
.pagination_arrow.is-disabled { opacity: 0.5; }
.pagination_gap { cursor: default; }
.pagination_link,
.pagination_arrow {
  transition:
    background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
    color 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pagination_link:active,
.pagination_arrow:not(.is-disabled):active { scale: 0.96; }
@media (prefers-reduced-motion: reduce) {
  .pagination_link,
  .pagination_arrow { transition: none; }
  .pagination_link:active,
  .pagination_arrow:active { scale: 1; }
}
.posts_layout .bento_layout.is-flush {
  background-color: transparent;
}
.posts_layout .bento_layout.is-flush > .bento_cell {
  box-shadow: 0 0 0 1px var(--_theme---border);
}
@media (max-width: 991px) {
  .posts_layout .bento_cell.is-filled .p_body_text_lg {
    font-size: var(--_typography---font-size--body);
  }
}
.u-rich-text-post blockquote p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin-top: 0;
}
.u-rich-text-post blockquote p + p {
  margin-top: var(--_typography---rt-paragraph-spacing);
}
