.project-header {
  position: relative;
  margin-bottom: 2rem;
}

.project-background {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.project-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.project-background img {
  position: relative;
  z-index: 2;
  max-width: 200px;
  padding: 2rem;
}

.project-metadata {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-bg-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
}

.project-metadata p {
  margin-bottom: 0.5rem;
}

.project-metadata p:last-child {
  margin-bottom: 0;
}

.entry-content {
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .project-background {
    background-attachment: scroll;
  }
}
