/* scoped: si-HeroBottom */

  .hero-bottom:where(.si-HeroBottom, .si-HeroBottom *){
    width: 100%;
    height: 161px;
    padding: 20px 52px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.8);
  }

  /* ── Divider ── */
  .vdivider:where(.si-HeroBottom, .si-HeroBottom *){
    display: block;
    flex-shrink: 0;
    align-self: center;
    width: 0;
    height: 80px;
    border-left: 1px solid #1A1A1A;
  }

  /* ── Col 1: title ── */
  .title-col:where(.si-HeroBottom, .si-HeroBottom *){
    flex-shrink: 0;
  }

  .hero-title:where(.si-HeroBottom, .si-HeroBottom *){
    display: flex;
    flex-direction: column;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
    gap: 0;
  }

  .hero-title .dark:where(.si-HeroBottom, .si-HeroBottom *){ color: #272727; }
  .hero-title .red:where(.si-HeroBottom, .si-HeroBottom *){ color: #D62121; }

  /* ── Info cols ── */
  .info-col:where(.si-HeroBottom, .si-HeroBottom *){
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 58px;
  }

  .info-heading:where(.si-HeroBottom, .si-HeroBottom *){
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 26px;
  }

  .info-title:where(.si-HeroBottom, .si-HeroBottom *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #272727;
    margin: 0;
  }

  .info-text:where(.si-HeroBottom, .si-HeroBottom *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #272727;
    margin: 0;
    max-width: 297px;
  }

  .info-link:where(.si-HeroBottom, .si-HeroBottom *){
    text-decoration: underline;
    transition: color 0.2s;
  }

  .info-link:hover:where(.si-HeroBottom, .si-HeroBottom *){
    color: #D62121;
  }


