/* SafeAeon Header V2: supplemental rules moved out of inline HTML */
/* Industries rail: replaces the Latest Blogs rail in the platform mega menu */
   /* Industries rail: replaces the Latest Blogs rail in the platform mega menu */
  .blog-rail.industries-rail {
    background: #ffffff;
    color: #3f3f3f;
    border-left: 1px solid rgb(0,0,0, 50%);
  }

  .industries-rail .rail-head {
    display: block;
    margin: 0 0 14px;
  }

  .industries-rail .rail-title {
    color: #3f3f3f;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
  }

  .industries-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .industry-item {
    display: block;
    margin: 0;
    color: #7b7b7b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  a.industry-item:hover,
  a.industry-item:focus-visible {
    color: #19c2e6;
  }

  @media (max-width: 1279px) {
    .industries-rail {
      display: none;
    }
  }
