@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2") format("woff2");
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2") format("woff2");
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2") format("woff2");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
}

* {
    font-family: "Pretendard";
    font-weight: 400;
    color: #1d1d1d;
    line-height: 1.5;
    letter-spacing: -1px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 17px;
    word-break: keep-all;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline;
}

html {
    scroll-behavior: smooth;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#case-scope header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 60px 0;
    height: 400px;
    position: relative;
    z-index: 1;
}

#case-scope header:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 100%
    );
    z-index: -1;
}

#case-scope header h1 {
    font-weight: 700;
    font-size: 40px;
    color: #fff;
}

#case-scope header .art-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

#case-scope header .art-meta .dot {
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 100%;
}

#case-scope header .art-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

#case-scope header .art-meta div i img {
    height: 14px;
}

#case-scope header .art-meta div time, #case-scope header .art-meta div p {
    color: #fff;
}

#case-scope .grid-container {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-gap: 80px;
    gap: 80px;
    max-width: 1180px;
    width: 100%;
    padding: 80px 20px;
    margin: 0 auto;
}

#case-scope .grid-container nav {
    height: fit-content;
    position: sticky;
    top: 226px;
}

#case-scope .grid-container nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#case-scope .grid-container nav ul li a {
    font-size: 16px;
    border-left: 2px solid #cdd1d5;
    padding: 0 0 0 20px;
}

#case-scope .grid-container nav ul li.active a {
    font-weight: 600;
    color: #003478;
    border-left: 2px solid #003478;
}

#case-scope .grid-container nav ul li:hover a {
    color: #003478;
    border-left: 2px solid #003478;
}

#case-scope .grid-container .page-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#case-scope .grid-container .page-content section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#case-scope .grid-container .page-content section p em {
    font-style: initial;
    font-weight: 600;
}

#case-scope .grid-container .page-content section p strong {
    background: #d6f6e9;
}

#case-scope .grid-container .page-content section h2 {
    font-weight: 700;
    font-size: 24px;
    display: flex;
    gap: 15px;
    align-items: center;
}

#case-scope .grid-container .page-content section h2 i img {
    height: 26px;
}

#case-scope .grid-container .page-content section h3 {
    font-weight: 600;
    font-size: 19px;
}

#case-scope .grid-container .page-content section table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

#case-scope .grid-container .page-content section table th {
    font-weight: 500;
    background-color: #f8f8f8;
    font-size: 16px;
    color: #464c53;
    padding: 10px 0;
}

#case-scope .grid-container .page-content section table td {
    border: 1px solid #ededed;
    border-right: none;
    border-left: none;
    font-size: 16px;
    padding: 15px;
    text-align: center;
}

#case-scope .grid-container .page-content section .list-box {
    padding: 25px;
    background-color: #f8f8f8;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
}

#case-scope .grid-container .page-content section .list-box ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#case-scope .grid-container .page-content section .list-box ul li {
    font-weight: 500;
    position: relative;
    padding-left: 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#case-scope .grid-container .page-content section .list-box ul li p {
    color: #555;
    font-size: 16px;
}

#case-scope .grid-container .page-content section .list-box ul li:before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    min-width: 3px;
    border-radius: 100%;
    background-color: #555;
    position: absolute;
    left: 0;
    top: 9px;
}

#case-scope .grid-container .page-content section .cta-section {
    background: linear-gradient(rgb(183 214 255 / 40%), rgb(233 243 255 / 60%));
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#case-scope .grid-container .page-content section .cta-section a {
    background: #003478;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
}

/*#answer {*/
/*    background: #f8f8f8;*/
/*    border-radius: 10px;*/
/*    padding: 40px;*/
/*}*/

#answer .p-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#scenario .result-card {
    border: 1px solid #e3e8ef;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#scenario .result-card p {
    color: #555;
}

#scenario .result-card h3.ty01 {
    color: #003478;
}

#scenario .result-card h3.ty02 {
    color: #f0932b;
}

#scenario .result-card h3.ty03 {
    color: #bd2c0f;
}

#scenario .result-card .risk-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#scenario .result-card .risk-chart .chart-head {
    color: #999;
    display: flex;
    justify-content: flex-end;
    font-size: 15px;
}

