/* TAC Brand Pillars Frontend CSS */

.tac-bp-wrap * {
  box-sizing: border-box;
}

.tac-bp-wrap .pillars {
  background: var(--forest, #162721);
  border-radius: var(--rl, 12px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(22, 39, 33, 0.03);
  display: grid;
  grid-template-columns: 1fr; /* Mobile default */
}

.tac-bp-wrap .pillar {
  padding: 40px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(253, 251, 212, .08);
}

.tac-bp-wrap .pillar:last-child {
  border-bottom: none;
}

.tac-bp-wrap .pillar-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  line-height: 1;
}

.tac-bp-wrap .pillar-icon svg {
  max-width: 48px;
  max-height: 48px;
}

.tac-bp-wrap .pillar-title {
  font-family: "Futura", Sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf, #9fb840);
  margin-bottom: 12px;
}

.tac-bp-wrap .pillar-body {
  font-family: "Futura", Sans-serif !important;
  font-size: 14px;
  color: rgba(253, 251, 212, .75); /* var(--cream) based */
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
  margin: 0 auto;
}

/* Tablet (2 columns) */
@media(min-width: 768px) and (max-width: 991px) {
  .tac-bp-wrap .pillars {
    grid-template-columns: 1fr 1fr;
  }
  .tac-bp-wrap .pillar:nth-child(odd) {
    border-right: 1px solid rgba(253, 251, 212, .08);
  }
}

/* Desktop (4 columns) */
@media(min-width: 992px) {
  .tac-bp-wrap .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
  .tac-bp-wrap .pillar {
    border-bottom: none;
    border-right: 1px solid rgba(253, 251, 212, .08);
  }
  .tac-bp-wrap .pillar:last-child {
    border-right: none;
  }
}
