.project-article {
  width: 90%;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 700;
}

.article-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  text-align: left;
  margin-bottom: 2rem;
  color: #ef0000;
}
.article-content h2,
.improvements-section h2 {
  color: #b22222;
}
.improvement-image h3 {
  color: #b22222;
}
.article-content p,
.improvements-text p,
figcaption {
  color: #444;
}

.copy-link-button {
  border: 1px solid #ef0000;
  background-color: transparent;
  color: #ef0000;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.copy-link-button:hover {
  background-color: #ef0000;
  color: #f5f5df;
}

.article-image-wrapper {
  margin: 1rem 0 2rem;
}

.article-image {
  width: 100%;
  display: block;
  border-radius: 14px;
}

figcaption {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.article-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}

.article-buttons a {
  border: 1px solid #ef0000;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
}

.article-buttons a:hover {
  background-color: #ef0000;
  color: #f5f5df;
}

.article-content {
  max-width: 780px;
  margin: 3rem 0 4rem;
  border-top: 2px solid #ef0000;
  padding-top: 2rem;
}

.article-content h2 {
  font-size: 2rem;
  margin: 2rem 0 0.7rem;
}

.article-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.improvements-section {
  margin-top: 4rem;
}

.improvements-images {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.improvement-image {
  flex: 1;
  min-width: 250px;
  margin: 0;
}

.improvement-image img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(239, 0, 0, 0.25);
}

.improvement-image figcaption {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.improvements-text {
  max-width: 780px;
}

@media (max-width: 700px) {
  .project-article {
    margin-top: 2rem;
  }

  .article-title {
    font-size: 3rem;
  }

  .article-content p {
    font-size: 1rem;
  }
}