#scenario .result-card .risk-chart .bar-wrap {
    position: relative;
}

#scenario .result-card .risk-chart .bar-wrap .bar {
    background: #efefef;
    height: 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

#scenario .result-card .risk-chart .bar-wrap .bar .seg {
    height: 100%;
    float: left;
}

#scenario .result-card .risk-chart .bar-wrap .bar .seg.senior {
    width: var(--senior);
    background: #a3a4a7;
    border-radius: 5px 0 0 5px;
}

#scenario .result-card .risk-chart .bar-wrap .bar .seg.mine {
    width: var(--mine);
    background: #003b79;
}

#scenario .result-card .risk-chart .bar-wrap .bar .seg.mine.ty02 {
    background: #f0932b;
}

#scenario .result-card .risk-chart .bar-wrap .bar .seg.mine.ty03 {
    background: #bd2c0f;
}

#scenario .result-card .risk-chart .bar-wrap .bar .seg.cost {
    width: var(--cost);
    background: #d9dee7;
}

#scenario .result-card .risk-chart .bar-wrap .bar .marker {
    position: absolute;
    top: 0;
    font-size: 12px;
    height: 100%;
    border-left: 1px dashed #1d1d1d;
    padding-left: 10px;
    left: var(--auction);
}

#scenario .result-card .risk-chart .bar-wrap .total-badge {
    position: absolute;
    left: var(--total);
    top: -14px;
    transform: translateX(-50%);
    padding: 4px 8px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

#scenario .result-card .risk-chart .bar-wrap .total-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 1px;
    height: 7px;
    background: #9aa4b2;
}

#scenario .result-card .risk-chart .legend ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

#scenario .result-card .risk-chart .legend ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #555;
}

#scenario .result-card .risk-chart .legend ul li i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

#scenario .result-card .risk-chart .legend ul li i.senior {
    background: #a3a4a7;
}

#scenario .result-card .risk-chart .legend ul li i.mine {
    background: #003b79;
}

#scenario .result-card .risk-chart .legend ul li i.mine.ty02 {
    background: #f0932b;
}

#scenario .result-card .risk-chart .legend ul li i.mine.ty03 {
    background: #bd2c0f;
}

#scenario .result-card .risk-chart .legend ul li i.cost {
    background: #d9dee7;
}

#related {
    padding-top: 60px;
    border-top: 1px solid #cdd1d5;
}

#related .inner {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #cdd1d5;
}

#related .inner .top {
    background: #f8f8f8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid #e4e4e4;
}

#related .inner .list {
    padding: 40px;
}

#related .inner .list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#related .inner .list ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

#related .inner .list ul li span {
    font-size: 19px;
    font-weight: 300;
    color: #999;
    width: 25px;
    text-align: center;
    display: inline-block;
}

#related .inner .list ul li p {
    font-size: 19px;
    text-underline-offset: 4px;
    text-decoration: underline;
}

#related .inner .list ul li.active span {
    color: #003478;
}

#related .inner .list ul li.active p {
    color: #003478;
    font-weight: 600;
    text-decoration: underline;
}

#related .inner .list ul li:hover span {
    color: #003478;
}

#related .inner .list ul li:hover p {
    color: #003478;
}

#related .inner .list ul li:not(.active):hover p {
    text-decoration: underline;
}

#related .art-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

#related .art-tags span {
    border-radius: 30px;
    padding: 8px 20px;
    color: #464c53;
    border: 1px solid #e4e4e4;
}

#source {
    padding-top: 60px;
    border-top: 1px solid #cdd1d5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row !important;
}

#source a {
    background-color: #f8f8f8;
    color: #555;
    border: 1px solid #e4e4e4;
    font-size: 16px;
    padding: 4px 8px;
    gap: 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

#source .source-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

