/* ===== SPEC HIGHLIGHT SECTION ===== */
.iyeg-spec-section {
    background-color: var(--iyeg-spec-bg);
    padding: var(--iyeg-space-lg) 0;
  }
  
  .iyeg-spec-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--iyeg-space-md);
    padding: 0 2rem;
    box-sizing: border-box;
  }
  
  .iyeg-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  .iyeg-spec-item::after {
    content: "";
    position: absolute;
    right: -1rem;
    bottom: 0.625rem;
    height: 3.75rem;
    width: 2px;
    background-color: var(--iyeg-active-green);
  }
  
  .iyeg-spec-item:first-child:before {
    content: "";
    position: absolute;
    left: -1rem;
    bottom: 0.625rem;
    height: 3.75rem;
    width: 2px;
    background-color: var(--iyeg-active-green);
  }
  
  .iyeg-spec__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.25rem;
    object-fit: contain;
  }
  
  .iyeg-spec__icon[alt="Range"] {
    transform: scale(1.39);
    transform-origin: bottom center;
  }
  
  .iyeg-spec__value {
    color: var(--iyeg-active-green);
    /*font-family: "Inter";*/
    font-family: 'Barlow Semi Condensed';
    /*font-size: var(--iyeg-font-size-xl);*/
    font-size: 3rem;
    /*font-weight: 800;*/
    font-weight: 600;
    line-height: 1;
  }
  
  .iyeg-spec__value sup {
    /*font-size: var(--iyeg-font-size-sm);*/
    font-size: var(--iyeg-font-size-base);
    color: #fff;
    margin-left: 0.125rem;
    vertical-align: super;
  }
  
  .iyeg-spec__label {
    color: #ffffff;
    font-size: var(--iyeg-font-size-xs);
    letter-spacing: 0.125rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
  }