/* ==========================================================================
   Project Content Widgets (Elementor blocks for single project pages)
   Classes: Arranca Elementor widgets for the_content() area
   ========================================================================== */

/* ---------- Challenge & Solution (2-col) ---------- */
.challenge-solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .challenge-solution__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.challenge-solution__heading {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: var(--font-weight-normal);
  margin-bottom: 0.5rem;
}

.challenge-solution__subheading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.challenge-solution__content p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.challenge-solution__content p + p {
  margin-top: 1.5rem;
}

/* ---------- Project About (centered) ---------- */
.project-about__inner {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.project-about__heading {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: var(--font-weight-normal);
  margin-bottom: 1.5rem;
}

.project-about__content p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.project-about__content p + p {
  margin-top: 1.5rem;
}

/* ---------- Key Features (3-col grid) ---------- */
.project-features__heading {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: var(--font-weight-normal);
  text-align: center;
  margin-bottom: 3rem;
}

.project-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .project-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-features__item {
  text-align: center;
}

.project-features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  background-color: rgba(173, 40, 0, 0.1);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.project-features__title {
  font-weight: var(--font-weight-semibold);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.project-features__desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ---------- Project Testimonial ---------- */
.project-testimonial__inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.project-testimonial__icon {
  color: rgba(173, 40, 0, 0.2);
  margin-inline: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.project-testimonial__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.project-testimonial__author {
  font-weight: var(--font-weight-semibold);
}

.project-testimonial__role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ---------- Project CTA (centered) ---------- */
.project-cta__inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.project-cta__heading {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: var(--font-weight-normal);
  margin-bottom: 1rem;
}

.project-cta__subheading {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ---------- 3D Model Viewer (full-width, template-rendered) ---------- */
.model-viewer-full {
  position: relative;
  width: 100%;
  height: 100vh;
}

.model-viewer__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
