/*
Theme Name: Satellite
Theme URI: https://faizulkarim.com
Author: Faizul Karim
Author URI: https://faizulkarim.com
Description: A personal Satellite WordPress theme for DevOps and 3D design professionals.
Version: 1.0
Tags: Satellite, devops, 3d design, solidworks
Text Domain: faizulkarim
*/

/* Main post content wrapper */
.entry-content {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2937; /* Gray-800 */
}

/* Headings */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-weight: 700;
  margin: 1.5em 0 0.6em;
  line-height: 1.3;
  color: #1e3a8a; /* Blue-800 */
}
.entry-content h1 { font-size: 2rem; }
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }
.entry-content h5 { font-size: 1.125rem; }
.entry-content h6 { font-size: 1rem; }

/* Paragraphs */
.entry-content p {
  margin-bottom: 1.2em;
}

/* Links */
.entry-content a {
  color: #2563eb; /* Blue-600 */
  text-decoration: underline;
  transition: color 0.2s ease;
}
.entry-content a:hover {
  color: #1e40af; /* Blue-900 */
}

/* Lists */
.entry-content ul,
.entry-content ol {
  margin: 1em 0 1.5em 1.5em;
  padding: 0;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5em; }

/* Blockquotes */
.entry-content blockquote {
  border-left: 4px solid #3b82f6; /* Blue-500 */
  padding-left: 1em;
  margin: 1.5em 0;
  font-style: italic;
  color: #374151; /* Gray-700 */
  background: #f9fafb;
  border-radius: 0.25rem;
}

/* Images */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
}
.entry-content figure {
  margin: 1.5em 0;
  text-align: center;
}
.entry-content figcaption {
  font-size: 0.875rem;
  color: #6b7280; /* Gray-500 */
  margin-top: 0.5em;
}

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
}
.entry-content th,
.entry-content td {
  border: 1px solid #d1d5db; /* Gray-300 */
  padding: 0.75em 1em;
  text-align: left;
}
.entry-content th {
  background: #f3f4f6; /* Gray-100 */
  font-weight: 600;
}

/* Code blocks */
.entry-content pre,
.entry-content code {
  font-family: "Fira Code", Consolas, monospace;
  background: #f3f4f6;
  color: #111827;
  border-radius: 0.375rem;
}
.entry-content code {
  padding: 0.2em 0.4em;
  font-size: 0.9em;
}
.entry-content pre {
  padding: 1em;
  overflow-x: auto;
  margin: 1.5em 0;
  font-size: 0.9rem;
}

/* Horizontal rule */
.entry-content hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2em 0;
}
