/* Content CSS - Styles for markdown content pages */

/* Article body styling */
article {
  font-size: 1.0625rem; /* 17px in rems */
  line-height: 1.62;
}

/* Article headings */
article h2 {
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
}

/* Table styling */
article table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  margin: 1.5rem 0;
}

article th, article td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

article th {
  font-weight: 600;
  border-bottom: 2px solid #e5e5e5;
}

/* Mobile table scrolling */
@media (max-width: 768px) {
  article {
    overflow-x: auto;
  }
  
  article table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
} 