.profile-page-main {
  background: #ffffff;
  color: #0f172a;
  padding-top: 4rem;
}

.profile-inline-link {
  color: #e2732c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 2rem 1.25rem;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  padding: 0.95rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.profile-table th {
  width: 12rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-family: 'DM Mono', monospace;
}

.profile-table td {
  color: #334155;
}

.profile-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.profile-timeline li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.profile-timeline li span {
  color: #e2732c;
  font-family: 'DM Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.22rem;
}

.profile-timeline li p {
  margin: 0;
  color: #334155;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .profile-page-main {
    padding-top: 5rem;
  }

  .profile-panel {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .profile-table th {
    width: 6.5rem;
  }

  .profile-timeline li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}