@media (max-width: 1024px) {
    * {
        font-size: 16px;
    }

    #case-scope header {
        padding: 40px 0;
        height: 260px;
    }

    #case-scope header h1 {
        font-weight: 700;
        font-size: 28px;
        text-align: center;
        padding: 0 20px;
    }

    #case-scope header .art-meta div i img {
        height: 13px;
    }

    #case-scope .grid-container {
        display: block;
        padding: 40px 20px !important;
    }

    #case-scope .grid-container nav {
        display: none;
    }

    #case-scope .grid-container .page-content {
        gap: 40px;
    }

    #case-scope .grid-container .page-content section {
        gap: 20px;
    }

    #case-scope .grid-container .page-content section h2 {
        font-size: 20px;
        gap: 10px;
    }

    #case-scope .grid-container .page-content section h2 i img {
        height: 20px;
    }

    #case-scope .grid-container .page-content section table th {
        font-size: 15px;
        padding: 8px 0;
    }

    #case-scope .grid-container .page-content section table td {
        font-size: 15px;
        padding: 10px;
    }

    #case-scope .grid-container .page-content section .list-box {
        padding: 15px;
    }

    #case-scope .grid-container .page-content section .list-box ul {
        gap: 15px;
    }

    #case-scope .grid-container .page-content section .list-box ul li {
        gap: 5px;
    }

    #case-scope .grid-container .page-content section .list-box ul li p {
        font-size: 14px;
    }

    #case-scope .grid-container .page-content section .cta-section {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }

    #case-scope .grid-container .page-content section .cta-section a {
        padding: 10px;
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    /*#answer {*/
    /*    padding: 20px;*/
    /*}*/

    #scenario .result-card {
        padding: 15px;
        gap: 15px;
    }

    #scenario .result-card .risk-chart {
        gap: 25px;
    }

    #scenario .result-card .risk-chart .chart-head {
        font-size: 13px;
    }

    #scenario .result-card .risk-chart .legend ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #scenario .result-card .risk-chart .legend ul li {
        gap: 4px;
        font-size: 13px;
    }

    #scenario .result-card .risk-chart .legend ul li i {
        width: 8px;
        height: 8px;
    }

    #related {
        padding-top: 50px;
    }

    #related .inner .top {
        padding: 20px;
        gap: 10px;
    }

    #related .inner .top p {
        font-size: 14px;
    }

    #related .inner .list {
        padding: 20px;
    }

    #related .inner .list ul {
        gap: 15px;
    }

    #related .inner .list ul li a {
        gap: 10px;
    }

    #related .inner .list ul li span {
        font-size: 16px;
    }

    #related .inner .list ul li p {
        font-size: 16px;
        text-underline-offset: 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    #related .art-tags {
        gap: 8px;
        flex-wrap: wrap;
    }

    #related .art-tags span {
        padding: 5px 10px;
        font-size: 15px;
    }

    #source {
        padding-top: 50px;
        flex-direction: column !important;
        align-items: flex-start;
        gap: 20px !important;
    }

    #source a {
        font-size: 15px;
    }

    #source .source-list {
        align-items: flex-start;
    }

    p.realtor-quicklink a {
        font-size: 15px;
    }

    #case-scope .grid-container .page-content section .list-box .summary-points {
        grid-template-columns: 1fr;
    }

    #case-scope .grid-container .page-content section .list-box .summary-points dt {
        display: block;
        text-align: left;
        border-right: 0;
        padding: 0 0 6px 0;
    }

    #case-scope .grid-container .page-content section .list-box .summary-points dd {
        padding: 0 0 20px 0;
    }

    #case-scope .grid-container .page-content section .list-box .summary-points dt:not(:first-of-type) {
        border-top: 1px solid #e4e4e4;
        padding-top: 20px;
    }

    #case-scope .grid-container .page-content section .list-box .summary-points dd:not(:first-of-type) {
        border-top: 0;
    }

    #case-scope .grid-container .page-content section .list-box .summary-points dd:last-of-type {
        padding-bottom: 0;
    }

    #case-scope .grid-container .page-content section .check-box .checklist li:before {
        width: 16px;
        height: 16px;
        min-width: 16px;
        border-radius: 4px;
    }

    #case-scope .grid-container .page-content section .check-box .checklist li {
        font-size: 15px;
        gap: 8px;
    }

    #case-scope .grid-container .page-content section .qa-box .judge-list .j-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        cursor: pointer;
        margin-bottom: 0;
    }

    #case-scope .grid-container .page-content section .qa-box .judge-list .j-chev {
        display: inline-block;
        width: 7px;
        height: 7px;
        border-right: 2px solid #8894a0;
        border-bottom: 2px solid #8894a0;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
        flex-shrink: 0;
        margin-bottom: 3px;
    }

    #case-scope .grid-container .page-content section .qa-box .judge-list .j-desc {
        display: none;
        padding-top: 10px;
    }

    #case-scope .grid-container .page-content section .qa-box .judge-list .j-toggle:checked ~ .j-desc {
        display: block;
    }

    #case-scope .grid-container .page-content section .qa-box .judge-list .j-toggle:checked ~ .j-title .j-chev {
        transform: rotate(-135deg);
        margin-bottom: -3px;
    }

    #summary {
        padding: 20px;
    }

    #case-scope .grid-container .page-content section ul.news-list li a {
        padding: 10px;
        gap: 10px;
        flex-direction: column;
        align-items: baseline;
    }

    #case-scope .grid-container .page-content section ul.news-list li a cite {
        font-size: 14px;
        padding-right: 18px;
    }

    #case-scope .grid-container .page-content section ul.news-list li a:after {
        right: 10px;
        font-size: 14px;
        margin-top: 2px;
    }

    #case-scope .grid-container .page-content section .qa-box {
        padding: 18px;
        gap: 14px;
    }

    #case-scope .grid-container .page-content section .q-title, #case-scope .grid-container .page-content section .a-title {
        font-size: 16px;
    }

    #case-scope .grid-container .page-content section .q-title strong, #case-scope .grid-container .page-content section .a-title strong {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    #case-scope #question .q-collapse-inner {
        gap: 14px;
        overflow: hidden;
        min-height: 0;
    }

    #case-scope #answer > .a-title {
        margin-bottom: 14px;
    }

    #case-scope .grid-container .page-content section .a-title {
        margin-top: 16px;
    }

    #case-scope #judgement .qa-box {
        padding: 0;
    }

    #case-scope #source .news-more {
        font-size: 14px;
    }

    #case-scope #question .q-more {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        padding: 12px 0;
        font-size: 14px;
        font-weight: 600;
        color: #003478;
        background: #fff;
        border: 1px solid #e4e7eb;
        border-radius: 8px;
        cursor: pointer;
    }

    #case-scope #question .q-open {
        margin-top: 4px;
    }

    #case-scope #question .q-open::before {
        content: "상세 상황 보기";
    }

    #case-scope #question .q-close {
        margin-top: 16px;
    }

    #case-scope #question .q-close::before {
        content: "접기";
    }

    #case-scope #question .q-collapse {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.35s ease;
    }

    #case-scope #question .q-toggle:checked ~ .q-collapse {
        grid-template-rows: 1fr;
    }

    #case-scope #question .q-toggle:not(:checked) ~ .q-close {
        display: none;
    }

    #case-scope #question .q-toggle:checked ~ .q-open {
        display: none;
    }

    .html-body-container {
        height: calc(100dvh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
        background: #fff;
    }

    #case-scope header .art-meta {
        gap: 5px;
        flex-wrap: wrap;
        padding: 0 20px;
        justify-content: center;
    }

    #case-scope header .art-meta div {
        gap: 3px;
    }

    #case-scope header .art-meta div span, #case-scope header .art-meta div time {
        font-size: 14px;
    }

    #case-scope header .art-meta div img {
        height: 10px;
    }

    #case-scope header .art-meta .dot {
        width: 2px;
        height: 2px;
    }

    #case-scope .grid-container .page-content section h3 {
        font-size: 18px;
    }

    #case-scope .grid-container .page-content section blockquote.pull-quote p {
        font-size: 16px;
    }

    #case-scope .grid-container .page-content section ul.check-list {
        padding: 15px;
        gap: 15px;
    }

    #case-scope .grid-container .page-content section ul.check-list li {
        padding-left: 10px;
    }

    #case-scope .grid-container .page-content section ul.check-list li h3 {
        font-size: 16px;
    }

    #case-scope .grid-container .page-content section ul.check-list li p {
        font-size: 15px;
    }

    #case-scope .grid-container .page-content section ul.news-list li a span {
        font-size: 14px;
        color: #003478;
    }

    #case-scope .grid-container .page-content section table thead tr th {
        font-size: 15px;
        vertical-align: middle;
    }

    #case-scope .grid-container .page-content section table tbody tr th {
        padding: 10px !important;
        font-size: 14px;
    }

    #case-scope .grid-container .page-content section table tbody tr th code {
        font-size: 14px;
    }

    #case-scope .grid-container .page-content section table tbody tr td {
        padding: 10px !important;
        font-size: 14px;
    }

    #case-scope .grid-container .page-content section table tbody tr td cite, #case-scope .grid-container .page-content section table tbody tr td time {
        line-height: 1.5;
        font-size: 14px;
    }

    #case-scope .grid-container .page-content section .realtor-quicklink {
        align-items: baseline;
    }

    #case-scope .grid-container .page-content section .realtor-quicklink a {
        padding: 6px 12px;
        display: block;
        font-size: 15px;
    }

    #case-scope .grid-container .page-content section ol.timeline {
        gap: 20px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year {
        flex-direction: column;
        gap: 15px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .year {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .year .year {
        font-size: 20px;
        width: auto;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .year .year-theme {
        font-size: 16px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail {
        gap: 15px;
        padding: 7px 0 0 25px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail:before {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        border: 3px solid #003478;
        top: 13px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail:after {
        content: "";
        display: block;
        height: calc(100% - 8px - 10px - 25px);
        left: 4px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail .timeline-items {
        gap: 15px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail .timeline-items .timeline-item .ti-content .ti-text {
        font-size: 15px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail .timeline-items .timeline-item .ti-content .ti-news {
        margin-top: 3px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail .timeline-items .timeline-item .ti-content .ti-news li a cite {
        font-size: 13px;
        text-underline-offset: 3px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail .img-box {
        gap: 10px;
    }

    #case-scope .grid-container .page-content section ol.timeline .timeline-year .detail .img-box figure img {
        height: 120px;
    }

    #case-scope .grid-container .page-content section.answer-section {
        padding: 25px 15px;
        gap: 25px;
    }

    #case-scope .grid-container .page-content section.answer-section .art-tags {
        gap: 8px;
    }

    #case-scope .grid-container .page-content section.answer-section .art-tags .art-tag {
        font-size: 13px;
        padding: 3px 9px;
    }

    #case-scope .grid-container .page-content section#faq .faq-list .faq-item .faq-question {
        padding: 15px 70px 15px 30px;
        font-size: 16px;
    }

    #case-scope .grid-container .page-content section#faq .faq-list .faq-item .faq-question:before {
        top: 17px;
        width: 18px;
        height: 18px;
        line-height: 18px !important;
        font-size: 12px;
    }

    #case-scope .grid-container .page-content section#faq .faq-list .faq-item .faq-answer p {
        font-size: 15px;
    }

    #case-scope #question {
        padding: 25px 15px;
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .risk-chart {
        padding-right: 10px;
    }

    .addr-sub {
        font-size: 12px;
    }

    p.realtor-quicklink {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }

    p.realtor-quicklink a {
        font-size: 14px;
    }

    #faq summary.faq-question {
        font-size: 16px;
        padding: 17px 30px 17px 0;
    }

    #faq .faq-answer p {
        font-size: 14px;
        line-height: 1.75;
    }
}

.addr-sub {
    color: #999;
    font-size: 14px;
    display: inline-block;
    margin-top: 2px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.addr-sub a, .addr-sub a:link, .addr-sub a:visited, .addr-sub a:hover, .addr-sub a:active {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}

table.realtor-table {
    table-layout: fixed;
    width: 100%;
}

table.realtor-table th {
    text-align: center !important;
    vertical-align: middle !important;
}

table.realtor-table td {
    word-break: break-word;
    overflow-wrap: anywhere;
    vertical-align: top !important;
}

table.realtor-table td:first-child, table.realtor-table th:first-child {
    width: 30%;
}

table.realtor-table td:first-child {
    text-align: center !important;
    vertical-align: middle !important;
}

table.realtor-table td:nth-child(2), table.realtor-table th:nth-child(2) {
    width: 70%;
}

table.realtor-table td:nth-child(2) {
    text-align: left !important;
}

table.realtor-table td a {
    word-break: break-all;
    overflow-wrap: anywhere;
}

p.realtor-quicklink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 8px;
}

p.realtor-quicklink a {
    background-color: #f8f8f8;
    color: #555;
    border: 1px solid #e4e4e4;
    font-size: 16px;
    font-weight: 400;
    padding: 4px 8px;
    gap: 8px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

img.realtor-badge {
    vertical-align: -3px !important;
    margin-right: 4px !important;
    display: inline !important;
    width: 18px !important;
}

p.file-attachment a {
    background-color: #f8f8f8;
    color: #555;
    border: 1px solid #e4e4e4;
    font-size: 15px;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.table-basis, .table-basis time {
    font-size: 13px;
    color: #999;
}

p.table-basis {
    text-align: right;
    margin: 0;
}

tr.apt-row-hidden {
    display: none;
}

button.apt-more-btn {
    display: block;
    width: 100%;
    margin: 8px 0 0;
    padding: 10px 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #003478;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 8px;
    cursor: pointer;
}

button.apt-more-btn:active {
    transform: scale(0.98);
}

#risk .table-basis {
    margin: 0 0 14px;
    font-size: 13px;
    color: #8894a0;
}

#risk .risk-metrics {
    list-style: none;
    margin: 0 0 14px;
    padding: 6px 18px;
    background: #f6f8fa;
    border-radius: 12px;
}

#risk .risk-metrics li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #e9edf1;
    font-size: 14px;
    line-height: 1.5;
}

