@charset "UTF-8";
/* Variables */
/* Colors */
/* Layout */
body {
  font-family: "Calibri", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

.container {
  width: 900px;
  margin: 20px auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* ======================================
   Global List Reset (applies everywhere)
   ====================================== */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin-bottom: 4px;
}

.sidebar {
  width: 30%;
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  height: auto;
}
.sidebar h2 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000000;
}
.sidebar ul {
  list-style-type: none;
  padding-left: 0;
}
.sidebar ul li::before {
  content: "•";
  color: #D27A22;
  margin-right: 6px;
}

.main-content {
  width: 70%;
  padding: 5mm 5mm;
  padding-left: 5mm;
  padding-right: 5mm;
}
.main-content h1 {
  font-size: 36px;
  color: #D27A22;
}
.main-content h2, .main-content h3 {
  color: #D27A22;
  margin: 5px;
}
.main-content h3 {
  background-color: #f0f0f0;
  border-left: 4px solid #D27A22;
  padding: 3px;
  font-weight: bold;
  color: #333;
}
.main-content p, .main-content ul {
  margin-bottom: 10px;
  padding-left: 10px;
}

/* ======================================
   Projects Section — Compact A4 Layout
   ====================================== */
.projects {
  font-size: 11.5px;
  line-height: 1.25;
  margin-top: 5px;
  margin-bottom: 0;
}
.projects h3 {
  font-size: 12.5px;
  font-weight: 600;
  margin: 2px 0 3px 0;
  color: #000000;
}
.projects p {
  margin: 0 0 3px 0;
  color: black;
}
.projects ul {
  margin: 0 0 3px 15px;
  padding: 0;
  list-style: none;
}
.projects li {
  margin-bottom: 2px;
}
.projects a {
  color: #D27A22;
  text-decoration: none;
}
.projects a:hover {
  text-decoration: underline;
  color: #FF9900;
}
.projects.compact {
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 0;
}

@media print {
  body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
  }
  .container {
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: absolute;
    inset: 0;
  }
  * {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
  body * {
    visibility: hidden;
  }
  .container,
  .container * {
    visibility: visible;
  }
}
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

a {
  color: #D27A22;
  text-decoration: none;
}
a:hover {
  color: #FF9900;
  text-decoration: underline;
}

.projects-page {
  background: #fff;
  padding: 20mm 15mm;
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  font-size: 12px;
}
.projects-page .header {
  text-align: center;
  margin-bottom: 10mm;
}
.projects-page .header h1 {
  font-size: 28px;
  color: #D27A22;
}
.projects-page .header h2 {
  margin-top: 10mm;
  font-size: 16px;
  color: #000000;
}
.projects-page article {
  margin-bottom: 6mm;
}
.projects-page .project-item {
  margin-bottom: 8mm;
}
.projects-page .project-item h3 {
  font-size: 14px;
  color: #000000;
  margin-bottom: 2mm;
}
.projects-page .project-item p {
  margin: 0;
  line-height: 1.4;
}
.projects-page ul {
  margin-left: 15px;
  font-size: 12px;
}
.projects-page .footer {
  font-size: 11px;
  text-align: center;
  margin-top: 10mm;
  color: #666;
}

.site-shell {
  background: #f8f8f8;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header .site-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-header .brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}
.site-header .brand-tagline {
  margin: 0;
  color: rgb(158.75, 158.75, 158.75);
  font-size: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav a.active {
  color: #D27A22;
  background: rgb(246.3606557377, 224, 201.6393442623);
}
.site-nav a:hover {
  color: #D27A22;
  background: rgb(252.0459016393, 244.4, 236.7540983607);
}

.site-main {
  flex: 1;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 10px 20px 50px;
}

.site-footer {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 20px 30px;
  color: rgb(133.25, 133.25, 133.25);
  font-size: 13px;
}

.blog-hero {
  background: linear-gradient(135deg, rgb(242.8073770492, 211.25, 179.6926229508), #ffffff);
  border: 1px solid rgb(235.7008196721, 185.75, 135.7991803279);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  margin: 10px 0 24px 0;
}
.blog-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(188.0532786885, 109.25, 30.4467213115);
  font-weight: 700;
  margin: 0 0 8px 0;
}
.blog-hero h1 {
  margin: 0 0 12px 0;
  font-size: 28px;
  color: #000000;
}
.blog-hero .lede {
  margin: 0 0 16px 0;
  font-size: 15px;
  color: #929292;
  max-width: 760px;
}
.blog-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #D27A22;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button.primary {
  background: #D27A22;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(210, 122, 34, 0.25);
}
.button.ghost {
  background: transparent;
  color: #D27A22;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.12s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-left: 4px solid rgb(221.487704918, 134.75, 48.012295082);
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgb(232.1475409836, 173, 113.8524590164);
}
.blog-card h2 {
  margin: 6px 0;
  font-size: 18px;
  color: #000000;
}
.blog-card .excerpt {
  margin: 0 0 10px 0;
  color: rgb(133.25, 133.25, 133.25);
  line-height: 1.5;
}

.post-meta {
  margin: 0;
  color: rgb(133.25, 133.25, 133.25);
  font-size: 13px;
}

.meta-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 6px 0;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ddd;
  background: rgb(253.1, 253.1, 253.1);
  color: #000000;
}

.badge-category {
  border-color: rgb(230.7262295082, 167.9, 105.0737704918);
  background: rgb(249.9139344262, 236.75, 223.5860655738);
}

.badge-tag {
  border-color: rgb(255, 189.72, 91.8);
  background: rgb(255, 244.8, 229.5);
}

.post {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}
.post h1 {
  margin: 6px 0 12px 0;
  color: #000000;
}
.post .post-lead {
  font-size: 16px;
  color: #929292;
  margin-top: 0;
}
.post .post-body {
  line-height: 1.65;
}
.post .post-body h2, .post .post-body h3 {
  color: #D27A22;
  margin-top: 20px;
  margin-bottom: 8px;
}
.post .post-body ul {
  list-style: disc;
  margin-left: 20px;
}

.empty-state {
  color: rgb(133.25, 133.25, 133.25);
  font-style: italic;
}

.blog-cta {
  background: rgb(247.7819672131, 229.1, 210.4180327869);
  border: 1px solid rgb(235.7008196721, 185.75, 135.7991803279);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 12px 0 18px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.blog-cta h2 {
  margin: 0 0 6px 0;
  color: #000000;
}
.blog-cta p {
  margin: 0;
  color: rgb(133.25, 133.25, 133.25);
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .blog-hero {
    padding: 18px;
  }
}

/*# sourceMappingURL=main.css.map */
