@charset "UTF-8";
/*
 * Blog article - /blogs/<slug> (GTFLSUP-167).
 * Source: app/scss/blog-detail.scss.
 *
 * Two parts:
 *   1. Article chrome (masthead, byline, contents, author box, related).
 *   2. The body component library — .blog-callout, .blog-stats, .blog-pillars,
 *      tables and CTAs — authored as HTML in the body field. The markup is
 *      documented in docs/blog-component-markup.md.
 */
.blog-article__masthead {
  background: #faf9f8;
  border-bottom: 0.0625rem solid #e5e5e5;
  padding: 1.5rem 0.9375rem 2.25rem;
}
@media (min-width: 768px) {
  .blog-article__masthead {
    padding: 1.875rem 1.25rem 3rem;
  }
}
.blog-article__masthead-inner {
  max-width: 55rem;
  margin: 0 auto;
  text-align: center;
}
.blog-article .breadcrumb,
.blog-article nav[role='navigation'] .breadcrumb {
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
}
.blog-article__eyebrow {
  font-family: "InterSemibold", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #ed1c24;
  margin: 0 0 1rem;
}
.blog-article__title {
  font-family: "InterBold", sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #231f20;
  margin: 0 0 0.75rem;
  letter-spacing: -0.025rem;
}
@media (min-width: 768px) {
  .blog-article__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .blog-article__title {
    font-size: 3rem;
  }
}
.blog-article__subtitle {
  font-family: "InterMedium", sans-serif;
  font-size: 1.1875rem;
  line-height: 1.35;
  color: #1c2b3a;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .blog-article__subtitle {
    font-size: 1.625rem;
  }
}
.blog-article__deck {
  font-family: "InterLight", sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: #7f7f7f;
  margin: 0 0 1.625rem;
}
@media (min-width: 768px) {
  .blog-article__deck {
    font-size: 1.125rem;
  }
}
.blog-article__byline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding-top: 1.375rem;
  border-top: 0.0625rem solid #e5e5e5;
}
@media (min-width: 768px) {
  .blog-article__byline {
    flex-direction: row;
    justify-content: center;
    gap: 0.875rem;
  }
}
.blog-article__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.blog-article__byline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .blog-article__byline-text {
    text-align: left;
  }
}
.blog-article__author {
  font-family: "InterSemibold", sans-serif;
  font-size: 0.9375rem;
  color: #231f20;
}
.blog-article__author-role {
  font-family: "InterRegular", sans-serif;
  font-size: 0.8125rem;
  color: #7f7f7f;
}
.blog-article__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.375rem 0.875rem;
  font-family: "InterRegular", sans-serif;
  font-size: 0.8125rem;
  color: #7f7f7f;
}
@media (min-width: 768px) {
  .blog-article__meta {
    padding-left: 0.875rem;
    border-left: 0.0625rem solid #ccc;
  }
}
.blog-article__meta li + li:before {
  content: '·';
  margin-right: 0.875rem;
}
.blog-article__category {
  font-family: "InterSemibold", sans-serif;
  color: #ed1c24;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 0.6875rem;
}
.blog-article__share {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.375rem;
}
.blog-article__share-label {
  font-family: "InterSemibold", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  color: #7f7f7f;
  margin-right: 0.25rem;
}
.blog-article__share-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.875rem;
  border: 0.0625rem solid #ccc;
  border-radius: 2.5rem;
  background: #fff;
  font-family: "InterMedium", sans-serif;
  font-size: 0.75rem;
  color: #4d4d4d;
  text-decoration: none;
  transition: ease .3s all;
}
.blog-article__share-link:hover {
  border-color: #231f20;
  background: #231f20;
  color: #fff;
}
.blog-article__hero {
  max-width: 68.125rem;
  margin: -0.0625rem auto 0;
  padding: 0 0.9375rem;
}
@media (min-width: 768px) {
  .blog-article__hero {
    padding: 0 1.25rem;
    margin-top: -1.5rem;
  }
}
.blog-article__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 0.625rem;
  box-shadow: 0 1.125rem 2.5rem rgba(35, 31, 32, 0.12);
}
.blog-article__layout {
  max-width: 72.5rem;
  margin: 0 auto;
  padding: 2.5rem 0.9375rem 4.375rem;
}
@media (min-width: 1200px) {
  .blog-article__layout {
    padding: 3.75rem 1.25rem 6rem;
  }
}
@media (min-width: 992px) {
  .blog-article__layout--with-toc {
    display: grid;
    grid-template-columns: 15.625rem minmax(0, 1fr);
    gap: 3.5rem;
    align-items: start;
  }
}
.blog-article__main {
  max-width: 47.5rem;
  min-width: 0;
  margin: 0 auto;
}
.blog-article__toc {
  background: #faf9f8;
  border: 0.0625rem solid #e5e5e5;
  border-radius: 0.625rem;
  padding: 1.25rem 1.375rem;
  margin: 0 auto 2.25rem;
  max-width: 47.5rem;
}
@media (min-width: 992px) {
  .blog-article__toc {
    position: sticky;
    top: 6.875rem;
    margin: 0;
    max-height: calc(100vh - 9.375rem);
    overflow-y: auto;
  }
}
.blog-article .blog-article__toc-heading {
  font-family: "InterSemibold", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  color: #7f7f7f;
  text-align: left;
  margin: 0 0 0.875rem;
  padding: 0;
  border-top: 0;
  max-width: none;
}
.blog-article .blog-article__toc-heading:before {
  content: none;
}
.blog-article__toc-list {
  counter-reset: blog-toc;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-article__toc-list li {
  counter-increment: blog-toc;
  margin-bottom: 0.625rem;
}
.blog-article__toc-list li:last-child {
  margin-bottom: 0;
}
.blog-article__toc-list a {
  display: flex;
  gap: 0.5rem;
  font-family: "InterRegular", sans-serif;
  font-size: 0.84375rem;
  line-height: 1.45;
  color: #4d4d4d;
  text-decoration: none;
  transition: ease .2s color;
}
.blog-article__toc-list a:before {
  content: counter(blog-toc) ".";
  font-family: "InterSemibold", sans-serif;
  color: #ed1c24;
  flex: none;
}
.blog-article__toc-list a:hover {
  color: #ed1c24;
}
.blog-article__toc-list a.is-current {
  font-family: "InterSemibold", sans-serif;
  color: #231f20;
}
.blog-article__keywords {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}
.blog-article__keywords li {
  font-family: "InterMedium", sans-serif;
  font-size: 0.71875rem;
  color: #666;
  background: #e5e5e5;
  border-radius: 0.25rem;
  padding: 0.3125rem 0.625rem;
}
.blog-article__back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid #e5e5e5;
}
.blog-article__back a {
  font-family: "InterSemibold", sans-serif;
  font-size: 0.875rem;
  color: #ed1c24;
  text-decoration: none;
}
.blog-article__back a:hover {
  text-decoration: underline;
}

