/* Blog Post Specific Styles */
.blog-post {
  max-width: 850px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  background: #1a1d26;
  color: #e0e0e0;
}

.blog-post__header {
  margin-bottom: 5rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #2a2f3a;
}

.blog-post__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: #9db4d3;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.blog-post__category {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-post__tag {
  background: linear-gradient(135deg, #4a5568 0%, #3a4558 100%);
  color: #e0e0e0;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.blog-post__tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 180, 211, 0.3);
}

.blog-post__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.blog-post__excerpt {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #b8b8b8;
  margin-bottom: 2.5rem;
}

.blog-post__author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2a2f3a 0%, #22262f 100%);
  border-radius: 16px;
  margin-bottom: 3rem;
  border: 1px solid #3a4050;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.blog-post__author:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.blog-post__author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9db4d3;
}

.blog-post__author-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-weight: 600;
}

.blog-post__author-info p {
  font-size: 0.95rem;
  color: #9db4d3;
  margin: 0;
}

.blog-post__featured-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.blog-post__content {
  font-size: 1.2rem;
  line-height: 2.0;
  color: #d5d5d5;
}

.blog-post__content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 6rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  color: #ffffff;
  line-height: 1.3;
  background: linear-gradient(135deg, #22262f 0%, #1a1d26 100%);
  border-left: 5px solid #9db4d3;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.3px;
}

.blog-post__content h3 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
  letter-spacing: -0.2px;
}

.blog-post__content h4 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #9db4d3;
  letter-spacing: -0.1px;
}

.blog-post__content p {
  margin-bottom: 2rem;
}

.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.blog-post__content li {
  margin-bottom: 1rem;
  line-height: 2.0;
}

.blog-post__content a {
  color: #9db4d3;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.2s ease;
}

.blog-post__content a:hover {
  color: #c5d5e8;
  text-decoration-thickness: 2px;
}

.blog-post__content strong {
  color: #ffffff;
  font-weight: 600;
}

.blog-post__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 3rem 0;
  background: #22262f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.blog-post__content table th,
.blog-post__content table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid #3a4050;
}

.blog-post__content table th {
  background: linear-gradient(135deg, #303a4d 0%, #2a3444 100%);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.blog-post__content table tr {
  transition: all 0.2s ease;
}

.blog-post__content table tbody tr:nth-child(odd) {
  background: #22262f;
}

.blog-post__content table tbody tr:nth-child(even) {
  background: #1e2129;
}

.blog-post__content table tbody tr:hover {
  background: #2a2f3a;
}

.blog-post__content table tr:last-child td {
  border-bottom: none;
}

.blog-post__content hr {
  border: none;
  border-top: 1px solid #2a2f3a;
  margin: 5rem 0;
  position: relative;
}

.blog-post__content hr::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #9db4d3, transparent);
}

