   /* 탭 메뉴 전체 */
    .custom-tabs {
      display: flex;
      border-bottom: 1px solid #ccc;
      padding-left: 0;
      margin-bottom: 0;
      list-style: none;
    }

	  .custom-tab-item{ width: 33.33%;}

    /* 탭 버튼 기본 */
    .custom-tab-link {
      background-color: #f1f1f1;
      color: #333;
      border: 1px solid #ccc;
      border-bottom: none;
      padding: 10px 18px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s ease-in-out;
		width: 100%;
    }

@media (max-width: 768px) {
/* 탭 버튼 기본 */
    .custom-tab-link {
		font-size: 1.3rem;
      background-color: #f1f1f1;
      color: #333;
      border: 1px solid #ccc;
      border-bottom: none;
      padding: 10px 18px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s ease-in-out;
		width: 100%;
    }
}
    /* 마우스 오버 */
    .custom-tab-link:hover {
      background-color: #e0e0e0;
    }

    /* 활성화된 탭 */
    .custom-tab-link.active {
      background-color: #284181;
      color: #fff;
      border-color: #284181;
    }

    /* 탭 콘텐츠 영역 */
    .custom-tab-content {
      border-radius: 0 0 8px 8px;
      padding: 20px 0;
      background-color: #fff;
      min-height: 200px;
    }

    /* 기본 모든 탭 숨기기 */
    .tab-pane {
      display: none;
    }

    /* 활성 탭만 보이도록 */
    .tab-pane.active {
      display: block;
    }