/* =========================
   RESUME EXAMPLES SECTION
   Light background (premium) + right image slider
   ========================= */

.pr-examples{
  /* ✅ CONTROL THESE */
  --examples-media-h: 420px;     /* controls the image/stage height (section height) */
  --examples-media-w: 520px;     /* max width of the right image frame */

  padding: 64px 0;

  /* ✅ light premium background */
  background: #ffffff;
  color:#0f172a;

  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);

  position:relative;
  overflow:hidden;
}

/* subtle “premium” ambient tint, stays white */
.pr-examples::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 10%, rgba(56,189,248,0.10), transparent 45%),
    radial-gradient(circle at 88% 5%, rgba(249,115,22,0.08), transparent 48%);
  opacity: 0.9;
}

/* ✅ Force 2-column desktop layout */
.pr-examples-inner{
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;

  display:grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items:start;
  gap:36px;

  position:relative;
  z-index:1;
}

/* Left column */
.pr-examples-left{
  max-width: 620px;
}

.pr-examples-kicker{
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#0284c7; /* theme blue */
  margin:0 0 10px;
}

.pr-examples-title{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.06;
  letter-spacing:-0.03em;
  color:#0f172a;
}

.pr-examples-subtitle{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.65;
  color:#334155;
  max-width: 62ch;
}

.pr-examples-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}

.pr-examples-bullets{
  display:grid;
  gap:10px;
  margin-top: 12px;
}

.pr-examples-bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:16px;

  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  border:1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.pr-examples-bullet strong{
  color:#0f172a;
}

.pr-examples-bullet-icon{
  width:26px;
  height:26px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: rgba(34,197,94,0.12);
  border:1px solid rgba(34,197,94,0.18);
  color:#166534;

  flex:0 0 auto;
  font-size:12px;
  margin-top:1px;
}

/* ✅ Right column stays on the right */
.pr-examples-right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
}

/* Frame */
.pr-examples-frame {
  width: min(var(--examples-media-w), 100%);
  border-radius: 16px;           /* slightly smaller radius */
  background: transparent;       /* remove the gradient */
  border: none;                  /* remove border */
  box-shadow: none;              /* remove shadow */
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Stage controls section height */
/* Stage */
.pr-examples-photo-stage {
  height: var(--examples-media-h);
  border-radius: 16px;           /* match frame */
  background: transparent;       /* remove overlay tint */
  border: none;
  overflow: hidden;
}

.pr-examples-photo-track{
  display:flex;
  height:100%;
  width:100%;
  transform: translateX(0);
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.pr-examples-photo{
  flex: 0 0 100%;
  margin:0;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}

.pr-examples-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;              /* remove inner rounding */
  background: transparent;       /* remove white background */
  border: none;
  box-shadow: none;
}

/* Controls */
.pr-examples-controls{
  position:absolute;
  right:12px;
  bottom:12px;
  display:flex;
  gap:8px;
  z-index:2;
}

.pr-examples-arrow{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,0.14);
  background: rgba(255,255,255,1);
  color:#0f172a;
  cursor:pointer;
  transition: all .18s ease;
 
   /* Important additions for Font Awesome icons */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;                 /* controls arrow size – adjust as needed */
  line-height: 1;
}

.pr-examples-arrow:hover{
  background: rgba(255,255,255,0.95);
  border-color: rgba(2,132,199,0.26);
  box-shadow: 0 10px 22px rgba(15,23,42,0.10);
}

/* Dots */
.pr-examples-dots{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:6px;
  position:relative;
  z-index:1;
}

.pr-examples-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: rgba(100,116,139,0.45);
  cursor:pointer;
  transition: all .2s ease;
}

.pr-examples-dot.is-active{
  width:16px;
  background: linear-gradient(90deg, #38bdf8, #f97316);
}

/* ✅ Only stack on real mobile */
@media (max-width: 760px){
  .pr-examples{
    --examples-media-h: 360px;
    --examples-media-w: 100%;
    padding: 52px 0;
  }

  .pr-examples-inner{
    grid-template-columns: minmax(0, 1fr);
    gap:22px;
  }

  .pr-examples-right{
    justify-content:flex-start;
  }

  .pr-examples-title{
    font-size:32px;
  }
}