/* ── banner-ticker ── */
    .banner-ticker {
      position: relative;
      width: 100%;
      height: 60px;
      background: url('https://www.yeongnam.com/mnt/webdata/form/images/긴 배너 배경.jpg') center / cover no-repeat;
      overflow: hidden;
    }

    /* 헤드라인 목록 */
    .banner-ticker ul {
      list-style: none;
      position: relative;
      width: 100%;
      height: 100%;
    }
    .banner-ticker ul li {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 60px;
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }
    .banner-ticker ul li.active {
      opacity: 1;
      pointer-events: auto;
    }

    .banner-ticker ul li .headline {
      font-size: 24px;
      font-weight: 700;
      color: #111;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }
    .banner-ticker ul li .headline a {
      text-decoration: none;
      color: inherit;
    }
    .banner-ticker .ticker-bracket {
      color: #1E27D4 !important;
    }
    .banner-ticker .ticker-rest {
      color: #111 !important;
    }

    /* 모바일: 2줄 */
    @media (max-width: 768px) {
      .banner-ticker {
        height: 80px;
      }
      .banner-ticker ul li {
        padding: 0 40px;
      }
      .banner-ticker ul li .headline {
        white-space: normal;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: clip;
        line-height: 1.5;
        font-size: 16px;
      }
      .banner-ticker .ticker-bracket {
        display: block;
      }
    }