table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Outfit', sans-serif;
  table-layout: fixed;
  background: var(--rich-white, #fff);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 1.5rem;
  overflow: hidden;
}

th {
  background-color: var(--frost-glass, rgba(255, 255, 255, 0.3));
  color: var(--rich-black, #000);
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-transform: capitalize;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

th:first-child {
  border-top-left-radius: 1.5rem;
}

th:last-child {
  border-top-right-radius: 1.5rem;
}

td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.table.portfolio th:nth-child(1),
.table.portfolio td:nth-child(1) {
  width: 20%;
}

.table.portfolio th:nth-child(2),
.table.portfolio td:nth-child(2) {
  width: 35%;
}

.table.portfolio th:nth-child(3),
.table.portfolio td:nth-child(3) {
  width: 45%;
}
