/* Fastcom Editorial Blog */
.fastcom-blog-archive,
.single-post .content-area,
.blog .content-area,
.archive.category .content-area {
  --fc-ink: #1a1f26;
  --fc-muted: #5c6570;
  --fc-line: #e6e9ee;
  --fc-accent: #0b5fff;
  --fc-paper: #f7f8fa;
  --fc-max: 720px;
}

.fastcom-blog-hero {
  background: linear-gradient(180deg, #f3f5f8 0%, #ffffff 100%);
  border-bottom: 1px solid var(--fc-line);
  padding: 48px 0 40px;
  margin-bottom: 36px;
}

.fastcom-blog-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.fastcom-blog-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.fastcom-blog-hero h1,
.fastcom-blog-hero .fastcom-blog-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--fc-ink);
  margin: 0 0 12px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.fastcom-blog-hero__lead {
  max-width: 560px;
  color: var(--fc-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.fastcom-blog-grid {
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.fastcom-blog-card {
  grid-column: span 4;
  background: #fff;
  border: 1px solid var(--fc-line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.fastcom-blog-card:hover {
  border-color: #c9d2de;
  transform: translateY(-2px);
}

.fastcom-blog-card--featured {
  grid-column: span 8;
}

.fastcom-blog-card__media {
  aspect-ratio: 16 / 10;
  background: var(--fc-paper);
  overflow: hidden;
}

.fastcom-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fastcom-blog-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.fastcom-blog-card__meta {
  font-size: 12px;
  color: var(--fc-muted);
  letter-spacing: 0.02em;
}

.fastcom-blog-card__meta a {
  color: var(--fc-accent);
  text-decoration: none;
  font-weight: 600;
}

.fastcom-blog-card h2,
.fastcom-blog-card h2 a {
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--fc-ink);
  margin: 0;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.fastcom-blog-card--featured h2 {
  font-size: 1.65rem;
}

.fastcom-blog-card__excerpt {
  color: var(--fc-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.fastcom-blog-card__footer {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.fastcom-blog-card__footer a {
  color: var(--fc-ink);
  text-decoration: none;
  border-bottom: 1px solid #c5ccd6;
}

.fastcom-blog-card__footer a:hover {
  border-bottom-color: var(--fc-accent);
  color: var(--fc-accent);
}

/* Single article */
.single-post .fastcom-article {
  max-width: var(--fc-max);
  margin: 0 auto 80px;
  padding: 8px 24px 0;
}

.fastcom-article__kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.fastcom-article__kicker a {
  color: inherit;
  text-decoration: none;
}

.single-post .fastcom-article h1.entry-title,
.fastcom-article__title {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--fc-ink);
  margin: 0 0 18px;
  font-weight: 700;
}

.fastcom-article__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--fc-muted);
  font-size: 14px;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--fc-line);
}

.fastcom-article__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #2a313a;
}

.fastcom-article__content > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #3a424d;
}

.fastcom-article__content h2 {
  font-size: 1.45rem;
  line-height: 1.3;
  margin: 2.2em 0 0.7em;
  color: var(--fc-ink);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.fastcom-article__content h3 {
  font-size: 1.15rem;
  margin: 1.8em 0 0.55em;
  color: var(--fc-ink);
  font-weight: 650;
}

.fastcom-article__content p,
.fastcom-article__content ul,
.fastcom-article__content ol {
  margin: 0 0 1.25em;
}

.fastcom-article__content ul,
.fastcom-article__content ol {
  padding-left: 1.25em;
}

.fastcom-article__content li {
  margin-bottom: 0.45em;
}

.fastcom-article__content a {
  color: var(--fc-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.fastcom-pullquote {
  margin: 2em 0;
  padding: 1.25em 1.4em;
  border-left: 3px solid var(--fc-accent);
  background: var(--fc-paper);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--fc-ink);
  font-weight: 500;
}

.fastcom-article-cta,
.fastcom-article__cta {
  margin: 2.5em 0 1em;
  padding: 1.5em 1.6em;
  background: #0f1720;
  color: #f4f6f8;
  border-radius: 4px;
}

.fastcom-article-cta strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.55em;
  color: #fff;
}

.fastcom-article-cta p,
.fastcom-article__cta p {
  margin: 0 0 0.85em;
  color: #d7dde5;
  line-height: 1.55;
}

.fastcom-article-cta__btn,
.fastcom-article__cta a {
  display: inline-block;
  color: #fff !important;
  background: var(--fc-accent);
  padding: 0.7em 1.15em;
  border-radius: 3px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.fastcom-article-cta__btn:hover,
.fastcom-article__cta a:hover {
  filter: brightness(1.05);
}

body.fastcom-blog .stm_sidebar,
body.fastcom-blog #sidebar,
body.home.blog .sidebar {
  display: none !important;
}

body.fastcom-blog .content,
body.fastcom-blog .content-area,
body.fastcom-blog .site-content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

.fastcom-related {
  max-width: var(--fc-max);
  margin: 0 auto 72px;
  padding: 0 24px;
  border-top: 1px solid var(--fc-line);
  padding-top: 36px;
}

.fastcom-related h3 {
  font-size: 1.1rem;
  margin: 0 0 18px;
  color: var(--fc-ink);
}

.fastcom-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.fastcom-related__list a {
  color: var(--fc-ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.fastcom-related__list a:hover {
  color: var(--fc-accent);
  border-bottom-color: var(--fc-accent);
}

.fastcom-related__list span {
  display: block;
  color: var(--fc-muted);
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
}

/* Quiet down theme chrome on blog */
body.fastcom-blog .hfe-page-title,
body.fastcom-blog .elementor-widget-page-title,
body.fastcom-blog .consulting-custom-title,
body.blog .hfe-page-title,
body.blog .elementor-widget-page-title,
body.single-post .hfe-page-title,
body.single-post .elementor-widget-page-title,
body.fastcom-blog .stm_post_info,
body.single-post .stm_post_info,
body.single-post .stm_post_comments,
body.single-post .comments-area,
body.single-post .comment-respond,
body.single-post .comments_num {
  display: none !important;
}

.blog .sidebar,
.archive.category .sidebar,
.single-post .sidebar,
.blog .stm_sidebar,
.single-post .stm_sidebar {
  display: none !important;
}

.blog .content-area,
.archive.category .content-area,
.single-post .content-area {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 991px) {
  .fastcom-blog-card,
  .fastcom-blog-card--featured {
    grid-column: span 12;
  }
}
