.title {
  text-align: center;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #777;
}

.text-medium {
  font-size: 14px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section, .build-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  margin-bottom: 20px;
}

.subtitle, .final-title {
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
}

.article-copy {
  text-align: justify;
}

.article-note {
  text-align: center;
  font-size: 12px;
  color: #777;
}

.build-category {
  text-align: center;
}

.build-entry {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.build-entry h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.build-entry p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.build-stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 6px;
  font-size: 10px;
}

.build-stars span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.build-stars img {
  display: block;
  width: 75px;
  height: auto;
}

@media (max-width: 768px) {

  .build-stars {
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 9px;
    line-height: 1;
  }

  .build-stars span {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    width: 100%;
    min-height: 15px;
    gap: 0;
  }

  .build-stars img {
    width: 58px;
    height: auto;
    margin: 0;
    justify-self: start;
  }

}