.blog-article .blog-author {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.125rem solid #231f20;
}
.blog-article .blog-author .blog-author__heading {
  font-family: "InterBold", sans-serif;
  font-size: 1.25rem;
  color: #231f20;
  text-align: left;
  letter-spacing: normal;
  margin: 0 0 1.125rem;
  padding: 0;
  border-top: 0;
  max-width: none;
}
.blog-article .blog-author .blog-author__heading:before {
  content: none;
}
.blog-article .blog-author__inner {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media (min-width: 768px) {
  .blog-article .blog-author__inner {
    flex-direction: row;
  }
}
.blog-article .blog-author__photo {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 0.5rem;
  object-fit: cover;
  flex: none;
}
.blog-article .blog-author__name {
  font-family: "InterBold", sans-serif;
  font-size: 1.0625rem;
  color: #231f20;
  margin: 0 0 0.125rem;
}
.blog-article .blog-author__role {
  font-family: "InterSemibold", sans-serif;
  font-size: 0.8125rem;
  color: #ed1c24;
  margin: 0 0 0.75rem;
}
.blog-article .blog-author__bio {
  font-family: "InterRegular", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4d4d4d;
}
.blog-article .blog-author__bio p {
  margin: 0 0 0.75rem;
}
.blog-article .blog-author__bio p:last-child {
  margin-bottom: 0;
}
.blog-article .blog-author__links {
  list-style: none;
  margin: 0.875rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}
.blog-article .blog-author__links a {
  font-family: "InterMedium", sans-serif;
  font-size: 0.84375rem;
  color: #333;
  text-decoration: none;
  border-bottom: 0.0625rem solid #ccc;
}
.blog-article .blog-author__links a:hover {
  color: #ed1c24;
  border-color: #ed1c24;
}

.blog-article .blog-related {
  margin-top: 2.5rem;
  background: #faf9f8;
  border-radius: 0.625rem;
  padding: 1.5rem 1.5rem 1.625rem;
  text-align: center;
}
.blog-article .blog-related .blog-related__heading {
  font-family: "InterSemibold", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  color: #7f7f7f;
  text-align: center;
  margin: 0 0 0.875rem;
  padding: 0;
  border-top: 0;
  max-width: none;
}
.blog-article .blog-related .blog-related__heading:before {
  content: none;
}
.blog-article .blog-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 1.625rem;
}
.blog-article .blog-related__list a {
  font-family: "InterMedium", sans-serif;
  font-size: 0.875rem;
  color: #333;
  text-decoration: none;
}
.blog-article .blog-related__list a:hover {
  color: #ed1c24;
}