#risk .risk-metrics li:last-child {
    border-bottom: 0;
}

#risk .risk-metrics .rk-label {
    flex-shrink: 0;
    color: #4e5968;
}

#risk .risk-metrics .rk-value {
    text-align: right;
    font-weight: 600;
    color: #18171a;
}

#risk .risk-metrics .rk-value strong {
    color: #003478;
    font-weight: 700;
}

#risk .risk-metrics .rk-value strong.rk-lvl.rk-high {
    color: #bd2c0f;
}

#risk .risk-metrics .rk-value strong.rk-lvl.rk-mid {
    color: #f0932b;
}

#risk .risk-metrics .rk-value strong.rk-lvl.rk-low {
    color: #8894a0;
}

#risk .rk-note {
    margin: 0;
    font-size: 12.5px;
    color: #8894a0;
    line-height: 1.6;
}

#faq .faq-list {
    margin: 8px 0 0;
    border-top: 1px solid #e4e7eb;
}

#faq .faq-item {
    border-bottom: 1px solid #e4e4e4;
}

#faq .faq-item, #faq summary.faq-question, #faq summary.faq-question::before {
    transform: none !important;
}

#faq summary.faq-question {
    list-style: none;
    display: block;
    position: relative;
    padding: 15px 70px 15px 40px;
    font-size: 17px;
    font-weight: 400;
    color: #1d1d1d;
    line-height: 1.5;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#faq summary.faq-question::-webkit-details-marker {
    display: none;
}

