/* 본문 3줄 더보기/접기 — 엔터(빈 줄) 모양은 유지하고 실제 내용 3블록까지만 자름 */
.bo_v_con_wrap {
    display: flex;
    flex-direction: column;
    margin: 10px 0 30px;
    width: 100%;
}

.bo_v_con_wrap #bo_v_con {
    margin: 0;
    position: relative;
    width: 100%;
}

.bo_v_con_wrap #bo_v_con.is-collapsed {
    min-height: 0;
    overflow: hidden;
}

.bo_v_con_more_btn {
    display: none;
    align-items: center;
    align-self: flex-end;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
}

.bo_v_con_more_btn.is-visible {
    display: inline-flex;
}

/* 아래 화살표(∨) — 접기 시 위로 */
.bo_v_con_more_btn::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    flex-shrink: 0;
}

.bo_v_con_more_btn[aria-expanded="true"]::after {
    transform: translateY(2px) rotate(-135deg);
}

.bo_v_con_more_btn:hover {
    color: #000;
    text-decoration: underline;
}
