#sit_inf_explan a {
    color: #ff6400;
    font-weight: 600;
    text-decoration: underline;
}

.goods-info-wrapper {
    position: relative;
    max-height: 4000px;
    /* 처음에 보이는 높이 */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.goods-info-wrapper.expanded {
    max-height: none;
}

.more-overlay {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
    pointer-events: none;
}

#toggle-more-btn {
    display: block;
    width: calc(100% - 20px);
    /* 좌우 여백 합쳐서 빼줌 */
    text-align: center;
    margin: 10px 10px 40px 10px;
    /* ← 상하 여백 15px */
    padding: 10px;
    font-weight: 600;
    font-size: 13px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
}

#bo_v_img {
    width: 95px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bo_v_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 또는 contain */
}

.cols-divider {
    position: relative;
}

.analyze-subtitle {
    color: black;
    font-size: 13px;
    font-weight: 400;
}

.analyze-description {
    color: black;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 3px;
}

.analyze-sub-description {
    color: #999999;
    font-size: 10px;
    font-weight: 300;
    margin-bottom: 3px;
}

.analyze-list li {
    color: black;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.analyze-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pct {
    margin-left: .5rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    /* 숫자 자간 고정 */
    color: #959595;
    font-weight: 300;
}

.ai-tag-cloud {
    color: #ffffff;
    background-color: #f76403;
    padding: 3px 5px 3px 5px;
    border-radius: 7px;
    font-family: 'Freesentation-6SemiBold';
    font-size: 11px;
}

.section-divider {
    background: #f5f5f5;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    height: 70px;
}

.hm-comment {
    position: relative;
    padding: .9rem 1.2rem;
    margin: 10px 0 1.25rem;
    background: #f8f9fa;
    border-left: 4px solid #000000;
    /* border-radius: 6px; */
    font-size: 1rem;
    line-height: 1.55;

    /* 공통 변수 */
    --q-size: 2.6rem;
    --q-top-default: -.3em;
    /* 데스크톱/안드로이드용 */
    --q-top-ios: -.08em;
    /* iOS 보정값 */
}

.sub-divider {
    background: #f5f5f5;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    height: 10px;
}