
  /* 1. Global Section Styles */
  .awards-container {
    width: 100%;
    margin: 40px 0;
    font-family: 'Be Vietnam Pro', sans-serif;
  }

  /* 2. The Specific Holzkern Title Style with Umber Color */
  .holzkern-textline.line-behind-text.paragraph.umber {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    border: none; /* Reset any default browser borders */
  }


  /* The Line Styling - Matches the Umber color at lower opacity */


  /* 3. Awards Grid Alignment */
  .awards-grid {
    display: flex;
    justify-content: center; /* Centers the logos horizontally */
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0 10px;
  }

  .award-item img {
    height: auto;
    max-height: 95px;
    display: block;
    object-fit: contain;
  }

  /* Mobile Tweaks */
  @media (max-width: 767px) {
    .awards-grid {
      gap: 30px;
    }
    .award-item img {
      max-height: 75px;
    }

  }
