/* ============================================================
   INSIGHTS · PORTFOLIO — Project case-study template
   Dark / cinematic / Apple-minimal.
   Theme a new project by overriding --accent + --accent-2
   on .proj (and swapping screenshots + copy). Nothing else.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* canvas — warm near-black */
  --pbg:      oklch(0.158 0.006 40);
  --pbg-2:    oklch(0.185 0.007 38);   /* differentiated section */
  --pbg-card: oklch(0.205 0.008 38);
  --pbg-sunk: oklch(0.125 0.005 40);

  --pink:   oklch(0.97 0.003 80);      /* primary text */
  --pink-2: oklch(0.74 0.006 70);
  --pink-3: oklch(0.56 0.007 60);
  --pink-4: oklch(0.42 0.008 55);

  --pline:  oklch(1 0 0 / 0.10);
  --pline-2:oklch(1 0 0 / 0.05);
  --pline-3:oklch(1 0 0 / 0.18);

  --psans: 'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --pmono: 'JetBrains Mono', ui-monospace, monospace;

  --pwrap: 1240px;
  --pgut: clamp(22px, 5vw, 80px);
}

/* ---- per-project theme (default = HiddenWire red) ---- */
.proj {
  --accent:    oklch(0.625 0.215 23);
  --accent-2:  oklch(0.70 0.20 28);
  --accent-dim:oklch(0.625 0.215 23 / 0.14);
  --accent-glow: oklch(0.625 0.215 23 / 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.proj {
  background: var(--pbg);
  color: var(--pink);
  font-family: var(--psans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.proj img { display: block; max-width: 100%; }
.proj a { color: inherit; text-decoration: none; }
.proj ::selection { background: var(--accent); color: #fff; }

.pwrap { max-width: var(--pwrap); margin: 0 auto; padding: 0 var(--pgut); }

.peyebrow {
  font-family: var(--pmono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.peyebrow.muted { color: var(--pink-3); }
.peyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex: none;
}
.peyebrow.nodot::before { display: none; }

/* ============================================================
   TOP BAR (minimal)
   ============================================================ */
.pnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pgut);
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.pnav.scrolled {
  background: color-mix(in oklch, var(--pbg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--pline);
  padding-top: 16px; padding-bottom: 16px;
}
.pnav__brand { display: flex; align-items: center; gap: 13px; }
.pnav__brand img { height: 21px; width: auto; opacity: .92; }
.pnav__brand .div { width: 1px; height: 17px; background: var(--pline-3); }
.pnav__brand .tag { font-family: var(--pmono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--pink-3); }
.pnav__back {
  font-family: var(--pmono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink-2); display: inline-flex; align-items: center; gap: 9px;
  transition: gap .2s, color .2s;
}
.pnav__back:hover { color: var(--pink); gap: 13px; }
.pnav__back svg { width: 15px; height: 15px; }

/* ============================================================
   S1 · HERO
   ============================================================ */
.phero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(40px, 7vh, 90px);
  overflow: hidden;
}
.phero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: 0.11;
  filter: saturate(0.8) blur(3px);
  transform: scale(1.08);
}
.phero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 18%, var(--accent-dim), transparent 70%),
    linear-gradient(180deg, var(--pbg) 0%, transparent 30%, transparent 55%, var(--pbg) 96%);
}
.phero__grid {
  position: absolute; inset: 0; opacity: .35;
  background-image:
    linear-gradient(var(--pline-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--pline-2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 75%);
}
.phero .pwrap { position: relative; width: 100%; }

.phero__top {
  position: absolute;
  top: calc(-1 * (100svh - 220px));
  left: var(--pgut); right: var(--pgut);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
}
.phero__meta { display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; }
.phero__meta .it .k { font-family: var(--pmono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-4); margin-bottom: 7px; }
.phero__meta .it .v { font-size: 15px; color: var(--pink); font-weight: 500; }

.phero__name {
  font-weight: 800;
  font-size: clamp(48px, 11vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: nowrap;
  margin-bottom: 4px;
}
.phero__name .dot { color: var(--accent); }
.phero__sub {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  border-top: 1px solid var(--pline);
  padding-top: 24px; margin-top: 22px;
}
.phero__tagline {
  font-size: clamp(19px, 2.3vw, 27px);
  font-weight: 400; line-height: 1.32;
  color: var(--pink-2); max-width: 30ch; text-wrap: balance;
}
.phero__tagline b { color: var(--pink); font-weight: 600; }
.phero__scroll {
  font-family: var(--pmono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--pink-4); display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
}
.phero__scroll .ln { width: 46px; height: 1px; background: var(--pline-3); position: relative; overflow: hidden; }
.phero__scroll .ln::after { content:""; position:absolute; inset:0; width:40%; background: var(--accent); animation: scrollLn 2.4s ease-in-out infinite; }
@keyframes scrollLn { 0%{transform:translateX(-100%)} 100%{transform:translateX(280%)} }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.psec { padding: clamp(90px, 13vh, 170px) 0; position: relative; }
.psec--alt { background: var(--pbg-2); border-top: 1px solid var(--pline-2); border-bottom: 1px solid var(--pline-2); }
.psec__head { max-width: 720px; margin-bottom: clamp(48px, 7vh, 86px); }
.psec__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.psec__head h2 {
  font-weight: 700; font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.03; letter-spacing: -0.025em; margin-top: 22px; text-wrap: balance;
}
.psec__head h2 .em { color: var(--accent-2); }
.psec__head p { color: var(--pink-2); font-size: clamp(16px,1.4vw,19px); margin-top: 20px; max-width: 60ch; }
.psec__num {
  position: absolute; top: clamp(40px,6vh,70px); right: var(--pgut);
  font-family: var(--pmono); font-size: 12px; letter-spacing: .2em; color: var(--pink-4);
}

/* ---- generic browser frame for screenshots ---- */
.frame {
  border: 1px solid var(--pline); border-radius: 14px; overflow: hidden;
  background: var(--pbg-sunk);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8), 0 0 0 1px var(--pline-2);
}
.frame__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--pline-2);
  background: color-mix(in oklch, var(--pbg-card) 70%, transparent);
}
.frame__dots { display: flex; gap: 7px; }
.frame__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--pline-3); }
.frame__url {
  margin-left: 10px; font-family: var(--pmono); font-size: 11px; color: var(--pink-4);
  background: var(--pbg-sunk); border: 1px solid var(--pline-2); border-radius: 6px;
  padding: 4px 12px; flex: 1; max-width: 340px;
}
.frame__shot { display: block; width: 100%; }
.frame--clip .frame__shot { display: block; }

