/* Brochure Cards Styles */
.brochure-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.brochure-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border, #eee);
}

.brochure-card:hover {
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.brochure-card-image {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 18, 0.02);
}

.brochure-card-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

.brochure-card-with-content {
  display: flex;
  flex-direction: column;
}

.brochure-card-content {
  padding: 24px;
  text-align: center;
}

.brochure-card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.brochure-card-desc {
  font-size: 1em;
  color: var(--secondary, #666);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .brochure-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brochure-card-image {
    padding: 15px;
  }

  .brochure-card-image img {
    max-height: 250px;
  }

  .brochure-card-content {
    padding: 20px;
  }

  .brochure-card-title {
    font-size: 1.2em;
  }
}

/* Strategy Builder Two Column Layout */
.strategy-builder-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.strategy-builder-left {
  position: sticky;
  top: 100px;
}

.strategy-builder-right {
  padding-left: 20px;
}

.strategy-builder-right .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strategy-builder-right .feature-list li {
  padding: 0.75rem 0;
  font-size: 1.05em;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.strategy-builder-right .feature-list li i {
  color: var(--primary, #FFCD4D);
  margin-top: 0.2em;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .strategy-builder-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .strategy-builder-left {
    position: static;
  }

  .strategy-builder-right {
    padding-left: 0;
  }
}

/* Footer site info (business reg, privacy, no-tracking, anti-harvest) */
.site-footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer-business {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  align-items: baseline;
  opacity: 0.85;
}

.site-footer-business strong {
  font-weight: 600;
  margin-right: 4px;
}

.site-footer-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
}

.site-footer-links a:hover {
  opacity: 1;
}

.site-footer-notice {
  margin: 0;
  font-size: 12px;
  opacity: 0.6;
  max-width: 1100px;
}

.site-footer-info .copyright-text {
  margin-top: 6px;
  opacity: 0.7;
}

/* Active language switcher */
.language .language-link.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Privacy / legal pages */
.legal-page {
  padding: 140px 0 80px;
  font-size: 15px;
  line-height: 1.7;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 28px 0 8px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
}

.legal-page ul {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-page .legal-meta {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 28px;
}

/* Hero readability: fuse dark backgrounds with a white wash and switch hero text to dark.
   Overrides `.hero-area .section-title { color: var(--white) }` from master-details.css —
   higher specificity by chaining with `.work-details-area`. */
.work-details-area .hero-area .area-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.86) 0%,
    rgba(255, 255, 255, 0.62) 55%,
    rgba(255, 255, 255, 0.78) 100%
  );
  pointer-events: none;
}

.work-details-area .hero-area .area-bg img {
  filter: saturate(0.85);
}

.work-details-area .hero-area .section-title,
.work-details-area .hero-area .work-meta,
.work-details-area .hero-area .work-meta h3 {
  color: #121212;
}

.work-details-area .hero-area .section-title span {
  background-color: #121212;
}

/* Inline blog cross-link block on product/research pages */
.related-posts {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid currentColor;
  background: rgba(127, 127, 127, 0.06);
  border-radius: 0 6px 6px 0;
}

.related-posts__heading {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 10px;
}

.related-posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-posts li {
  padding: 4px 0;
  font-size: 0.95rem;
}

.related-posts li a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