#faq summary.faq-question::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: #003478;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
}

#faq summary.faq-question::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #8b95a1;
    border-bottom: 2px solid #8b95a1;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease,
    border-color 0.3s ease;
}

#faq .faq-item[open] summary.faq-question {
    color: #1142bf;
}

#faq .faq-item[open] summary.faq-question::after {
    transform: translateY(-20%) rotate(-135deg);
    border-color: #1142bf;
}

#faq .faq-answer p {
    position: relative;
    margin: 0;
    padding: 0 0 15px;
    font-size: 17px;
    color: #555;
    line-height: 1.5;
    font-weight: 200;
}

#faq .faq-answer strong {
    color: #1142bf;
}

#case-scope .grid-container .page-content section .list-box .summary-points {
    display: grid;
    grid-template-columns: 7em 1fr;
    column-gap: 0;
    align-items: stretch;
}

#case-scope .grid-container .page-content section .list-box .summary-points dt {
    font-weight: 500;
    padding: 18px 16px;
}

#case-scope .grid-container .page-content section .list-box .summary-points dd {
    color: #555;
    font-size: 16px;
    text-align: left;
    padding: 18px 0 18px 20px;
}

#case-scope .grid-container .page-content section .list-box .summary-points dt:not(:first-of-type), #case-scope .grid-container .page-content section .list-box .summary-points dd:not(:first-of-type) {
    border-top: 1px solid #e4e4e4;
}

