/* === projects.css === */
/* =========================================================
   === SECTION === PROJECTS (BASE)
   ========================================================= */

.section--projects{
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.26) 100%);
}


.card--projects::before{
  content:"";
  position:absolute;
  left:22px; top:22px;
  width:46px; height:4px;
  border-radius:999px;
  background: var(--primary);
  opacity:.30;
}

.card--projects .section-head{
  margin-bottom: 16px;
  padding-top: 14px;
}

/* Two panels */
.split--projects{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Panel surface */
.panel--projects{
  border-radius: 18px;
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 44px rgba(0,0,0,0.06);
  padding: 16px;
}

/* Panel header */
.panel-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.panel--projects .h3{
  margin: 0;
  letter-spacing: -0.01em;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(7,19,15,0.66);
  background: rgba(0,90,187,0.045);
  border: 1px solid rgba(0,90,187,0.12);
  white-space: nowrap;
}

/* Slim divider */
.pdivider{
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 10px 0 12px;
}

/* Compact stats row */
.pstats{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pstat{
  display:inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(0,0,0,0.06);
}

.pstat__k{
  font-size: 11px;
  color: rgba(7,19,15,.52);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pstat__v{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(7,19,15,.90);
}

/* Cleaner list */
.plist{
  list-style:none;
  padding:0;
  margin: 12px 0 0;
  display:grid;
  gap: 9px;
}

.plist li{
  position: relative;
  padding-left: 22px;
  color: rgba(7,19,15,0.72);
  line-height: 1.65;
  font-size: 14.5px;
}

.plist li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,90,187,0.20);
  box-shadow: inset 0 0 0 2px rgba(0,90,187,0.65);
}

/* Tags */
.ptags{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ptag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(7,19,15,0.74);
  background: rgba(254,214,0,0.18);
  border: 1px solid rgba(254,214,0,0.30);
}
