body {
  font-family: 'Fira Code', monospace;
  font-size: .9rem;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.section {
  margin-top: 2em;
}

.social-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.svg-thm path {
  fill: #4b0082;
}

.social-container a:hover .svg-thm path {
  fill: #000;
}

.social-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  text-decoration: none;
  color: #4b0082;
  transition: color 0.2s ease;
}

.svg-htb .htb-circle,
.svg-thm path {
  fill: #4b0082;
  transition: fill 0.2s ease;
}

.social-container a:hover {
  color: #000;
}

.social-container a:hover .htb-circle,
.social-container a:hover .svg-thm path {
  fill: #000;
}

.social-container i {
  font-size: 2rem;
  line-height: 1;
}

.social-container img,
.social-container svg {
  display: block;
  width: 100%;
  height: 100%;
}

.email {
  color: black;
}

.email:hover {
  color: #4b0082;
  text-decoration: none;
}

.certs {
  margin-top: 1rem;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: #4b0082;
}

a:visited {
  color: #4b0082;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a:active {
  color: #310055;
}

.cert-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.cert-header {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.experience-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.experience-header {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pipe {
  display: inline;
}

.title {
  font-weight: bold;
}

.title,
.description {
  white-space: nowrap;
}

.date {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .cert-entry {
    display: block;
  }

  .cert-pipe {
    display: none;
  }

  .cert-institution {
    display: block;
    margin-top: 0.25rem;
  }

  .cert-date {
    display: block;
    text-align: left;
    white-space: normal;
    margin-top: 0.25rem;
  }


  .experience-entry {
    display: block;
  }

  .experience-header {
    display: block;
  }

  .pipe {
    display: none;
  }

  .title,
  .description,
  .date {
    display: block;
    white-space: normal;
    text-align: left;
    margin-bottom: 0.25rem;
  }
}

.skills-container {
  line-height: 1rem;
  max-width: 900px;
}

.skills-container p {
  margin-bottom: 0.5rem;
}

.skills-container strong {
  font-weight: 600;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  max-width: 1000px;
}

.row {
  display: grid;
  grid-template-columns: 180px 1fr;
  /* adjust label width as needed */
  column-gap: 1.5rem;
  align-items: start;
  /* ensures top alignment for multi-line values */
}

.label {
  font-weight: bold;
  white-space: nowrap;
}

.value {
  line-height: 1.5;
}

ul.flat {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.flat li {
  margin-bottom: 1em;
}

.site-nav {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.nav-sep {
  margin: 0 0.4rem;
  color: #ccc;
}

.site-nav a.active {
  border-bottom: 2px solid #4b0082;
  padding-bottom: 2px;
}

.post-meta {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.post-date {
  display: block;
  color: #666;
  font-size: 0.85rem;
}

.post-content hr {
  margin: 2rem 0;
}

.code-embed {
  margin: 1.5rem 0;
}

.code-embed pre {
  margin: 0;
}

.code-embed figcaption {
  font-size: 0.75rem;
  margin-top: 0.35rem;
}

.post-content img {
  max-width: 100%;
}

.post-content pre[class*="language-"] {
  border-radius: 4px;
  font-size: 0.85rem;
  overflow-x: auto;
}

.post-content code:not([class*="language-"]) {
  background: #f0f0f0;
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-size: 0.9em;
}