/* Assessment CTA CSS Styles */

.c-assessment-cta {
  width: 100%;
  background-color: #0c2340; /* Dark Navy Blue */
  padding: 48px 0;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  font-family: var(--font-family, sans-serif);
  margin-top: 40px;
}

.c-assessment-cta__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Avatar circle designed to bleed/hang slightly outside top/bottom borders */
.c-assessment-cta__avatar-wrap {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: -64px;
  margin-bottom: -64px;
  z-index: 3;
}

.c-assessment-cta__avatar-circle {
  width: 180px;
  height: 180px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.c-assessment-cta__avatar-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

/* Middle: Text content */
.c-assessment-cta__body {
  flex: 1;
  text-align: left;
  color: #ffffff;
}

.c-assessment-cta__title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.35;
}

.c-assessment-cta__subtitle {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
}

/* Right Side: CTA Button */
.c-assessment-cta__action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.c-assessment-cta__btn {
  background-color: #00b050; /* Green Button */
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.c-assessment-cta__btn:hover {
  background-color: #029443;
}

/* Background dots matrix */
.c-assessment-cta__dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 900px) {
  .c-assessment-cta {
    padding: 32px 0;
    overflow: hidden;
  }
  .c-assessment-cta__container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .c-assessment-cta__avatar-wrap {
    margin-top: 0;
    margin-bottom: 0;
    flex: none;
  }
  .c-assessment-cta__body {
    text-align: center;
  }
  .c-assessment-cta__dots {
    display: none;
  }
}