/* ============================================================
   S2 · DASHBOARD + DESCRIPTION
   ============================================================ */
.pover { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.pover__media { position: relative; }
.pover__media .frame { transform: perspective(1800px) rotateY(-4deg) rotateX(1.5deg); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.pover__media:hover .frame { transform: perspective(1800px) rotateY(0) rotateX(0); }
.pover__media .glow { position: absolute; inset: -10% -6% -14% -6%; z-index: -1; background: radial-gradient(60% 60% at 30% 30%, var(--accent-glow), transparent 70%); filter: blur(50px); opacity: .6; }

.pover__body .peyebrow { margin-bottom: 22px; }
.pover__body h2 { font-weight: 700; font-size: clamp(28px,3vw,40px); line-height: 1.06; letter-spacing: -.02em; margin-bottom: 20px; text-wrap: balance; }
.pover__lead { color: var(--pink-2); font-size: 17px; line-height: 1.6; margin-bottom: 30px; }

.pmeta-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; }
.pmeta-list .row { display: flex; gap: 18px; padding: 14px 0; border-top: 1px solid var(--pline-2); }
.pmeta-list .row:last-child { border-bottom: 1px solid var(--pline-2); }
.pmeta-list .row .k { font-family: var(--pmono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-4); width: 110px; flex: none; padding-top: 2px; }
.pmeta-list .row .v { color: var(--pink); font-size: 15.5px; }

.ptags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.ptag {
  font-family: var(--pmono); font-size: 11.5px; letter-spacing: .04em;
  color: var(--pink-2); border: 1px solid var(--pline); border-radius: 999px;
  padding: 7px 14px; transition: border-color .2s, color .2s, background .2s;
}
.ptag:hover { border-color: var(--accent); color: var(--accent-2); background: var(--accent-dim); }

.pmetric { display: flex; align-items: baseline; gap: 16px; border-top: 1px solid var(--pline); padding-top: 26px; }
.pmetric__n { font-weight: 800; font-size: clamp(48px, 6vw, 74px); line-height: 0.9; letter-spacing: -0.04em; color: var(--accent-2); }
.pmetric__l { font-size: 14px; color: var(--pink-2); line-height: 1.4; max-width: 22ch; }

/* ============================================================
   S3 · LANDING PREVIEW
   ============================================================ */
.pland { position: relative; }
.pland__frame { position: relative; max-width: 1080px; margin: 0 auto; }
.pland__frame .frame { transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s; }
.pland__shot-wrap { position: relative; overflow: hidden; }
.pland__shot {
  width: 100%; display: block; transition: transform 6s linear;
}
.pland__frame:hover .pland__shot { transform: translateY(calc(-100% + 520px)); }
.pland__hint {
  position: absolute; z-index: 3; right: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--pmono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pink); background: color-mix(in oklch, var(--pbg-sunk) 70%, transparent);
  backdrop-filter: blur(8px); border: 1px solid var(--pline); border-radius: 999px; padding: 8px 14px;
  transition: opacity .4s;
}
.pland__frame:hover .pland__hint { opacity: 0; }
.pland__hint svg { width: 14px; height: 14px; }

