.is-blog-page #smooth-wrapper,
.is-blog-page .smooth-wrapper {
  background: var(--color-surface-light);
}

.blog-hero-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0 110px;
  background: var(--gradient-brand);
}

.blog-hero-section::before {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--color-brand-magenta-rgb), 0.22) 0%, rgba(var(--color-brand-magenta-rgb), 0) 68%);
  pointer-events: none;
}

.blog-hero-section::after {
  content: "";
  position: absolute;
  inset: -140px auto auto -120px;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--color-brand-blue-rgb), 0.18) 0%, rgba(var(--color-brand-blue-rgb), 0) 70%);
  pointer-events: none;
}

.blog-hero-row,
.blog-list-row,
.blog-article-shell-row {
  align-items: flex-start;
  justify-content: flex-start;
}

.blog-list-row {
  flex-direction: column;
}

.blog-hero-copy,
.blog-article-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
}

.blog-hero-copy h1,
.blog-article-hero-inner h1 {
  margin: 0;
  color: var(--color-white);
  font-size: 88px;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.blog-archive-kicker {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.blog-hero-subtitle,
.blog-article-excerpt {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(243, 244, 244, 0.9);
  font-size: 26px;
  line-height: 1.42;
  font-weight: 500;
  text-wrap: balance;
}

.blog-list-section {
  padding: 72px 0 130px;
  background: var(--color-surface-light);
}

.blog-related-section {
  padding-top: 60px;
}

.blog-related-header {
  width: 100%;
  margin-bottom: 34px;
}

.blog-related-header h2 {
  margin: 0;
  color: var(--color-text-strong);
  font-size: 38px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  width: 100%;
}

.blog-card {
  min-width: 0;
  padding: 30px 0;
  border-top: none;
}

.blog-card-link {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  align-items: center;
  gap: 20px;
  min-width: 0;
  cursor: pointer !important;
}

.blog-card-link *,
.blog-sidebar a,
.blog-sidebar button,
.blog-share-link,
.blog-tag-cloud a {
  cursor: pointer !important;
}

.blog-card:hover {
  transform: none;
  border-color: color-mix(in srgb, var(--color-text-strong) 22%, transparent);
  box-shadow: none;
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1024 / 683;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(var(--color-brand-blue-rgb), 0.16), rgba(var(--color-brand-magenta-rgb), 0.16));
}

.blog-card-media img,
.blog-article-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card-picture,
.blog-article-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card-media img {
  transform: none;
}

.blog-card-media-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left, rgba(var(--color-brand-blue-rgb), 0.56), transparent 50%),
    linear-gradient(160deg, var(--color-surface-dark) 0%, var(--color-surface-deep) 100%);
}

.blog-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 4px 0 0;
}

.blog-card-category {
  margin: 0;
  color: var(--color-brand-magenta);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.blog-card-category a {
  color: inherit;
}

.blog-card-title {
  margin: 0;
  color: var(--color-text-strong);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
  transition: color 0.25s ease;
}

.blog-card-excerpt {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  text-wrap:balance;
  transition: color 0.25s ease;
}

.blog-card-link:hover .blog-card-title,
.blog-card-title:hover {
  color: var(--color-brand-indigo);
}

.blog-card-link:hover .blog-card-excerpt,
.blog-card-excerpt:hover {
  color: var(--color-text-strong);
}

.blog-empty-state {
  width: 100%;
  padding: 60px;
  border-radius: 28px;
  background: rgba(18, 18, 18, 0.92);
}

.blog-empty-state h2,
.blog-empty-state p {
  margin: 0;
  color: var(--color-white);
}

.blog-empty-state p {
  margin-top: 14px;
  color: rgba(243, 244, 244, 0.86);
}

.blog-article-hero {
  padding-bottom: 50px;
}

.is-blog-single .blog-article-hero {
  overflow: visible;
  padding-bottom: 0;
  background: transparent;
}

.is-blog-single .blog-article-hero::before {
  inset: 0 0 200px 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: var(--gradient-brand);
}

.is-blog-single .blog-article-hero::after {
  display: none;
}

.is-blog-single .blog-article-hero-inner {
  max-width: 100%;
}

.is-blog-single .blog-article-hero-inner h1,
.is-blog-single .blog-article-hero-inner .blog-article-meta {
  /* max-width: 920px; */
  text-wrap:balance;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(243, 244, 244, 0.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-article-meta {
  display: none;
}

.blog-article-utility-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
}

.blog-article-meta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.blog-article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
  margin: 0;
  color: var(--color-text-strong);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.blog-article-byline-item {
  min-width: 0;
}

.blog-article-byline-separator {
  color: var(--color-text-muted);
}

.blog-article-author-label-mobile {
  display: none;
}

.blog-article-category-prefix {
  text-decoration: none;
}

.blog-article-byline a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.blog-article-byline a:hover {
  color: var(--color-brand-blue);
}

@media (max-width:768px) {

  .blog-article-meta-group {
    gap:15px;
  }

  .blog-article-utility-row {
    margin-top: 20px;
  }

  .blog-article-byline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 6px;
  }

  .blog-article-byline-separator {
    display: none;
  }

  .blog-article-author-label-desktop {
    display: none;
  }

  .blog-article-author-label-mobile {
    display: inline;
  }

  .blog-article-byline-item {
    display: block;
  }
}

.blog-article-date-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.blog-article-date-meta > span + span {
  position: relative;
}

.blog-article-date-meta > span + span::before {
  content: "|";
  margin-right: 16px;
  color: var(--color-text-muted);
}

.blog-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-reading-time img {
  display: block;
  width: 16px;
  height: 16px;
  opacity: 0.78;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-share-hero {
  margin-left: auto;
}

.blog-share-footer {
  margin: 0 0 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 32, 0.14);
}

.blog-share-label {
  color: var(--color-text-strong);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.blog-share-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 32, 0.16);
  color: var(--color-text-strong);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

button.blog-share-link {
  appearance: none;
  border: 1px solid rgba(15, 23, 32, 0.16);
  background: transparent;
  cursor: pointer;
}

.blog-share-link:hover {
  border-color: var(--color-brand-blue);
  color: var(--color-brand-blue);
  transform: translateY(-1px);
}

.blog-share-link.is-copied {
  border-color: var(--color-brand-magenta);
  color: var(--color-brand-magenta);
}

.blog-share-link svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.blog-article-shell {
  padding: 0 0 130px;
  background: var(--color-surface-light);
}

.is-blog-single .blog-article-shell {
  padding-top: 72px;
}

.blog-article-frame {
  width: 100%;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 650px) 260px;
  gap: 60px;
  width: 100%;
  justify-content: center;
  align-items: start;
}

