/* =========================
   EXPERT CUSTOM RESUME STRIP
   (Uniform white section background)
   ========================= */

.pr-expert-strip{
  position:relative;
  padding: 56px 20px;
  overflow:hidden;

  /* ✅ uniform white */
  background:#ffffff;
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.pr-expert-strip::before,
.pr-expert-strip::after{
  /* remove decorative blobs to keep it uniform white */
  content:none;
}

.pr-expert-overlay{ display:none; }

.pr-expert-inner{
  max-width:1120px;
  margin:0 auto;
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
}

/* Main card */
.pr-expert-card{
  width:min(980px, 100%);
  border-radius: 26px;
  padding: 28px 26px;

  background:#ffffff;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 22px 60px rgba(15,23,42,0.10);
}

/* badge */
.pr-expert-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#0f172a;

  background: linear-gradient(135deg, rgba(56,189,248,0.14), rgba(249,115,22,0.10));
  border: 1px solid rgba(15,23,42,0.08);
  margin-bottom: 12px;
}

.pr-expert-badge-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: linear-gradient(135deg, #38bdf8, #f97316);
}

.pr-expert-title{
  margin:0 0 10px;
  font-size:26px;
  line-height:1.18;
  color:#0f172a;
  letter-spacing:-0.02em;
}

.pr-expert-subtitle{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.65;
  color:#334155;
  max-width: 72ch;
}

/* points */
.pr-expert-points{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

@media (max-width: 900px){
  .pr-expert-points{ grid-template-columns: 1fr; }
}

.pr-expert-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;

  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.pr-expert-point-icon{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;

  color:#0f172a;
  background: rgba(2,132,199,0.10);
  border: 1px solid rgba(2,132,199,0.14);
}

.pr-expert-point-text{
  font-size: 13px;
  color:#334155;
  line-height:1.45;
}
.pr-expert-point-text strong{ color:#0f172a; }

.pr-expert-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom: 10px;
}

.pr-expert-trust{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:12px;
  color:#475569;
}
.pr-expert-dot{ opacity:.55; }

@media (max-width: 640px){
  .pr-expert-card{
    padding: 20px 18px;
    border-radius: 18px;
  }
  .pr-expert-title{ font-size:22px; }
}