/* ===================================
   COMPANY PAGE SPECIFIC STYLES
   =================================== */

/* Table Styling */
.table {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #e2e8f0;
}

.row:last-child {
  border-bottom: none;
}

.th,
.td {
  padding: 22px 24px;
}

.th {
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
}

.td {
  color: #475569;
}

/* Media Queries */
@media (max-width: 900px) {
  .row {
    grid-template-columns: 1fr;
  }

  .th {
    padding-bottom: 8px;
  }

  .td {
    padding-top: 0;
  }
}
