/* ============================================================
   POSITIONING SECTION
   ============================================================ */
.pos-section { background: var(--off-white); }

.pos-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 3.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.pos-col {
  padding: 2.8rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.pos-col:last-child { border-right: none; }

.pos-col.featured { background: var(--teal); }

.pos-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s var(--ease-out-expo);
}
.pos-col:hover .pos-icon { transform: scale(1.12) rotate(-4deg); }
.pos-col.featured .pos-icon { background: rgba(255,255,255,0.15); }

.pos-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.pos-col.featured .pos-label { color: rgba(255,255,255,0.55); }

.pos-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.pos-col.featured .pos-title { color: #fff; }

.pos-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}
.pos-col.featured .pos-desc { color: rgba(255,255,255,0.75); }

.featured-tag {
  position: absolute;
  top: 1.6rem; right: 1.6rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