#case-scope .grid-container .page-content section .qa-box {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#case-scope .grid-container .page-content section .q-title {
    font-weight: 600;
    font-size: 18px;
    color: #1d1d1d;
    margin-bottom: -14px;
}

#case-scope .grid-container .page-content section .q-title strong {
    color: #003478;
    background: #003478;
    margin-right: 4px;
}

#case-scope .grid-container .page-content section .qa-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

#case-scope .grid-container .page-content section .a-title {
    font-weight: 600;
    font-size: 18px;
    color: #1d1d1d;
    margin-bottom: -14px;
    margin-top: 20px;
}

#case-scope .grid-container .page-content section .a-title strong {
    color: #003478;
    background: #003478;
    margin-right: 4px;
}

#case-scope .grid-container .page-content section .q-title, #case-scope .grid-container .page-content section .a-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1d;
    line-height: 1.6;
    margin-bottom: -12px;
}

#case-scope .grid-container .page-content section .q-title strong, #case-scope .grid-container .page-content section .a-title strong {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin: 2px 0 0 0;
}

#case-scope .grid-container .page-content section .qa-box .judge-intro {
    font-weight: 600;
    font-size: 16px;
    color: #1d1d1d;
    padding-top: 22px;
    border-top: 1px solid #e4e4e4;
}

