/* builds.css */

/* Basic container style inherited from main.css – add if needed */
.builds-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  /* Each build card */
  .build-card {
    background: #2f3136; /* or #4A4E57 if you want a lighter box */
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 20px;
    color: #ddd;
  }
  
  /* Title */
  .build-card h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #ffb300;
    margin-bottom: 10px;
  }
  
  /* Sub-summary for date & quick definition */
  .build-summary {
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  /* The link to the actual build/site */
  .build-link {
    display: inline-block;
    background: #ffb300;
    color: #000;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    margin: 10px 0;
  }
  
  .build-link:hover {
    background: #e6a100;
  }
  
  /* Slight spacing for the paragraph describing the project */
  .build-desc {
    margin-top: 10px;
    line-height: 1.5;
    color: #ccc;
  }
  