.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-size-12 {
    font-size: 12px;
}

.text-size-14 {
    font-size: 14px;
}

.text-size-16 {
    font-size: 16px;
}

.text-size-18 {
    font-size: 18px;
}

.text-size-20 {
    font-size: 20px;
}

.text-size-30 {
    font-size: 30px !important;
}

.text-size-50 {
    font-size: 50px !important;
}

.text-100 {
    font-weight: 100;
}

.text-200 {
    font-weight: 200;
}

.text-300 {
    font-weight: 300;
}

.text-400 {
    font-weight: 400;
}

.text-500 {
    font-weight: 500;
}

.text-600 {
    font-weight: 600;
}

.text-700 {
    font-weight: 700;
}

.text-800 {
    font-weight: 800;
}

.text-900 {
    font-weight: 900;
}

.text-underline {
    text-decoration: underline;
}

.text-none-underline {
    text-decoration: none !important;
}

.ellipsis {
    display: inline-block; /* 특정 너비를 가지도록 상황에 따라 block or inline-block 으로 변경 */
    overflow: hidden; /* 넘치는 부분 가리기 */
    width: 100%; /* 너비 지정 */
    text-overflow: ellipsis; /* ... 처리하기 */
    white-space: nowrap; /* 줄바꿈 안하기 (한 줄 밑줄임표 적용) */
}

.ellipsis-multi {
    display: block;
    overflow:hidden;
    width: 100%; /* 너비 지정 */
    text-overflow:ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 3번째 줄까지만 글자를 표현하고 그 이후는 줄임 처리 */
}

.text-dark {
    color: #000;
}

.text-dark-2 {
    color: #333;
}

.text-gray {
    color: var(--text-slate);
}

.text-dark-gray {
    color: #666666;
}

.text-light-gray {
    color: #9e9e9e;
}

.text-white {
    color: #fff;
}

.text-red {
    color: #FF4D58;
}

.text-purple {
    color: #667EEA;
}

.text-secession {
    color: #E53754;
}

.text-blue {
    color: #2C73DE;
}

.text-hover:hover {
    cursor: pointer;
}

.text-orange {
    color: #F8A323;
}

.text-sky-blue {
    color: #2096F3;
}

.text-green {
    color: var(--main-green);
}

.text-pink {
    color: var(--accent-coral);
}