body {
  color: #212529 !important;
}

/*.container-fluid*/.resume-section {
  width: 1400px;
  margin-left: 0px;
}

.mb-3 > span {
    text-wrap: nowrap;
}

.bg-primary {
  background-color: #3fbd38 !important;
}

.text-primary {
  color: #3fbd38 !important;
}

a {
  color: #3fbd38;
}

.navbar-dark .navbar-nav .nav-link {
color: rgba(255,255,255,.85);
}

/* Background of the whole code block */
.highlight {
    background-color: #f8f8f8; /* pick your color */
    padding: 0.5rem;
}

.highlight pre {
    margin-bottom: 0px !important;
    background-color: #f8f8f8 !important; /* pick your color */
}

/* =========================================================
   Article hero image (detail page)
   - Normal document flow
   - Explicit separation from content
   - Attribution preserved
   ========================================================= */

.article-hero {
  width: 100%;
}

/* Hero image container */
.article-hero-image {
  width: 100%;
  max-width: 944px;
  margin: 40px auto 48px; /* IMPORTANT: bottom margin prevents overlap */
  overflow: hidden;
  position: relative; /* required for attribution */
  z-index: auto; /* ensure no stacking interference */
  box-shadow:
    0 30px 60px -10px rgba(0, 0, 0, 0.2),
    0 18px 36px -18px rgba(0, 0, 0, 0.22);
}

/* Image itself */
.article-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Attribution (photo credit) */
.article-hero-image-attribution {
  font-size: 10pt;
  text-align: right;
  padding: 6px 8px 0;
  color: var(--grey);
}

.article-hero-image-attribution a {
  color: inherit;
  text-decoration: none;
}

.article-hero-image-attribution a:hover {
  text-decoration: underline;
}

/* =========================
   Mobile adjustments
   ========================= */
@media screen and (max-width: $phablet) {
  .article-hero-image {
    max-width: none;
    width: calc(100vw - 32px);
    margin: 24px auto 36px; /* still needs bottom space */
  }

  .article-hero-image-attribution {
    font-size: 9pt;
  }
}