#case-scope .grid-container .page-content section .qa-box .judge-list {
    counter-reset: j;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#case-scope .grid-container .page-content section .qa-box .judge-list li {
    counter-increment: j;
    position: relative;
    padding-left: 36px;
}

#case-scope .grid-container .page-content section .qa-box .judge-list li:not(:first-child) {
    border-top: 1px solid #e9e9e9;
    padding-top: 18px;
}

#case-scope .grid-container .page-content section .qa-box .judge-list li:before {
    content: counter(j);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #003478;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

#case-scope .grid-container .page-content section .qa-box .judge-list li:not(:first-child):before {
    top: 18px;
}

#case-scope .grid-container .page-content section .qa-box .judge-list .j-title {
    display: block;
    font-weight: 600;
    font-size: 15.5px;
    color: #1d1d1d;
    background: none;
    margin-bottom: 5px;
}

#case-scope .grid-container .page-content section .qa-box .judge-list li p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

#case-scope .grid-container .page-content section .check-box {
    background-color: #f8f8f8;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#case-scope .grid-container .page-content section .check-box h3 {
    font-weight: 600;
    font-size: 18px;
}

#case-scope .grid-container .page-content section .check-box .checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#case-scope .grid-container .page-content section .check-box .checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #1d1d1d;
}

#case-scope .grid-container .page-content section .check-box .checklist li:before {
    content: "";
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 1px;
    border: 1.5px solid #c4c4c4;
    border-radius: 5px;
    background: #fff;
}

#case-scope .grid-container .page-content section .notice-box {
    background-color: #fbfbfb;
    border: 1px solid #ededed;
    border-radius: 10px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#case-scope .grid-container .page-content section .notice-box .notice-lead {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

#case-scope .grid-container .page-content section .notice-box ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#case-scope .grid-container .page-content section .notice-box ul li {
    position: relative;
    padding-left: 12px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

#case-scope .grid-container .page-content section .notice-box ul li:before {
    content: "·";
    position: absolute;
    left: 2px;
    color: #999;
}

#case-scope .grid-container .page-content section .list-box .summary-points dt:before {
    content: "";
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-right: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003478' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M12 2a7 7 0 00-4 12.7c.5.4.8 1 .9 1.6l.1.7h6l.1-.7c.1-.6.4-1.2.9-1.6A7 7 0 0012 2z'/%3E%3C/svg%3E") no-repeat center / contain;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

