/* ═══════════════════════════════════════════════════════════════════════════
   07-portal.css — Portal-Specific Styles
   ═══════════════════════════════════════════════════════════════════════════ */

.portal-wrapper {
  min-height: 100vh;
  background: var(--bg-base);
}

.portal-info-table {
  width: 100%;
}

.portal-info-table td {
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.portal-info-table td:first-child {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  width: 100px;
}

.portal-info-table td:last-child {
  font-weight: var(--weight-medium);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}

.portal-traffic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}

.portal-traffic-item {
  text-align: center;
}

.portal-traffic-label {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--sp-xs);
}

.portal-traffic-value {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--accent);
}

.portal-messages {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.portal-message {
  padding: var(--sp-lg);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.portal-message-subject {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-xs);
}

.portal-message-body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.portal-message-time {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: var(--sp-sm);
}
