/* 공통 */
.horse_list_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    position: relative;
}

/* 포인트 바 */
.horse_list_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.horse_list_title:hover::before {
    width: 100px;
}

/* 명예경주마 */
.honor .horse_list_title {
    color: #F07E25;
}

.honor .horse_list_title::before {
    background: linear-gradient(90deg, #F3954C, #F07E25);
}

/* 구조마 */
.normal .horse_list_title {
    color: #2ecc71;
}

.normal .horse_list_title::before {
    background: linear-gradient(90deg, #a8e6cf, #2ecc71);
}

/* 밑줄 */
.horse_list_title::after {
    content: "";
    display: block;
    margin-top: 8px;
    width: 100px;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
}

ul:has(.empty_item) {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}