.blog-article .blog-article__body {
  font-family: "InterRegular", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: #333;
}
@media (min-width: 768px) {
  .blog-article .blog-article__body {
    font-size: 1.125rem;
  }
}
.blog-article .blog-article__body > *:first-child {
  margin-top: 0;
}
.blog-article .blog-article__body p {
  margin: 0 0 1.375rem;
}
.blog-article .blog-article__body h2 {
  font-family: "InterBold", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #231f20;
  text-align: left;
  letter-spacing: normal;
  margin: 3rem 0 1rem;
  padding: 0;
  border-top: 0;
  max-width: none;
  scroll-margin-top: 6.875rem;
}
.blog-article .blog-article__body h2:before {
  content: none;
}
@media (min-width: 768px) {
  .blog-article .blog-article__body h2 {
    font-size: 1.75rem;
    max-width: none;
  }
}
.blog-article .blog-article__body h3 {
  font-family: "InterSemibold", sans-serif;
  font-size: 1.25rem;
  line-height: 1.35;
  color: #1c2b3a;
  text-align: left;
  margin: 2.125rem 0 0.75rem;
  padding: 0;
  scroll-margin-top: 6.875rem;
}
.blog-article .blog-article__body h4 {
  font-family: "InterSemibold", sans-serif;
  font-size: 1.0625rem;
  color: #231f20;
  margin: 1.625rem 0 0.625rem;
}
.blog-article .blog-article__body ul,
.blog-article .blog-article__body ol {
  margin: 0 0 1.375rem;
  padding-left: 1.375rem;
}
.blog-article .blog-article__body ul li,
.blog-article .blog-article__body ol li {
  margin-bottom: 0.5rem;
}
.blog-article .blog-article__body a {
  color: #ed1c24;
  text-decoration: none;
  border-bottom: 0.0625rem solid rgba(237, 28, 36, 0.35);
  transition: ease .2s all;
}
.blog-article .blog-article__body a:hover {
  border-bottom-color: #ed1c24;
}
.blog-article .blog-article__body strong,
.blog-article .blog-article__body b {
  font-family: "InterSemibold", sans-serif;
  font-weight: normal;
}
.blog-article .blog-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 0.75rem 0;
}
.blog-article .blog-article__body figure {
  margin: 1.875rem 0;
}
.blog-article .blog-article__body figure figcaption {
  font-family: "InterRegular", sans-serif;
  font-size: 0.8125rem;
  color: #7f7f7f;
  margin-top: 0.5rem;
}
.blog-article .blog-article__body blockquote {
  margin: 1.875rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 0.1875rem solid #ed1c24;
  font-family: "InterLight", sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
}
.blog-article .blog-article__body blockquote p:last-child {
  margin-bottom: 0;
}
.blog-article .blog-article__body hr {
  border: 0;
  border-top: 0.0625rem solid #e5e5e5;
  margin: 2.5rem 0;
}

