
.container-card {
  background-color: transparent;
}

.main-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #1e264a;
  overflow: hidden;
  border-radius: 15px;
}

.main-banner .banner-content {
  position: relative;
  z-index: 2; /* 대각선 블록 위에 올라오도록 */
  /* 좌측 여백 */
  padding: 2.5rem 0 0 2rem;
  /* 원하는 넓이만큼 텍스트 박스 크기 설정 (50% 정도 추천) */
  width: 50%;
  color: #fff;

}

.main-banner .banner-subtitle {
  font-size: 1.2rem;
  margin: 0;
  color: #3F79FF;
  font-weight: 600;
  white-space: nowrap;
}

.main-banner .banner-title {
  font-size: 2.6rem; /* 메인 타이틀 크기 */
  margin: 0.5rem 0 1rem 0;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #ffffff;
}


.main-banner .banner-button:hover {
  background-color: #336fbc;
}

.main-banner .banner-button .button-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
}

.main-banner .banner-diagonal {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 20%;
  height: 100%;
  background-color: #2868ff; 

  transform: skewX(-25deg) scaleY(0);
  transform-origin: top right; 

  animation: draw-down 1s ease-out forwards;
  z-index: 1;
}

@keyframes draw-down {
  from {
    transform: skewX(-25deg) scaleY(0);
  }
  to {
    transform: skewX(-25deg) scaleY(1);
  }
}



.main-banner .banner-image {
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: 1;
  height: 60%;
  overflow: hidden;

  animation: slide-in 1s ease-out forwards;
}

@keyframes slide-in {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


.main-banner .banner-logo {
  position: absolute;
  bottom: 30px;
  left:30px;
  z-index:1; 
  height: 9%;
  opacity: 0.5;
}


.main-banner img.symbol {height: 23px; margin-top:-5px; margin-right: 7px;}

.main-banner .banner-image img {
  display: block;
  height: 100%;
  width: auto;
}

.main-banner .banner-logo img {
  display: block;
  height: 100%;
  width: auto;
}




    .now {
      text-align: center;
      font-weight: 600;
      padding: 25px 0 13px 0;
      font-size: 1.1rem;
      letter-spacing: -0.5px;
      color:#707384;
    }
    .now span {
      color: #2768FF;
    }

    /*─────────────────────────────────────────────────────────────────────────────*/
    /*     숫자 슬라이드 애니메이션을 위한 CSS                                       */
    /*─────────────────────────────────────────────────────────────────────────────*/
    .number-wrapper {
      display: inline-block;
      position: relative;
      width: 2ch;    /* 최대 두 자리 숫자를 고려해 충분히 넉넉하게 잡아두었습니다 */
      height: 1.6em;   /* 폰트 크기 1em만큼만 보이도록 고정 */
      overflow: hidden;
      vertical-align: middle;
    }

    .number-wrapper .number {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      text-align: center;
    }

    @keyframes slideOut {
      0% { top: 0; }
      100% { top: -100%; }
    }

    @keyframes slideIn {
      0% { top: 100%; }
      100% { top: 0; }
    }

    .number-wrapper .slide-out {
      animation: slideOut 0.5s forwards;
    }

    .number-wrapper .slide-in {
      animation: slideIn 0.5s forwards;
    }









    .menu-list {
      margin-top: 0.5rem;
      padding: 0 1rem;
    }
    .menu-item {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 10px;
      padding: 1.5rem;
      text-decoration: none;
      margin-bottom: 0.75rem;
      transition: background-color 0.2s, box-shadow 0.2s;
	  border: 1px solid #fff;
    }
    .menu-item:hover {
	border: 1px solid #1E254B;
	    }
    
    .menu-item img.icon {
      width: 3.5rem;
      height: auto;
      margin-right: 1rem;
    }
    .menu-item .menu-text {
      font-size: 1.4rem;
      color: #333;
      font-weight: 600;
      flex: 1;
    }
    .menu-item .menu-subtext {
      font-size: 0.875rem;
      color: #666;
      margin-left: 0.5rem;
      white-space: nowrap;
    }
    
    
    
.menu-chevron {
  color: #D2D4DD;  
  display: flex;
  align-items: center; 
  justify-content: center;
}


.menu-chevron svg {
  width: 25px;
  height: 25px;
}


.menu-item:hover .menu-chevron {
  color: #1E264A;
}