.pland__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--pline-2); border: 1px solid var(--pline-2); border-radius: 14px; overflow: hidden; margin-top: clamp(40px,5vh,64px); }
.pland__stat { background: var(--pbg); padding: 30px 28px; }
.pland__stat .n { font-weight: 700; font-size: clamp(28px,3vw,40px); letter-spacing: -.03em; }
.pland__stat .n .em { color: var(--accent-2); }
.pland__stat .l { font-family: var(--pmono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--pink-3); margin-top: 10px; }

/* ============================================================
   S4 · FEATURES (interactive)
   ============================================================ */
.pfeat { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.pfeat__menu { display: flex; flex-direction: column; }
.pfeat__item {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 20px; cursor: pointer;
  border-top: 1px solid var(--pline-2);
  transition: padding-left .3s;
}
.pfeat__menu .pfeat__item:last-child { border-bottom: 1px solid var(--pline-2); }
.pfeat__item .ic { width: 22px; height: 22px; color: var(--pink-3); flex: none; transition: color .25s; }
.pfeat__item .ic svg { width: 100%; height: 100%; }
.pfeat__item .tx { flex: 1; }
.pfeat__item .tx .t { font-size: 18px; font-weight: 600; letter-spacing: -.01em; transition: color .25s; }
.pfeat__item .tx .s { font-family: var(--pmono); font-size: 11px; letter-spacing: .06em; color: var(--pink-4); margin-top: 3px; transition: color .25s; }
.pfeat__item .ar { width: 18px; height: 18px; color: var(--pink-4); opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s; }
.pfeat__item::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleY(0); transform-origin: center; transition: transform .3s;
}
.pfeat__item:hover .tx .t { color: var(--pink); }
.pfeat__item.active { padding-left: 30px; }
.pfeat__item.active::before { transform: scaleY(1); }
.pfeat__item.active .ic { color: var(--accent-2); }
.pfeat__item.active .tx .t { color: var(--pink); }
.pfeat__item.active .ar { opacity: 1; transform: translateX(0); color: var(--accent-2); }