.blog-article-main {
  width: 100%;
  max-width: 650px;
}

.blog-article-image-wrap {
  width: 100%;
  aspect-ratio: 1024 / 683;
  overflow: hidden;
  margin-bottom: 50px;
  background: var(--color-surface-deep);
}

.is-blog-single .blog-article-image-wrap {
  margin-top: 50px;
  margin-bottom: 0;
}

.is-blog-single .blog-article-image,
.is-blog-single .blog-article-image-wrap {
  border-radius: 0;
}

.blog-not-found-image-wrap {
  max-width: 920px;
  margin-top: 50px;
  margin-bottom: 32px;
}

.blog-not-found-quote {
  font-style: italic;
}

.blog-not-found-actions {
  margin-top: 30px;
}

.is-error-page .blog-article-hero,
.is-blog-not-found .blog-article-hero {
  padding-bottom: 96px;
}

.blog-article-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 84px;
}

.blog-article-content > *:first-child {
  margin-top: 0;
}

.blog-article-content > *:last-child {
  margin-bottom: 0;
}

.blog-article-content p,
.blog-article-content li,
.blog-article-content blockquote,
.blog-article-content figcaption {
  color: var(--color-text-base);
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol,
.blog-article-content figure,
.blog-article-content blockquote,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4,
.blog-article-content pre {
  margin: 0 0 22px;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
  color: var(--color-text-strong);
  font-weight: 700;
  line-height: 1.08;
}

.blog-article-content h2 {
  font-size: 44px;
  letter-spacing: -0.035em;
}

.blog-article-content h3 {
  font-size: 34px;
  letter-spacing: -0.03em;
}

.blog-article-content h4 {
  font-size: 28px;
  margin-top: 50px;
}

.blog-article-content h4[id] {
  scroll-margin-top: 130px;
}

.blog-article-content h5 {
  font-size: 22px;
}

.blog-article-content h6 {
  font-size: 18px;
}

.blog-article-content a {
  color: var(--color-brand-blue);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.blog-article-content ul,
.blog-article-content ol {
  padding-left: 30px;
}

.blog-article-content ul li {
  list-style: disc;
}

.blog-article-content ol li {
  list-style: decimal;
}

.blog-article-content blockquote {
  padding: 6px 0 6px 24px;
  border-left: 4px solid rgba(var(--color-brand-blue-rgb), 0.54);
}

.blog-article-content blockquote.chatgpt-quote {
  border-left: none;
  background-color: var(--color-surface-dark);
  border-radius: 8px;
  padding: 40px 25px;

}

.blog-article-content blockquote.chatgpt-quote p {
  color:var(--color-text-light);
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}

.blog-article-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-article-content code {
  padding: 0.12em 0.34em;
  border-radius: 8px;
  background: var(--color-surface-light-alt);
  color: var(--color-text-strong);
  font-size: 0.88em;
}

.blog-article-content pre {
  overflow-x: auto;
  padding: 26px;
  border-radius: 22px;
  background: var(--color-surface-darker);
  color:var(--color-text-light-soft);
}

.blog-article-content pre code {
  padding: 0;
  background: transparent;
  color: var(--color-text-light);
}

.blog-article-actions {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.blog-sidebar {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 260px;
  border-left:1px solid var(--color-brand-blue);
  padding: 30px 0 30px 20px;
}

.blog-sidebar-section {
  min-width: 0;
}

.blog-sidebar-section + .blog-sidebar-section {
  margin-top: 42px;
}

.blog-sidebar-title {
  margin: 0 0 24px;
  color: var(--color-text-strong);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-sidebar-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-toc-list li + li {
  margin-top: 10px;
}

.blog-toc-list a {
  display: inline-block;
  color: var(--color-text-base);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  text-wrap: balance;
  cursor: pointer !important;
}

.blog-toc-list a:hover,
.blog-toc-list a.is-active {
  color: var(--color-brand-blue);
}

.blog-toc-list a.is-active {
  /* font-weight: 700; */
}

.blog-sidebar-post-list li + li {
  margin-top: 30px;
}

.blog-sidebar-post-list a,
.blog-sidebar-empty {
  color: var(--color-text-base);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  text-wrap: balance;
}

.blog-sidebar-post-list a {
  display: inline-block;
  cursor: pointer;
}

.blog-tag-cloud {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px 10px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 10px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  touch-action: pan-x;
}

.blog-tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: var(--color-text-strong);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  flex: 0 0 auto;
}

.blog-tag-pill:hover {
  background: rgba(var(--color-brand-blue-rgb), 0.14);
  color: var(--color-brand-blue);
}

@media (max-width: 1180px) {
  .blog-hero-copy h1,
  .blog-article-hero-inner h1 {
    font-size: 72px;
  }
}

@media (max-width: 820px) {
  .blog-hero-section {
    padding: 150px 0 86px;
  }

  .blog-hero-copy h1,
  .blog-article-hero-inner h1 {
    font-size: 54px;
  }

  .blog-hero-subtitle,
  .blog-article-excerpt {
    font-size: 22px;
    line-height: 1.5;
  }

  .blog-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-card-link {
    gap: 22px;
  }

  .blog-list-section {
    padding-bottom: 96px;
  }

  .blog-article-frame {
    border-radius: 26px;
  }

  .blog-article-content {
    padding: 0 26px 64px;
  }

  .is-blog-single .blog-article-shell {
    padding-top: 60px;
  }

  .blog-article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .blog-article-main,
  .blog-sidebar {
    max-width: 100%;
  }

  .blog-sidebar {
    position: static;
    padding: 0 26px;
  }

  .blog-share-footer {
    margin-bottom: 38px;
  }

  .blog-article-utility-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .blog-share-hero {
    margin-left: 0;
    display: none;
  }

  .blog-article-content p,
  .blog-article-content li,
  .blog-article-content blockquote,
  .blog-article-content figcaption {
    font-size: 16px;
  }

  .blog-article-content h2 {
    font-size: 34px;
  }

  .blog-article-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .blog-hero-section {
    padding-top: 128px;
  }

  .blog-hero-copy h1,
  .blog-article-hero-inner h1 {
    font-size: 42px;
  }

  .blog-hero-subtitle,
  .blog-article-excerpt {
    font-size: 20px;
  }

  .blog-not-found-image-wrap {
    margin-top: 28px;
  }
  .blog-card-link {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-card-copy {
    padding: 0;
  }

  .blog-card-title {
    font-size: 28px;
  }

  .blog-card-excerpt {
    font-size: 17px;
    line-height: 1.5;
  }

  .blog-empty-state {
    padding: 34px 24px;
  }

  .blog-article-shell {
    padding-bottom: 92px;
  }

  .blog-article-content {
    padding: 0 0 50px 0;
  }

  .is-blog-single .blog-article-shell {
    padding-top: 48px;
  }

  .blog-sidebar {
    padding: 0 20px;
  }

  /* .blog-share {
    align-items: flex-end;
    flex-direction: row;
    gap: 12px;
  } */
}


input#dc-submit-1 {
  --button-gradient-angle: 160;
  --button-gradient-start: #4e7fff;
  --button-gradient-end: #a62fb9;
  box-sizing: border-box;
  padding: 5px 30px;
  border: 1px solid #fff;
  border-radius: 20px;
  background-image: linear-gradient(
    calc(var(--button-gradient-angle) * 1deg),
    var(--button-gradient-start) 0%,
    var(--button-gradient-end) 75%
  );
  box-shadow: 3px 3px 8px rgba(232, 222, 222, 0);
  color: #fff;
  cursor: pointer;
  font-family: "Helvetica", "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}