#case-scope .grid-container .page-content section .qa-box .judge-list .j-desc {
    display: block;
}

#case-scope .grid-container .page-content section .qa-box .judge-list .j-chev {
    display: none;
}

#summary {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
}

#summary .p-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#case-scope #source:has(ul.news-list) {
    flex-direction: column !important;
    align-items: stretch;
    gap: 16px;
}

#case-scope .grid-container .page-content section ul.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#case-scope .grid-container .page-content section ul.news-list li a {
    padding: 15px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    transition: border-color 0.15s,
    background 0.15s;
    cursor: pointer;
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
}

#case-scope .grid-container .page-content section ul.news-list li a cite {
    font-style: normal;
    font-size: 16px;
    color: #1d1d1d;
    /* 긴 출처명은 한 줄로 말줄임(...) 처리 — ↗ 아이콘 공간 확보 */
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 24px;
}

#case-scope .grid-container .page-content section ul.news-list li a:after {
    content: "↗";
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    color: #999;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 19px;
    margin-top: 2px;
}

#case-scope .grid-container .page-content section ul.news-list li a:hover {
    border-color: #1d1d1d;
    background: #f8f8f8;
}

#case-scope .grid-container .page-content section ul.news-list li a:hover cite {
    font-weight: 500;
    color: #003478;
}

#case-scope .grid-container .page-content section ul.news-list li a:hover:after {
    color: #003478;
}

#case-scope #source ul.news-list[data-collapsed="true"] li:nth-child(n + 3) {
    display: none;
}

#case-scope #source .news-more {
    display: block;
    width: 100%;
    margin: 8px 0 0;
    padding: 10px 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #003478;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s,
    background 0.15s;
}

#case-scope #source .news-more:hover {
    border-color: #003478;
    background: #f8f8f8;
}

#case-scope hr {
    border: none;
    border-top: 1px solid #e4e4e4;
}

#case-scope #question {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#case-scope .qa-box h2 {
    align-items: baseline !important;
}

#case-scope .qa-box h2 i {
    font-style: initial;
    font-size: 22px;
}

#case-scope .qa-box .p-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#case-scope .qa-box .p-wrap p {
    color: #555;
}

#case-scope .qa-box .p-wrap.source {
    gap: 4px;
    align-items: flex-end;
}

#case-scope .qa-box .p-wrap.source p {
    color: #999;
    font-size: 13px;
    text-align: right;
}

#case-scope .qa-box .h3-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#case-scope .qa-box .check-list {
    background: #f8f8f8;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
}

#case-scope .qa-box .check-list li {
    font-weight: 500;
    position: relative;
    padding-left: 15px;
    color: #1d1d1d;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#case-scope .qa-box .check-list li:before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #1d1d1d;
    position: absolute;
    left: 0;
    top: 10px;
}

#case-scope .qa-box .check-list li p {
    font-size: 16px;
    color: #555;
}

#faq .faq-item, #faq summary.faq-question {
    transform: none !important;
}

#faq summary.faq-question:before {
    display: block;
    top: 16px;
    margin-top: 0;
    width: 22px;
    height: 22px;
    line-height: 22px !important;
    font-weight: 300;
    font-size: 14px;
    border-radius: 3px;
    content: "Q";
    position: absolute;
    left: 0;
    background: #003478;
    color: #fff;
    text-align: center;
}

#case-scope #question .q-more {
    display: none;
}

/* news-list 출처 카드 — 긴 출처명 한 줄 말줄임(...).
   flex item 의 ellipsis 함정을 피하려 a 를 block, cite 를 block 으로 강제(가장 견고).
   (safe 반응형의 column/축소 규칙을 덮기 위해 파일 끝에 동일 specificity 로 배치) */
#case-scope .grid-container .page-content section ul.news-list li a {
    display: block;
    position: relative;
    padding-right: 34px; /* 우측 ↗ 아이콘 공간 */
}

#case-scope .grid-container .page-content section ul.news-list li a cite {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    #case-scope #question {
        padding: 25px 15px;
        gap: 25px;
    }
}