.blog-post__toc {
  background: linear-gradient(135deg, #22262f 0%, #1e2129 100%);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 5rem;
  border-left: 5px solid #9db4d3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.blog-post__toc h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.blog-post__toc ul {
  list-style: none;
  padding: 0;
}

.blog-post__toc li {
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #2a2f3a;
  transition: all 0.2s ease;
}

.blog-post__toc li:last-child {
  border-bottom: none;
}

.blog-post__toc li:hover {
  padding-left: 1rem;
  border-left: 3px solid #9db4d3;
}

.blog-post__toc a {
  color: #b8b8b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: block;
}

.blog-post__toc a:hover {
  color: #9db4d3;
}

.blog-post__cta {
  background: linear-gradient(135deg, #303a4d 0%, #2a2f3a 100%);
  padding: 4rem 3rem;
  border-radius: 16px;
  text-align: center;
  margin: 5rem 0;
  border: 2px solid #4a5568;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.blog-post__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9db4d3, #c5d5e8, #9db4d3);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.blog-post__cta h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.blog-post__cta p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #c8c8c8;
  line-height: 1.8;
}

.blog-post__cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #9db4d3 0%, #b8c9dc 100%);
  color: #000000 !important;
  padding: 1.25rem 3rem;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(157, 180, 211, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.outro__button.button {
  color: #000000 !important;
  background: linear-gradient(135deg, #9db4d3 0%, #b8c9dc 100%) !important;
}

.blog-post__cta-button:hover {
  background: linear-gradient(135deg, #b8c9dc 0%, #d0dce8 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(157, 180, 211, 0.5);
}

.blog-post__quick-answer {
  background: linear-gradient(135deg, #1e3a5f 0%, #2a2f3a 100%);
  padding: 3rem;
  border-radius: 16px;
  margin: 4rem 0;
  border: 2px solid #3a4f6f;
  border-left: 5px solid #9db4d3;
  box-shadow: 0 6px 20px rgba(157, 180, 211, 0.2);
}

.blog-post__quick-answer h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.blog-post__quick-answer p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.blog-post__quick-answer ul {
  margin-left: 1.5rem;
}

.blog-post__quick-answer li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

/* Blockquote styling */
.blog-post__content blockquote {
  background: #22262f;
  border-left: 4px solid #9db4d3;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-style: italic;
  color: #c8c8c8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Code styling */
.blog-post__content code {
  background: #22262f;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  color: #9db4d3;
  border: 1px solid #3a4050;
}

/* Sticky bottom CTA bar */
.blog-post__sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #22262f 0%, #1a1d26 100%);
  border-top: 2px solid #3a4f6f;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transition: bottom 0.4s ease;
}

.blog-post__sticky-cta.visible {
  bottom: 0;
}

.blog-post__sticky-cta p {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.blog-post__sticky-cta a {
  display: inline-block;
  background: linear-gradient(135deg, #9db4d3 0%, #b8c9dc 100%);
  color: #000000 !important;
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.blog-post__sticky-cta a:hover {
  background: linear-gradient(135deg, #b8c9dc 0%, #d0dce8 100%);
  transform: translateY(-2px);
}

.blog-post__sticky-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.blog-post__sticky-close:hover {
  color: #e0e0e0;
}

/* Key takeaway boxes */
.blog-post__takeaway {
  background: linear-gradient(135deg, #1e2a3a 0%, #22262f 100%);
  border-left: 4px solid #9db4d3;
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
  margin: 2.5rem 0 3rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #c5d5e8;
  line-height: 1.7;
}

.blog-post__takeaway strong {
  color: #9db4d3;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.4rem;
}

/* Workflow card styling */
.workflow-card {
  background: linear-gradient(135deg, #22262f 0%, #1e2129 100%);
  border: 1px solid #3a4050;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9db4d3, #5b9bd5, #9db4d3);
}

.workflow-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #9db4d3 0%, #5b9bd5 100%);
  color: #1a1d26;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(157, 180, 211, 0.3);
}

.workflow-card__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.workflow-card__subtitle {
  font-size: 1rem;
  color: #9db4d3;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.workflow-card__body p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
  color: #d5d5d5;
}

.workflow-card__body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.workflow-card__body li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
  color: #d5d5d5;
}

.workflow-card__result {
  background: linear-gradient(135deg, #1e3a5f 0%, #22262f 100%);
  border: 1px solid #3a4f6f;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.workflow-card__result-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9db4d3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.workflow-card__result p {
  color: #c5d5e8;
  font-weight: 500;
  margin: 0;
  line-height: 1.7;
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #9db4d3, #5b9bd5);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Breadcrumb */
.blog-post__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.blog-post__breadcrumb a {
  color: #9db4d3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.blog-post__breadcrumb a:hover {
  color: #c5d5e8;
}

.blog-post__breadcrumb span {
  color: #666;
}

/* Tool stack pills */
.workflow-card__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3a4050;
}

.workflow-card__tools-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9db4d3;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-bottom: 0.25rem;
}

.workflow-card__tool {
  background: #1a1d26;
  color: #b8b8b8;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #3a4050;
  white-space: nowrap;
}

/* Cost box */
.blog-post__cost-box {
  background: linear-gradient(135deg, #2a1520 0%, #22262f 100%);
  border: 2px solid #5a3040;
  border-left: 5px solid #d47a8a;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 4rem 0;
  box-shadow: 0 6px 20px rgba(212, 122, 138, 0.15);
}

.blog-post__cost-box h3 {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.blog-post__cost-box p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.blog-post__cost-box .cost-math {
  background: #1a1d26;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
  color: #d47a8a;
  line-height: 2;
}

/* Share buttons */
.blog-post__share {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.blog-post__share-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post__share a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #3a4050;
  color: #e0e0e0;
  background: #22262f;
}

.blog-post__share a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: #9db4d3;
  color: #9db4d3;
}

/* Lead magnet CTA */
.blog-post__lead-magnet {
  background: linear-gradient(135deg, #1e2a3a 0%, #22262f 100%);
  border: 2px dashed #4a5568;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin: 4rem 0;
}

.blog-post__lead-magnet h4 {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-post__lead-magnet p {
  font-size: 1rem;
  color: #b8b8b8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.blog-post__lead-magnet a {
  display: inline-block;
  background: #22262f;
  color: #9db4d3;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid #9db4d3;
  transition: all 0.3s ease;
}

.blog-post__lead-magnet a:hover {
  background: #9db4d3;
  color: #1a1d26;
  transform: translateY(-2px);
}

/* TL;DR box */
.blog-post__tldr {
  background: linear-gradient(135deg, #1a2a1a 0%, #22262f 100%);
  border: 2px solid #3a5a3a;
  border-left: 5px solid #7ab87a;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 4rem 0;
}

.blog-post__tldr h3 {
  font-size: 1.4rem;
  color: #7ab87a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post__tldr ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-post__tldr li {
  margin-bottom: 0.6rem;
  line-height: 1.8;
  color: #d5d5d5;
}

.blog-post__tldr p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Smooth scroll for TOC */
html {
  scroll-behavior: smooth;
}

/* Key Stats box */
.blog-post__stats-box {
  background: linear-gradient(135deg, #1a2535 0%, #22262f 100%);
  border: 2px solid #3a4f6f;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 4rem 0;
}

.blog-post__stats-box h3 {
  font-size: 1.4rem;
  color: #9db4d3;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post__stats-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-post__stats-box li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #2a3444;
  line-height: 1.7;
  color: #d5d5d5;
}

.blog-post__stats-box li:last-child {
  border-bottom: none;
}

.blog-post__stats-box .stat-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1em;
}

.blog-post__stats-box .stat-source {
  color: #888;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Related Posts */
.blog-post__related {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 2px solid #2a2f3a;
}

.blog-post__related h3 {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2rem;
}

.blog-post__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.blog-post__related-card {
  background: linear-gradient(135deg, #22262f 0%, #1e2129 100%);
  border: 1px solid #3a4050;
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-post__related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: #9db4d3;
}

.blog-post__related-card span:first-child {
  font-size: 0.7rem;
  color: #9db4d3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post__related-card span:nth-child(2) {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.blog-post__related-card span:last-child {
  font-size: 0.8rem;
  color: #888;
  margin-top: auto;
}

/* About Author (bottom) */
.blog-post__author-full {
  background: linear-gradient(135deg, #22262f 0%, #1e2129 100%);
  border: 1px solid #3a4050;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.blog-post__author-full img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9db4d3;
  flex-shrink: 0;
}

.blog-post__author-full h4 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-post__author-full p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-post__author-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-post__author-social a {
  color: #9db4d3;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border: 1px solid #3a4050;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.blog-post__author-social a:hover {
  background: #9db4d3;
  color: #1a1d26;
  border-color: #9db4d3;
}

/* Recommended badge */
.recommended-badge {
  display: inline-block;
  background: linear-gradient(135deg, #9db4d3 0%, #5b9bd5 100%);
  color: #1a1d26;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-post {
    padding: 4rem 1.5rem;
  }

  .blog-post__title {
    font-size: 2.2rem;
  }

  .blog-post__header {
    margin-bottom: 3rem;
  }

  .blog-post__content h2 {
    font-size: 1.9rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 1.5rem 1.5rem;
  }

  .blog-post__content h3 {
    font-size: 1.6rem;
    margin-top: 3rem;
  }

  .blog-post__content {
    font-size: 1.1rem;
    line-height: 1.9;
  }

  .blog-post__content p {
    margin-bottom: 1.7rem;
  }

  .blog-post__content table {
    font-size: 0.9rem;
  }

  .blog-post__content table th,
  .blog-post__content table td {
    padding: 1rem;
  }

  .blog-post__toc {
    padding: 2rem 1.5rem;
  }

  .blog-post__cta {
    padding: 3rem 2rem;
  }

  .blog-post__quick-answer {
    padding: 2rem 1.5rem;
  }

  .blog-post__content hr {
    margin: 4rem 0;
  }

  .blog-post__sticky-cta p {
    display: none;
  }

  .blog-post__sticky-cta {
    gap: 0.75rem;
  }

  .workflow-card {
    padding: 2rem 1.5rem;
  }

  .workflow-card__title {
    font-size: 1.4rem;
  }

  .blog-post__author-full {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-post__author-social {
    justify-content: center;
  }

  .blog-post__related-grid {
    grid-template-columns: 1fr;
  }
}