.blog-callout {
  margin: 1.875rem 0;
  padding: 1.25rem 1.375rem;
  background: #faf9f8;
  border-left: 0.1875rem solid #ed1c24;
  border-radius: 0 0.5rem 0.5rem 0;
}
.blog-callout__label {
  display: block;
  font-family: "InterSemibold", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  color: #ed1c24;
  margin-bottom: 0.625rem;
}
.blog-callout p {
  font-family: "InterLight", sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: #4d4d4d;
  margin: 0 0 0.75rem;
}
.blog-callout p:last-child {
  margin-bottom: 0;
}
.blog-callout--green {
  border-left-color: #1d7a4c;
  background: #f2f8f4;
}
.blog-callout--green .blog-callout__label {
  color: #1d7a4c;
}
.blog-callout--blue {
  border-left-color: #17708c;
  background: #f1f7f9;
}
.blog-callout--blue .blog-callout__label {
  color: #17708c;
}
.blog-callout--amber {
  border-left-color: #a85e12;
  background: #fdf6ee;
}
.blog-callout--amber .blog-callout__label {
  color: #a85e12;
}

.blog-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.125rem;
  margin: 2.25rem 0;
  background: #e5e5e5;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (min-width: 576px) {
  .blog-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-stat {
  background: #faf9f8;
  padding: 1.5rem 1.125rem;
  text-align: center;
}
.blog-stat b {
  display: block;
  font-family: "InterBold", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1.1;
  color: #1d7a4c;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .blog-stat b {
    font-size: 2.375rem;
  }
}
.blog-stat span {
  display: block;
  font-family: "InterRegular", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #666;
}
.blog-stat--accent b {
  color: #ed1c24;
}

.blog-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin: 2.25rem 0;
}
@media (min-width: 576px) {
  .blog-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-pillar {
  padding: 1.25rem 1.125rem;
  background: #fff;
  border: 0.0625rem solid #e5e5e5;
  border-top: 0.25rem solid #1c2b3a;
  border-radius: 0 0 0.5rem 0.5rem;
}
.blog-pillar b {
  display: block;
  font-family: "InterSemibold", sans-serif;
  font-weight: normal;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: #231f20;
  margin-bottom: 0.5rem;
}
.blog-pillar span {
  display: block;
  font-family: "InterRegular", sans-serif;
  font-size: 0.84375rem;
  line-height: 1.6;
  color: #666;
}
.blog-pillar:nth-child(2) {
  border-top-color: #17708c;
}
.blog-pillar:nth-child(3) {
  border-top-color: #1d7a4c;
}
.blog-pillar:nth-child(4) {
  border-top-color: #a85e12;
}

.blog-article__body table,
.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: "InterRegular", sans-serif;
  font-size: 0.90625rem;
  line-height: 1.6;
  display: block;
  overflow-x: auto;
  white-space: normal;
}
@media (min-width: 768px) {
  .blog-article__body table,
  .blog-table {
    display: table;
    overflow-x: visible;
  }
}
.blog-article__body table thead th,
.blog-table thead th {
  background: #1c2b3a;
  color: #fff;
  font-family: "InterSemibold", sans-serif;
  font-weight: normal;
  text-align: left;
  padding: 0.75rem 0.875rem;
  font-size: 0.8125rem;
  letter-spacing: 0.01875rem;
}
.blog-article__body table th,
.blog-article__body table td,
.blog-table th,
.blog-table td {
  border: 0.0625rem solid #e5e5e5;
  padding: 0.75rem 0.875rem;
  vertical-align: top;
  color: #4d4d4d;
}
.blog-article__body table tbody tr:nth-child(even) td,
.blog-table tbody tr:nth-child(even) td {
  background: #fbfbfc;
}
.blog-article__body table tbody th,
.blog-article__body table tbody td:first-child,
.blog-table tbody th,
.blog-table tbody td:first-child {
  font-family: "InterSemibold", sans-serif;
  color: #231f20;
}

.blog-cta {
  margin: 2.25rem 0;
  padding: 1.625rem 1.5rem;
  background: #231f20;
  border-radius: 0.625rem;
  text-align: center;
}
.blog-cta p {
  font-family: "InterMedium", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 1.125rem;
}
.blog-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ed1c24;
  color: #fff;
  font-family: "InterSemibold", sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 1.625rem;
  border-radius: 0.375rem;
  text-decoration: none;
  border: 0;
  transition: ease .3s all;
}
.blog-cta__btn:after {
  content: '→';
}
.blog-cta__btn:hover {
  background: #d1000a;
  color: #fff;
  border: 0;
}
