/*
  Colors
*/
/*
  Width
*/
/*
  Space
*/
/*
  Colors
*/
/*
  Width
*/
/*
  Space
*/
/* ============================
   ToC Navbar
   ============================ */
.blog-toc {
  position: relative;
  background: #e22927;
  padding: 34px 16px;
  width: 100%;
  text-align: left;
}
.blog-toc__container {
  position: relative;
  width: 100%;
  max-width: 1124px;
  margin-inline: auto;
  overflow: hidden;
  z-index: 0;
}
.blog-toc__container::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 75px;
  background: linear-gradient(to left, #e22927 23%, rgba(226, 41, 39, 0));
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.2s;
}
.blog-toc__container[data-toc-end]::after {
  opacity: 0;
}
.blog-toc__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
  min-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.blog-toc__inner::-webkit-scrollbar {
  display: none;
}
.blog-toc__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.blog-toc__item:hover {
  opacity: 0.8;
}
.blog-toc__number {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  letter-spacing: 6px;
  line-height: normal;
  white-space: nowrap;
}
.blog-toc__title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: normal;
  max-width: 160px;
}

/* ============================
   Author Card
   ============================ */
.author-card {
  padding: 0 0 64px 0;
  margin: 0 auto;
  text-align: left;
}
.author-card .container {
  width: calc(100% - 24px * 2);
  margin-inline: auto;
  max-width: 792px;
  padding: 0;
}
.author-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.author-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8E2D7;
  padding: 24px;
  min-height: 100px;
}
.author-card__logo img {
  width: 91px;
  height: auto;
}
.author-card__content {
  position: relative;
  flex: 1;
  background: #E8E2D7;
  padding: 24px;
  min-height: 100px;
}
.author-card__text {
  padding-right: 32px;
}
.author-card__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #e22927;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
}
.author-card__description {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
  max-width: 513px;
  margin: 0;
}
.author-card__linkedin {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 14px;
  height: 14px;
}
@media only screen and (min-width: 768px) {
  .author-card__link {
    flex-direction: row;
    gap: 2px;
  }
  .author-card__logo {
    width: 181px;
    min-height: 160px;
    flex-shrink: 0;
    padding: 0;
  }
  .author-card__content {
    padding: 37px 43px;
    min-height: 160px;
  }
  .author-card__linkedin {
    right: 39px;
    bottom: 25px;
  }
}
@media only screen and (min-width: 1280px) {
  .blog-toc__container::after {
    width: 150px;
  }
}