@charset "UTF-8";
.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-wrap {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* _breakpoints.scss */
/* Fluid type + spacing */
:root {
  --space: clamp(12px, 1.8vw, 20px);
}

body {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

.btn, .chip {
  min-height: 44px;
  padding: 10px 16px;
}

/* Media helpers */
.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aspect-16x9 {
  aspect-ratio: 16/9; /* safe fallback below */
}
@supports not (aspect-ratio: 16/9) {
  .aspect-16x9 {
    position: relative;
    padding-top: 56.25%;
  }
  .aspect-16x9 > * {
    position: absolute;
    inset: 0;
  }
}

/* Shared sections used on single posts */
/* components/_cover.scss */
.cover {
  position: relative;
  /* keeps pseudo behind content */
  color: #1a2d36;
  /* Bottom “tray” curve */
}
.cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px; /* avoid hairline gap */
  height: 80px;
  background: #fff;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
  z-index: 0; /* sits under text */
}
.cover {
  /* Image controls height — no vh anywhere */
}
.cover__media {
  position: relative;
  z-index: 0;
}
.cover__media img {
  display: block;
  width: 100%;
  height: auto; /* natural aspect controls section height */
  object-fit: cover; /* protects from tiny rounding mismatch */
}
.cover__media {
  /* optional soft darken gradient for legibility */
}
.cover__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(8deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 35%);
  pointer-events: none;
}
.cover__content {
  position: absolute;
  inset: 0; /* overlay on top of the image */
  display: grid;
  align-content: start;
  padding-top: clamp(32px, 8vw, 72px);
  padding-bottom: clamp(32px, 8vw, 72px);
  z-index: 1; /* above gradient */
  /* simple two-column when wide; stacks on small screens */
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}
@media (max-width: 1024px) {
  .cover__content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cover {
  /* Eyebrow chip */
}
.cover__eyebrow {
  grid-column: 1/-1;
  align-self: start;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A2D36;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
  border-radius: 999px;
  padding: 6px 20px;
  justify-self: start;
  width: max-content;
  margin-bottom: clamp(8px, 1.6vw, 12px);
}
.cover {
  /* Breadcrumb chips (Solutions cover) */
}
.cover__breadcrumbs {
  grid-column: 1/-1;
  align-self: start;
  display: inline-flex;
  align-items: center;
  padding: 5px 21px;
  gap: 10px;
  margin-bottom: clamp(8px, 1.6vw, 12px);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  width: max-content;
}
.cover__crumb {
  display: inline-flex;
  align-items: center;
  padding: 8px 21px 8px 40px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.14) url(../images/breadcrumb-arrow.svg) no-repeat;
  background-position: 20px 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 12px;
  color: #1A2D36;
}
.cover__crumb--current {
  background: none;
  color: #1A2D36;
  border-radius: 0;
  border: 0;
  padding-left: 21px;
}
.cover__title {
  grid-column: 1/2;
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  font-size: 3.125rem;
  color: #1A2D36;
  max-width: 764px;
}
.cover__title .cover__accent,
.cover__title span {
  color: #02AE54; /* your green */
}
.cover__note {
  grid-column: 2/3;
  align-self: start;
  margin: 0;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  max-width: 430px;
  color: rgba(26, 45, 54, 0.6);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .cover__note {
    grid-column: 1/-1;
    max-width: 60ch;
  }
}
.cover {
  /* Small pill at bottom of hero (Solutions cover) */
}
.cover__badge {
  position: absolute;
  left: 50%;
  bottom: 182px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 22px;
  max-width: 600px;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4;
  z-index: 2;
}
@media (max-width: 768px) {
  .cover__badge {
    bottom: 24px;
    padding-inline: 14px;
    margin-inline: 16px;
    max-width: calc(100% - 32px);
  }
}
.cover__badge-chip {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover__badge-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cover__badge-chip--image {
  background: transparent;
}
.cover__badge-chip-text {
  display: inline-block;
}
.cover__badge-text {
  margin: 0;
  max-width: 420px;
  text-align: center;
}

.single-post .cover__title,
.single-casestudies .cover__title {
  color: #fff;
}
.single-post .cover__action img,
.single-casestudies .cover__action img {
  width: 42px;
  height: 36px;
  display: block;
}
.single-post .cover__actions,
.single-casestudies .cover__actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  left: -100px;
}
.single-post .cover__actions .cover__share-popover img,
.single-casestudies .cover__actions .cover__share-popover img {
  width: 24px;
  height: 24px;
  display: block;
}
.single-post .cover__action--trigger,
.single-casestudies .cover__action--trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.single-post .cover__share-popover,
.single-casestudies .cover__share-popover {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.single-post .cover__share-popover a,
.single-casestudies .cover__share-popover a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.single-post .cover__actions:hover .cover__share-popover,
.single-post .cover__actions:focus-within .cover__share-popover,
.single-casestudies .cover__actions:hover .cover__share-popover,
.single-casestudies .cover__actions:focus-within .cover__share-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

/* Blog-specific sections */
.blog-hero {
  padding: 4rem 0 2.5rem;
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 3rem 0 2rem;
  }
}

.blog-hero__inner {
  max-width: 720px;
}

/* Heading */
.blog-hero__title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--color-text);
}

/* Highlight */
.blog-hero__title-highlight {
  color: var(--color-accent);
}

.blog-article {
  padding: var(--space-xxl) 0;
}
.blog-article__wrap {
  background: #fff;
  border-radius: var(--radius-lg);
}
.blog-article__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  margin-top: 100px;
}
.blog-article__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.blog-article__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-article__author-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 2px;
  margin-left: 10px;
}
.blog-article__author-name {
  font-weight: 700;
}
.blog-article__author-meta {
  color: #1A2D36;
}
.blog-article__content {
  line-height: 1.7;
  margin-top: 30px;
  margin-bottom: 150px;
}
.blog-article__content h2,
.blog-article__content h3 {
  margin-top: var(--space-xl);
}
.blog-article__content p {
  margin-bottom: var(--space-md);
  color: #1A2D36;
  font-size: 1.375rem;
  line-height: 29px;
  font-weight: 400;
}
.blog-article__content figure {
  margin: var(--space-xl) 0;
}
.blog-article__content img {
  border-radius: var(--radius-md);
}
.blog-article__content figcaption {
  margin-top: var(--space-xs);
  text-align: center;
  font-size: var(--text-sm);
  opacity: 0.65;
}

/* Page-level glue */
.single-post .cover {
  margin-bottom: -80px;
}

/*# sourceMappingURL=single.css.map */
