.company-core-grid,
.company-admin-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-payment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-summary-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 6px 0;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  background: #fff;
}

.company-summary-strip div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  min-width: 0;
  padding: 7px 9px;
  background: linear-gradient(135deg, rgba(20, 70, 122, 0.62), rgba(7, 20, 37, 0.96));
}

.company-summary-strip span {
  overflow: hidden;
  color: #a8d0ff;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-summary-strip strong {
  color: #fff;
  font-size: 13px;
}

@media (max-width: 1240px) {
  .company-core-grid,
  .company-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-summary-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .company-core-grid,
  .company-admin-grid,
  .company-payment-grid,
  .company-summary-strip {
    grid-template-columns: 1fr;
  }
}
