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

.pos-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  margin-top: 3.5rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 64px rgba(0,0,0,0.12);
  min-height: 460px;
}

/* ---- Featured (Dentifique) — right column, full height ---- */
.pos-col.featured {
  grid-column: 2;
  grid-row: 1 / 3;
  background: var(--charcoal);
  border-top: none;
  border-left: 3px solid var(--mint);
  padding: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Hero-style grid texture */
.pos-col.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient orb — bottom-right, like hero-orb-2 */
.pos-col.featured::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(4,106,129,0.35) 0%, transparent 68%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Push content above pseudo-elements */
.pos-col.featured > * { position: relative; z-index: 1; }

/* ---- Alternative cards — left column, stacked ---- */
.pos-col:not(.featured) {
  grid-column: 1;
  background: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.pos-col:not(.featured):first-of-type {
  border-bottom: 1px solid var(--border);
}

/* ---- Icon — raw Lucide SVG, no box ---- */
.pos-icon {
  margin-bottom: 1.25rem;
  color: var(--border);
  display: flex;
  align-items: center;
}
.pos-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  stroke: currentColor;
  fill: none;
}

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

/* ---- Title ---- */
.pos-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.pos-col.featured .pos-title {
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.pos-col.featured .pos-title em {
  font-style: normal;
  color: var(--mint);
  font-size: 0.9em;
  letter-spacing: 0.01em;
}

/* ---- Description ---- */
.pos-desc {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
}
.pos-col.featured .pos-desc {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
}

/* ---- Benefit list on featured card ---- */
.pos-benefits {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pos-benefits li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.pos-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 700;
  font-size: 12px;
}

/* ---- OR divider between left cards ---- */
.pos-or {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 50%);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

/* ---- Dentifique brand mark ---- */
.featured-mark {
  margin-bottom: 2.25rem;
  width: fit-content;
}
.featured-mark-word {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  padding-bottom: 0.55rem;
}
.featured-mark-rule {
  height: 2px;
  background: linear-gradient(to right, var(--mint), rgba(62,207,170,0));
  border-radius: 2px;
}

/* ---- Mobile: single column, Dentifique first ---- */
@media (max-width: 900px) {
  .pos-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
  }
  .pos-col.featured {
    grid-column: 1;
    grid-row: 1;
    padding: 2.5rem 2rem;
    border-left: none;
    border-bottom: 3px solid var(--mint);
  }
  .pos-col.featured .pos-title { font-size: 1.6rem; }
  .pos-col:not(.featured) {
    grid-column: 1;
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 2rem;
  }
  .pos-col:not(.featured):first-of-type { border-bottom: none; }
  .pos-col.featured::before,
  .pos-col.featured::after { display: none; }
}