.pfeat__stage { position: relative; }
.pfeat__panel { display: none; }
.pfeat__panel.active { display: block; animation: fadeUp .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.pfeat__shotwrap { position: relative; }
.pfeat__shotwrap .glow { position: absolute; inset: -8%; z-index: -1; background: radial-gradient(50% 50% at 60% 30%, var(--accent-glow), transparent 70%); filter: blur(46px); opacity: .5; }
.pfeat__why { margin-top: 26px; display: flex; gap: 18px; align-items: flex-start; }
.pfeat__why .badge { font-family: var(--pmono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); border: 1px solid var(--accent); border-radius: 999px; padding: 6px 13px; flex: none; margin-top: 2px; }
.pfeat__why p { color: var(--pink-2); font-size: 16px; line-height: 1.6; }
.pfeat__why p b { color: var(--pink); font-weight: 600; }

/* placeholder screen (for features w/o a real shot) */
.pscreen-ph {
  aspect-ratio: 16/10; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(135deg, oklch(1 0 0 / 0.02) 0 12px, transparent 12px 24px),
    var(--pbg-card);
  color: var(--pink-3); font-family: var(--pmono); font-size: 12px; letter-spacing: .08em;
  gap: 14px; padding: 30px;
}
.pscreen-ph .ic { width: 40px; height: 40px; color: var(--pink-4); }
.pscreen-ph .ic svg { width: 100%; height: 100%; }

/* ============================================================
   S5 · FINAL CTA
   ============================================================ */
.pcta { position: relative; text-align: center; padding: clamp(120px, 22vh, 260px) 0; overflow: hidden; }
.pcta__glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 900px; height: 600px; background: radial-gradient(50% 50% at 50% 50%, var(--accent-glow), transparent 70%); filter: blur(70px); opacity: .55; pointer-events: none; }
.pcta .peyebrow { margin-bottom: 30px; justify-content: center; }
.pcta h2 { position: relative; font-weight: 800; font-size: clamp(40px, 7vw, 96px); line-height: 0.96; letter-spacing: -0.04em; margin-bottom: 44px; text-wrap: balance; }
.pcta h2 .em { color: var(--accent-2); }
.pbtn {
  position: relative;
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 19px; font-weight: 600; letter-spacing: -.01em;
  color: #fff; background: var(--accent);
  padding: 22px 42px; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: 0 20px 60px -16px var(--accent-glow);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s;
}
.pbtn:hover { transform: translateY(-3px) scale(1.02); background: var(--accent-2); box-shadow: 0 30px 80px -16px var(--accent-glow); }
.pbtn .arw { width: 22px; height: 22px; transition: transform .25s; }
.pbtn:hover .arw { transform: translateX(6px); }

/* ============================================================
   FOOTER (minimal)
   ============================================================ */
.pfoot { border-top: 1px solid var(--pline); padding: 40px 0; }
.pfoot .pwrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pfoot img { height: 22px; opacity: .8; }
.pfoot .c { font-family: var(--pmono); font-size: 11px; letter-spacing: .06em; color: var(--pink-4); text-transform: uppercase; }
.pfoot .lk { display: flex; gap: 22px; }
.pfoot .lk a { font-family: var(--pmono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--pink-3); }
.pfoot .lk a:hover { color: var(--pink); }

/* ============================================================
   REVEAL — content is always visible (no entrance animation).
   Entrance motion is intentionally omitted: this environment's
   capture tool renders scroll-driven animations in their hidden
   from-state, and content must never be trapped invisible.
   ============================================================ */
