:root {
  --font-sans: 'Inter', sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: #16161a;
  color: #94a1b2;
}

/* Headings */
.article-body h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-left: 4px solid #60a5fa; /* border-blue-400 */
  padding-left: 1rem;
}

.article-body h3 {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body h4 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: #e2e8f0; /* text-slate-200 */
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Paragraphs */
.article-body p {
  font-size: 1.125rem;   /* text-lg */
  color: #cbd5e1;         /* text-slate-300 */
  line-height: 1.75rem;   /* leading-relaxed */
  margin-bottom: 1.5rem;  /* mb-6 */
}

/* Links */
.article-body a {
  color: #60a5fa;         /* text-blue-400 */
  transition: color 0.3s; /* transition-colors */
}

.article-body a:hover {
  color: #93c5fd;         /* text-blue-300 */
}

/* Lists */
.article-body ul {
  list-style-type: disc;         /* list-disc */
  list-style-position: inside;   /* list-inside */
  margin-bottom: 1.5rem;         /* mb-6 */
  padding-left: 1rem;            /* pl-4 */
}

.article-body li {
  font-size: 1.125rem;           /* text-lg */
  color: #cbd5e1;                /* text-slate-300 */
  line-height: 1.75rem;          /* leading-relaxed */
  margin-bottom: 0.5rem;         /* space-y-2 effect */
}

/* Blockquotes */
.article-body blockquote {
  border-left: 4px solid #475569; /* border-slate-600 */
  padding-left: 1.5rem;           /* pl-6 */
  font-style: italic;
  color: #94a3b8;                 /* text-slate-400 */
  margin-top: 2rem;               /* my-8 */
  margin-bottom: 2rem;
}

/* Strong text */
.article-body strong {
  color: #ffffff;       /* text-white */
  font-weight: 600;      /* font-semibold */
}

/* Inline code */
.article-body code {
  background-color: rgba(51, 65, 85, 0.5); /* bg-slate-700/50 */
  color: #cbd5e1;                       /* text-slate-300 */
  border-radius: 0.375rem;              /* rounded-md */
  padding: 0.25rem 0.5rem;              /* px-2 py-1 */
  font-size: 0.875rem;                  /* text-sm */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; /* font-mono */
}

/* Bento-style container */
.bento-box {
  background-color: rgba(30, 41, 59, 0.5); /* bg-slate-800/50 */
  padding: 1.5rem;                        /* p-6 */
  border-radius: 0.75rem;                 /* rounded-xl */
  border: 1px solid #334155;             /* border-slate-700 */
}

/* Table container */
.table-container {
  overflow-x: auto;
  background-color: rgba(30, 41, 59, 0.5); /* bg-slate-800/50 */
  border-radius: 0.5rem;                   /* rounded-lg */
  border: 1px solid #334155;              /* border-slate-700 */
}

/* Table styling */
.article-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
}

.article-table thead {
  background-color: #1e293b; /* bg-slate-800 */
  color: #cbd5e1;             /* text-slate-300 */
  font-size: 0.75rem;         /* text-xs */
  font-weight: 500;           /* font-medium */
  text-transform: uppercase;  /* uppercase */
  letter-spacing: 0.05em;     /* tracking-wider */
}

.article-table th {
  padding: 0.75rem 1.5rem;    /* px-6 py-3 */
  text-align: left;           /* text-left */
}

.article-table td {
  padding: 1rem 1.5rem;       /* px-6 py-4 */
  white-space: nowrap;        /* whitespace-nowrap */
  font-size: 0.875rem;        /* text-sm */
  color: #cbd5e1;             /* text-slate-300 */
}

.article-table tbody tr {
  border-top: 1px solid #334155; /* divide-slate-700 */
}
