/* ==========================================================================
   Profile Hero (Left Image + Center + Right Image)
   ========================================================================== */

.profile-hero-wrap{
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) minmax(367px, 440px) minmax(280px, 1fr);
  gap: 40px;
  align-items: center;
}

/* Images */
.profile-hero-img{
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.profile-hero-img img{
}

/* Center content */
.profile-hero-col--center{
  position: relative;
  text-align: center;
}

.profile-hero-before-title{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #8a7b5e;
  margin-bottom: 14px;
}

.profile-hero-title{
  font-size: 54px;
  font-weight: 900;
  line-height: 1.05;
  color: #111;
  margin: 0 0 16px;
}

.profile-hero-desc{
  font-size: 16px;
  line-height: 1.9;
  color: #6f6f6f;
  max-width: 520px;
  margin: 0 auto 26px;
}

/* Bullets: 2 columns */
.profile-hero-bullets{
  max-width: 520px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px 26px;
  text-align: left;
  margin-top: 30px;
  justify-items: center;
}

.profile-hero-bullet{
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: right;
}

.profile-hero-bullet-icon{
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--uicolor);
  flex: 0 0 24px;
}

.profile-hero-bullet-icon i,
.profile-hero-bullet-icon svg{
  font-size: 14px;
  width: 14px;
  height: 14px;
}

.profile-hero-bullet-text{
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

/* CTA Button */
.profile-hero-cta{
  display: flex;
  justify-content: center;
}

.profile-download-btn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 22px;
  background: #7a6f55;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: .25s ease;
}

.profile-download-btn:hover{
  filter: brightness(.95);
}

.profile-download-size{
  font-weight: 700;
  font-size: 12px;
  opacity: .9;
  padding: 6px 10px;
  background: rgba(255,255,255,.12);
}

.profile-download-icon{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #7a6f55;
  border-radius: 50%;
}

/* Watermark */
.profile-hero-watermark{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(0,0,0,.06);
  white-space: nowrap;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px){
  .profile-hero-wrap{
    gap: 40px;
    grid-template-columns: minmax(240px, 1fr) minmax(320px, 520px) minmax(240px, 1fr);
  }
  .profile-hero-title{ font-size: 46px; }
  .profile-hero-watermark{ font-size: 64px; }
}

@media (max-width: 992px){
  .profile-hero-wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .profile-hero-bullets{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .profile-hero-watermark{
    position: static;
    transform: none;
    text-align: center;
    margin-top: 18px;
  }
}

@media (max-width: 576px){
  .profile-hero-title{ font-size: 34px; }
  .profile-hero-watermark{ font-size: 44px; }
}


.-ycwt-wprofile .blog-content {
    align-items: center;
}

.profile-hero-col.profile-hero-col--left,.profile-hero-col.profile-hero-col--right {
    height: 100%;
}