.reveal { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .pover { grid-template-columns: 1fr; gap: 44px; }
  .pover__media .frame { transform: none; }
  .pfeat { grid-template-columns: 1fr; gap: 36px; }
  .pfeat__stage { order: -1; }
  .pland__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .proj { font-size: 16px; }
  .phero__name { font-size: clamp(40px, 13vw, 84px); }
  .phero__top { position: static; margin-bottom: 40px; }
  .phero { justify-content: flex-end; padding-top: 120px; }
  .pnav__back .lbl { display: none; }
  .pland__stats { grid-template-columns: 1fr; }
  .pfeat__item { padding: 18px 14px; }
  .frame__url { display: none; }
}

/* ---- CTA dual buttons ---- */
.pcta__btns { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.pbtn--ghost { background: transparent; color: var(--pink); border: 1px solid var(--pline-3); box-shadow: none; }
.pbtn--ghost:hover { background: color-mix(in oklch, var(--pink) 9%, transparent); border-color: var(--pink); color: var(--pink); box-shadow: none; transform: translateY(-3px) scale(1.02); }

/* ---- shared Insights footer on the dark page ---- */
body.proj::before { display: none; }                 /* kill light-theme grain overlay */
body.proj .foot { --accent: oklch(0.705 0.175 50); margin-top: 0; }

/* ============================================================
   THEME TOGGLE + LIGHT THEME (white bg / black text)
   ============================================================ */
.pnav__right { display: flex; align-items: center; gap: 16px; }
.pnav__toggle {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--pline); background: transparent;
  color: var(--pink-2); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.pnav__toggle:hover { border-color: var(--pline-3); color: var(--pink); }
.pnav__toggle svg { width: 17px; height: 17px; }
.pnav__toggle .ic-moon { display: none; }

/* logo swap by theme */
.proj .pnav__brand .logo-light { display: none; }
.proj.light .pnav__brand .logo-dark { display: none; }
.proj.light .pnav__brand .logo-light { display: block; }
.proj.light .pnav__toggle .ic-sun { display: none; }
.proj.light .pnav__toggle .ic-moon { display: block; }

body.proj.light {
  --pbg:      oklch(0.992 0.002 90);
  --pbg-2:    oklch(0.967 0.004 80);
  --pbg-card: oklch(0.978 0.004 80);
  --pbg-sunk: oklch(0.948 0.005 80);
  --pink:    oklch(0.205 0.006 55);
  --pink-2:  oklch(0.405 0.008 55);
  --pink-3:  oklch(0.520 0.008 55);
  --pink-4:  oklch(0.625 0.008 55);
  --pline:   oklch(0 0 0 / 0.11);
  --pline-2: oklch(0 0 0 / 0.05);
  --pline-3: oklch(0 0 0 / 0.20);
}
body.proj.light .frame { box-shadow: 0 30px 70px -38px rgba(0,0,0,0.30), 0 0 0 1px var(--pline-2); }
body.proj.light .phero__bg { opacity: 0.16; filter: saturate(0.9) blur(3px); }
body.proj.light .pscreen-ph { background: repeating-linear-gradient(135deg, oklch(0 0 0 / 0.02) 0 12px, transparent 12px 24px), var(--pbg-card); }


/* ============================================================
   PORTFOLIO ADD-ON · feature grid for preview-only projects
   (appended by gen-site.js — uses proyecto.css theme tokens)
   ============================================================ */
.pgridf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pgridf__item { background: var(--pbg-card); border: 1px solid var(--pline); border-radius: 14px; padding: 24px 22px; transition: border-color .2s, transform .2s; }
.pgridf__item:hover { border-color: var(--accent); transform: translateY(-3px); }
.pgridf__item .ic { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: var(--accent-dim); color: var(--accent); margin-bottom: 16px; }
.pgridf__item .ic svg { width: 21px; height: 21px; }
.pgridf__item h3 { font-family: var(--psans); font-weight: 600; font-size: 16px; margin-bottom: 8px; color: var(--pink); }
.pgridf__item p { font-size: 14px; line-height: 1.55; color: var(--pink-2); }
@media (max-width: 900px) { .pgridf { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .pgridf { grid-template-columns: 1fr; } }
