:root {
  --primary: #F9BF2B;
  --mild-yellow: #F4C643;
  --red: #F4C643;
  --white: #ffffff;
  --gray: #282827;
  --medium-gray: #E9E9EC;
  --light-gray: #F2F2F8;
  --dark: #3c3c3c;
  --black: #0E0E0E;
}

.project-header {
  padding: 70px 15px;
}
.project-header .background-stripe {
  height: 90px;
  left: 0;
  z-index: 0;
}
.project-header .content .wrapper {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-header .content .wrapper h1 {
  font-size: 3rem;
}
@media screen and (max-width: 575.98px) {
  .project-header .content .wrapper h1 {
    font-size: 2rem;
  }
}
.project-header .content .wrapper p {
  color: var(--gray);
}
.project-header .image img {
  border-radius: 20px;
  width: 520px;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1199.98px) {
  .project-header .image img {
    width: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  .project-header .image img {
    width: 500px;
  }
}
@media screen and (max-width: 767.98px) {
  .project-header .image img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    margin-top: 1.5rem;
  }
}

.post-content {
  max-width: 1024px;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content p, .post-content span, .post-content a, .post-content li, .post-content pre {
  font-size: 1rem;
}
.post-content br {
  display: none;
}
.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.post-content img {
  border-radius: 15px;
}
.post-content .wp-block-gallery {
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.post-content iframe, .post-content video {
  width: 100%;
  border-radius: 20px;
}
.post-content figure {
  margin: 40px 0;
}
.post-content iframe {
  min-height: 450px;
}