/* Shared layout used on every page */
.section-heading { display:flex; align-items:center; gap:12px; justify-content:center; }
.section-heading .line { width:4px; height:24px; background-color:var(--primary); }
.section-heading h2 { font-size:28px; font-weight:var(--font-weight-500); line-height:var(--line-height); color:var(--black); text-transform:uppercase; }
.marquee-wrapper { background:var(--primary); overflow:hidden; padding:15px 0; border-radius:10px; margin:112px 30px 0; height:50px; }
.marquee { display:flex; }
.marquee-content { display:flex; white-space:nowrap; }
.marquee-item { padding-right:23px; font-size:var(--font-size-xm); font-weight:var(--font-weight-700); color:var(--white); display:flex; align-items:center; font-family:Arial, Helvetica, sans-serif; }
.marquee-item span { margin-left:23px; }
.top { margin-top:90px; }

/* Sitewide project CTA — portfolio pages do not load blog-detail.css */
.cta-section {
  padding: var(--margin) 0px;
}
.cta {
  text-align: center;
  padding: 80px 40px;
  border-radius: 20px;
  background-image: url("../img/cta-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 628px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cta-tag {
  display: inline-block;
  font-size: var(--font-size-md) !important;
  font-weight: var(--font-weight-500) !important;
  line-height: 100% !important;
  margin: 0px !important;
}
.cta-section h2,
.cta-section .cta-heading,
p.cta-heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-700);
  line-height: 100%;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 40px;
}
.cta-section p {
  font-size: var(--font-size-xm);
  font-weight: var(--font-weight-500);
  line-height: var(--line-height);
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1400px;
}
.btn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
