/**
 * WC Is / Is Not — component styles.
 *
 * Source: WeConnect-Join_v3-02MAR2026.html
 * Section: COMPONENT: IS / IS NOT TWO-COL
 *
 * Place in: web/themes/weconnect/components/wc-is-is-not/
 */

/* Two-column grid — no gap, rounded as a unit */
.isnt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 768px) {
  .isnt-grid {
    grid-template-columns: 1fr;
  }
}

/* Column base */
.isnt-col {
  padding: var(--sp-lg);
}

/* IS column — blush background */
.isnt-col-is {
  background: var(--blush);
}

/* IS NOT column — grey background */
.isnt-col-not {
  background: var(--grey-light);
}

/* Column heading — Playfair italic */
.isnt-heading {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-h3);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  margin-bottom: var(--sp-md);
  line-height: 1.3;
}

/* Bullet list — custom dot via ::before */
.isnt-list {
  list-style: none;
  padding: 0;
}

.isnt-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--t-small);
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
  overflow-wrap: break-word;
}

.isnt-list li:last-child {
  margin-bottom: 0;
}

/* Custom bullet dot */
.isnt-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* IS column — red bullet */
.isnt-col-is .isnt-list li::before {
  background: var(--red-mid);
}

/* IS NOT column — dark bullet */
.isnt-col-not .isnt-list li::before {
  background: var(--dark);
}
