
/* MindWell Core Values (Elementor) */
.mwcv-wrap{
  position: relative;
  width: 100%;
  --mwcv-line-color: #5EA0A6;
  --mwcv-line-width: 2px;
}

.mwcv-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  position: relative;
  z-index: 1; /* above cross lines */
}

.mwcv-card{
  background: #fff;
  border: 2px solid #5EA0A6;
  border-radius: 20px;
  padding: 38px;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.mwcv-media{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #5EA0A6;
  line-height: 1;
}

.mwcv-media img{
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}


.mwcv-title{
  color: #353D62;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 12px;
}

.mwcv-desc{
  color: #353D62;
  font-size: 18px;
  line-height: 1.55;
  max-width: 78%;
}

/* cross lines */
.mwcv-has-lines::before,
.mwcv-has-lines::after{
  content: "";
  position: absolute;
  background: var(--mwcv-line-color);
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.mwcv-has-lines::before{
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--mwcv-line-width);
  transform: translateX(-50%);
}

.mwcv-has-lines::after{
  left: 0;
  right: 0;
  top: 50%;
  height: var(--mwcv-line-width);
  transform: translateY(-50%);
}

/* center badge */
.mwcv-center{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: #5EA0A6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-sizing: border-box;
  color: #fff;
}

.mwcv-center .mwcv-badge-img{
  width: 54%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mwcv-center .mwcv-badge-img img{
  width: 100%;
  height: auto;
  display: block;
}

.mwcv-center .mwcv-badge-icon{
  font-size: 54%;
  line-height: 1;
}

.mwcv-center .mwcv-badge-text{
  font-size: 54%;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* hide badge on mobile (default) */
@media (max-width: 767px){
  .mwcv-hide-badge-mobile .mwcv-center{ display:none; }
  .mwcv-has-lines::before,
  .mwcv-has-lines::after{ display:none; } /* lines look odd in 1 column */
  .mwcv-desc{ max-width: 92%; }
}
