/* =========================
   EXAMPLES / PORTFOLIO (LIGHT background)
   Keeps layout organized + uses magenta/purple accents
   ========================= */

:root{
  --pr-accent:#a92473;
  --pr-violet: rgba(120,78,255,.85);
  --pr-ink:#0f172a;
}

.pr-examples{
  --examples-media-h: 420px;
  --examples-media-w: 520px;

  padding: 72px 0;
  background:#ffffff;
  color: var(--pr-ink);

  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 while staying white */
.pr-examples::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 12%, rgba(169,36,115,.10), transparent 48%),
    radial-gradient(circle at 88% 6%, rgba(120,78,255,.08), transparent 50%);
  opacity: .95;
}

.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;
}

@media (max-width: 860px){
  .pr-examples-inner{
    grid-template-columns: minmax(0, 1fr);
    gap:22px;
  }
}

.pr-examples-left{
  max-width: 640px;
}

.pr-examples-kicker{
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--pr-accent);
  margin:0 0 10px;
}

.pr-examples-title{
  margin:0 0 14px;
  font-size:40px;
  line-height:1.08;
  letter-spacing:-0.03em;
  color: var(--pr-ink);
}

@media (max-width: 640px){
  .pr-examples-title{ font-size:32px; }
}

.pr-examples-subtitle{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.75;
  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.10);
  box-shadow: 0 16px 46px rgba(15,23,42,0.08);
}

.pr-examples-bullet strong{
  color: var(--pr-ink);
}

.pr-examples-bullet-icon{
  width:26px;
  height:26px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: linear-gradient(135deg, rgba(169,36,115,.18), rgba(120,78,255,.10));
  border:1px solid rgba(169,36,115,.18);
  color: var(--pr-accent);

  flex:0 0 auto;
  font-size:12px;
  margin-top:1px;
}

/* Right column */
.pr-examples-right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
}

@media (max-width: 860px){
  .pr-examples-right{ justify-content:flex-start; }
}

/* Frame */
.pr-examples-frame{
  width: min(var(--examples-media-w), 100%);
  border-radius: 18px;
  padding: 10px;

  background: transparent;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 22px 60px rgba(15,23,42,0.0);

  overflow: hidden;
  position: relative;
}

.pr-examples-photo-stage{
  height: var(--examples-media-h);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.00);
}

.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: 10px;
  background: transparent;
}

/* Controls */
.pr-examples-controls{
  position:absolute;
  right:16px;
  bottom:16px;
  display:flex;
  gap:8px;
  z-index:2;
}

.pr-examples-arrow{
  width:40px;
  height:40px;
  border-radius:999px;

  border:1px solid rgba(15,23,42,0.14);
  background: rgba(255,255,255,.95);
  color: var(--pr-ink);
  cursor:pointer;
  transition: all .18s ease;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
}

.pr-examples-arrow:hover{
  background: rgba(255,255,255,1);
  border-color: rgba(169,36,115,.24);
  box-shadow: 0 14px 34px 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, var(--pr-accent), rgba(120,78,255,.85));
}

@media (max-width: 760px){
  .pr-examples{
    --examples-media-h: 360px;
    --examples-media-w: 100%;
    padding: 56px 0;
  }
}