/* =========================================================
   IWC Asset Formation Content Skin
   자산형성지원사업 페이지 전용 CSS
========================================================= */

.iwc-asset-page {
    width: 100%;
    max-width: var(--iwc-content-width, 1080px);
    margin: 0 auto;
    color: var(--iwc-color-title, #222);
    font-family: var(--iwc-font-family, 'Pretendard', 'Noto Sans KR', 'Nanum Gothic', sans-serif);
    line-height: 1.8;
    word-break: keep-all;
}

.iwc-asset-page * {
    box-sizing: border-box;
}

/* 상단 요약 */
.iwc-asset-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 22px;
}

.iwc-asset-summary-main {
    position: relative;
    overflow: hidden;
    padding: 36px 38px;
    border-radius: 26px;
    border: 1px solid rgba(0, 131, 203, 0.14);
    background:
        radial-gradient(circle at 92% 18%, rgba(113, 183, 46, 0.13), transparent 28%),
        linear-gradient(135deg, rgba(234, 246, 251, 0.98), rgba(255,255,255,0.98));
    box-shadow: 0 16px 38px rgba(0, 91, 168, 0.06);
}

.iwc-asset-summary-main::after {
    content: "";
    position: absolute;
    right: -58px;
    bottom: -58px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(0, 131, 203, 0.07);
}

.iwc-asset-summary-label {
    display: inline-flex;
    align-items: center;
    height: 30px;
    margin-bottom: 18px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--sd-color-primary-soft, #eaf6fb);
    color: var(--sd-color-primary-dark, #006eb8);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.iwc-asset-summary-main h4 {
    position: relative;
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -0.06em;
    color: var(--iwc-color-title, #222);
}

.iwc-asset-summary-main p {
    position: relative;
    margin: 0;
    font-size: 17px;
    font-weight: 550;
    line-height: 1.82;
    letter-spacing: -0.035em;
    color: var(--iwc-color-text, #333);
}

/* 핵심 포인트 */
.iwc-asset-point-box {
    display: grid;
    gap: 12px;
}

.iwc-asset-point {
    padding: 20px 22px;
    border-radius: 22px;
    border: 1px solid rgba(0, 131, 203, 0.12);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 91, 168, 0.045);
}

.iwc-asset-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: -0.04em;
    color: var(--sd-color-primary-dark, #006eb8);
}

.iwc-asset-point span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -0.03em;
    color: var(--iwc-color-muted, #666);
}

/* 안내 박스 */
.iwc-asset-notice {
    margin-top: 22px;
    padding: 26px 28px;
    border-radius: 24px;
    border: 1px solid rgba(113, 183, 46, 0.22);
    background:
        linear-gradient(135deg, rgba(244, 248, 230, 0.96), rgba(255,255,255,0.98));
    box-shadow: 0 14px 34px rgba(0, 91, 168, 0.045);
}

.iwc-asset-notice h4 {
    margin: 0 0 14px;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.05em;
    color: var(--sd-color-secondary-dark, #58b030);
}

.iwc-asset-notice ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iwc-asset-notice li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    font-weight: 550;
    line-height: 1.72;
    letter-spacing: -0.03em;
    color: var(--iwc-color-text, #333);
}

.iwc-asset-notice li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .78em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sd-color-secondary, #71b72e);
}

/* 계좌 카드 */
.iwc-asset-account-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.iwc-asset-account {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(0, 131, 203, 0.13);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 91, 168, 0.055);
}

.iwc-asset-account::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: var(--sd-gradient-brand, linear-gradient(90deg, #0083cb, #71b72e));
}

.iwc-asset-account-head {
    padding: 30px 28px 22px;
    background:
        radial-gradient(circle at 92% 22%, rgba(0, 131, 203, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(234, 246, 251, 0.76), rgba(255,255,255,0));
}

.iwc-asset-account-tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--sd-color-primary-soft, #eaf6fb);
    color: var(--sd-color-primary-dark, #006eb8);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.iwc-asset-account h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.06em;
    color: var(--iwc-color-title, #222);
}

.iwc-asset-account-body {
    padding: 0 28px 28px;
}

.iwc-asset-spec {
    margin: 0;
}

.iwc-asset-spec div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #edf1f4;
}

.iwc-asset-spec div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.iwc-asset-spec dt {
    margin: 0;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.55;
    color: var(--sd-color-primary-dark, #006eb8);
}

.iwc-asset-spec dd {
    margin: 0;
    font-size: 15px;
    font-weight: 550;
    line-height: 1.62;
    letter-spacing: -0.03em;
    color: var(--iwc-color-text, #333);
}

.iwc-asset-amount {
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    color: var(--sd-color-primary-dark, #006eb8);
}

.iwc-asset-total {
    margin-top: 22px;
    padding: 20px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(234, 246, 251, 0.95), rgba(244, 248, 230, 0.72));
    border: 1px solid rgba(0, 131, 203, 0.1);
    text-align: center;
}

.iwc-asset-total span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--iwc-color-muted, #666);
}

.iwc-asset-total strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.05em;
    color: var(--sd-color-primary-dark, #006eb8);
}

/* 공통 조건 */
.iwc-asset-common {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.iwc-asset-common-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(0, 131, 203, 0.13);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 91, 168, 0.05);
}

.iwc-asset-common-card h4 {
    margin: 0 0 14px;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.05em;
    color: var(--iwc-color-title, #222);
}

.iwc-asset-common-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 550;
    line-height: 1.75;
    letter-spacing: -0.03em;
    color: var(--iwc-color-text, #333);
}

/* 링크 버튼 */
.iwc-asset-link-box {
    margin-top: 30px;
    padding: 32px;
    border-radius: 26px;
    border: 1px solid rgba(0, 131, 203, 0.13);
    background:
        radial-gradient(circle at 10% 18%, rgba(0, 131, 203, 0.08), transparent 30%),
        linear-gradient(135deg, #fff, #f8fbfc);
    box-shadow: 0 16px 38px rgba(0, 91, 168, 0.055);
    text-align: center;
}

.iwc-asset-link-box h4 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.055em;
    color: var(--iwc-color-title, #222);
}

.iwc-asset-link-box p {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: -0.03em;
    color: var(--iwc-color-muted, #666);
}

.iwc-asset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--sd-gradient-primary, linear-gradient(135deg, #006eb8, #0093d9));
    color: #fff !important;
    font-size: 16px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.03em;
    text-decoration: none !important;
    box-shadow: 0 14px 26px rgba(0, 91, 168, 0.18);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.iwc-asset-btn::after {
    content: "↗";
    margin-left: 8px;
    font-size: 15px;
}

/* 관리자 버튼 */
.iwc-content-admin {
    margin-top: 40px;
    text-align: right;
}

.iwc-content-admin a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: #333;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

/* 반응형 */
@media (max-width: 1024px) {
    .iwc-asset-summary {
        grid-template-columns: 1fr;
    }

    .iwc-asset-account-grid {
        grid-template-columns: 1fr;
    }

    .iwc-asset-common {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .iwc-asset-summary-main {
        padding: 30px 26px;
        border-radius: 22px;
    }

    .iwc-asset-account {
        border-radius: 22px;
    }

    .iwc-asset-account-head {
        padding: 28px 24px 20px;
    }

    .iwc-asset-account-body {
        padding: 0 24px 24px;
    }

    .iwc-asset-common-card,
    .iwc-asset-link-box,
    .iwc-asset-notice {
        padding: 26px 24px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .iwc-asset-summary-main {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .iwc-asset-point {
        padding: 18px 20px;
        border-radius: 18px;
    }

    .iwc-asset-notice {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .iwc-asset-spec div {
        display: block;
        padding: 13px 0;
    }

    .iwc-asset-spec dt {
        margin-bottom: 4px;
    }

    .iwc-asset-account-head {
        padding: 26px 20px 18px;
    }

    .iwc-asset-account-body {
        padding: 0 20px 22px;
    }

    .iwc-asset-common-card,
    .iwc-asset-link-box {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .iwc-asset-btn {
        width: 100%;
        padding: 0 18px;
    }
}

/* =========================================================
   자산형성지원사업 비교표
========================================================= */

.iwc-asset-compare-wrap {
    position: relative;
    overflow-x: auto;
    border-radius: 26px;
    border: 1px solid rgba(0, 131, 203, 0.14);
    background: #fff;
    box-shadow: 0 16px 38px rgba(0, 91, 168, 0.055);
}

.iwc-asset-compare-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    background: #fff;
}

.iwc-asset-compare-table th,
.iwc-asset-compare-table td {
    padding: 18px 18px;
    border-right: 1px solid #e8eef3;
    border-bottom: 1px solid #e8eef3;
    font-size: 15px;
    line-height: 1.68;
    letter-spacing: -0.03em;
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
}

.iwc-asset-compare-table th:last-child,
.iwc-asset-compare-table td:last-child {
    border-right: 0;
}

.iwc-asset-compare-table tr:last-child th,
.iwc-asset-compare-table tr:last-child td {
    border-bottom: 0;
}

.iwc-asset-compare-table thead th {
    position: relative;
    padding: 22px 18px;
    background:
        linear-gradient(135deg, rgba(234, 246, 251, 0.98), rgba(244, 248, 230, 0.72));
    color: var(--sd-color-primary-dark, #006eb8);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
}

.iwc-asset-compare-table thead th:first-child {
    width: 140px;
    color: var(--iwc-color-title, #222);
}

.iwc-asset-compare-table tbody th {
    width: 140px;
    background: #f8fbfc;
    color: var(--sd-color-primary-dark, #006eb8);
    font-weight: 850;
}

.iwc-asset-compare-table tbody td {
    color: var(--iwc-color-text, #333);
    font-weight: 550;
}

.iwc-asset-compare-table .iwc-asset-compare-shared {
    background: rgba(234, 246, 251, 0.52);
    font-weight: 700;
    color: var(--iwc-color-emphasis, #1f3433);
}

.iwc-asset-compare-table .iwc-asset-compare-amount {
    display: inline-block;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--sd-color-primary-dark, #006eb8);
}

.iwc-asset-compare-table .iwc-asset-compare-total {
    background: linear-gradient(135deg, rgba(234, 246, 251, 0.82), rgba(244, 248, 230, 0.68));
}

.iwc-asset-compare-table .iwc-asset-compare-total strong {
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    color: var(--sd-color-primary-dark, #006eb8);
}

.iwc-asset-compare-note {
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(234, 246, 251, 0.72);
    border: 1px solid rgba(0, 131, 203, 0.1);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: -0.03em;
    color: var(--iwc-color-muted, #666);
}

.iwc-asset-compare-scroll {
    display: none;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--iwc-color-muted, #666);
}

/* 반응형 */
@media (max-width: 1024px) {
    .iwc-asset-compare-scroll {
        display: block;
    }

    .iwc-asset-compare-wrap {
        border-radius: 22px;
    }

    .iwc-asset-compare-table th,
    .iwc-asset-compare-table td {
        padding: 16px 14px;
        font-size: 14px;
    }

    .iwc-asset-compare-table thead th {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .iwc-asset-compare-wrap {
        border-radius: 18px;
    }

    .iwc-asset-compare-table {
        min-width: 900px;
    }

    .iwc-asset-compare-table th,
    .iwc-asset-compare-table td {
        padding: 14px 12px;
        font-size: 13px;
    }

    .iwc-asset-compare-table .iwc-asset-compare-amount,
    .iwc-asset-compare-table .iwc-asset-compare-total strong {
        font-size: 17px;
    }

    .iwc-asset-compare-note {
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 13px;
    }
}

/* =========================================================
   자산형성지원사업 카드형 비교
========================================================= */

.iwc-asset-readable {
    display: grid;
    gap: 28px;
}

/* 공통 조건 */
.iwc-asset-common-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.iwc-asset-common-item {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 24px 24px 22px;
    border-radius: 24px;
    border: 1px solid rgba(0, 131, 203, 0.13);
    background:
        radial-gradient(circle at 88% 18%, rgba(113, 183, 46, 0.13), transparent 30%),
        linear-gradient(135deg, rgba(234, 246, 251, 0.96), rgba(255,255,255,0.98));
    box-shadow: 0 14px 34px rgba(0, 91, 168, 0.05);
}

.iwc-asset-common-item span {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    color: var(--sd-color-primary-dark, #006eb8);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.iwc-asset-common-item strong {
    display: block;
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.05em;
    color: var(--iwc-color-title, #222);
}

.iwc-asset-common-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 550;
    line-height: 1.65;
    letter-spacing: -0.03em;
    color: var(--iwc-color-muted, #666);
}

/* 통장 카드 */
.iwc-asset-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.iwc-asset-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(0, 131, 203, 0.13);
    background: #fff;
    box-shadow: 0 16px 38px rgba(0, 91, 168, 0.06);
}

.iwc-asset-product-card::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: var(--sd-gradient-brand, linear-gradient(90deg, #0083cb, #71b72e));
}

.iwc-asset-product-head {
    padding: 32px 28px 24px;
    background:
        radial-gradient(circle at 88% 22%, rgba(0, 131, 203, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(234, 246, 251, 0.76), rgba(255,255,255,0));
}

.iwc-asset-product-tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin-bottom: 15px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--sd-color-primary-soft, #eaf6fb);
    color: var(--sd-color-primary-dark, #006eb8);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.iwc-asset-product-head h4 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.06em;
    color: var(--iwc-color-title, #222);
}

.iwc-asset-product-desc {
    margin: 0;
    font-size: 15px;
    font-weight: 550;
    line-height: 1.65;
    letter-spacing: -0.03em;
    color: var(--iwc-color-muted, #666);
}

.iwc-asset-product-body {
    padding: 0 28px 28px;
}

.iwc-asset-product-section {
    padding: 18px 0;
    border-bottom: 1px solid #edf1f4;
}

.iwc-asset-product-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.iwc-asset-product-section .label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--sd-color-primary-dark, #006eb8);
}

.iwc-asset-product-section .text {
    display: block;
    font-size: 15px;
    font-weight: 550;
    line-height: 1.68;
    letter-spacing: -0.03em;
    color: var(--iwc-color-text, #333);
}

.iwc-asset-product-money {
    margin-top: 18px;
    padding: 22px 20px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(234, 246, 251, 0.95), rgba(244, 248, 230, 0.72));
    border: 1px solid rgba(0, 131, 203, 0.1);
    text-align: center;
}

.iwc-asset-product-money span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 850;
    color: var(--iwc-color-muted, #666);
}

.iwc-asset-product-money strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.055em;
    color: var(--sd-color-primary-dark, #006eb8);
}

.iwc-asset-product-support {
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    color: var(--sd-color-primary-dark, #006eb8);
}

/* 하단 유의사항 */
.iwc-asset-readable-note {
    padding: 24px 26px;
    border-radius: 24px;
    border: 1px solid rgba(113, 183, 46, 0.22);
    background:
        linear-gradient(135deg, rgba(244, 248, 230, 0.96), rgba(255,255,255,0.98));
    box-shadow: 0 14px 34px rgba(0, 91, 168, 0.045);
}

.iwc-asset-readable-note strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 900;
    color: var(--sd-color-secondary-dark, #58b030);
}

.iwc-asset-readable-note p {
    margin: 0;
    font-size: 15px;
    font-weight: 550;
    line-height: 1.75;
    letter-spacing: -0.03em;
    color: var(--iwc-color-text, #333);
}

/* 반응형 */
@media (max-width: 1024px) {
    .iwc-asset-common-strip {
        grid-template-columns: 1fr;
    }

    .iwc-asset-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .iwc-asset-common-item,
    .iwc-asset-product-card,
    .iwc-asset-readable-note {
        border-radius: 22px;
    }

    .iwc-asset-product-head {
        padding: 28px 24px 22px;
    }

    .iwc-asset-product-body {
        padding: 0 24px 26px;
    }

    .iwc-asset-product-money strong {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .iwc-asset-common-item {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .iwc-asset-product-card {
        border-radius: 18px;
    }

    .iwc-asset-product-head {
        padding: 26px 20px 20px;
    }

    .iwc-asset-product-body {
        padding: 0 20px 24px;
    }

    .iwc-asset-product-head h4 {
        font-size: 22px;
    }

    .iwc-asset-product-money {
        border-radius: 18px;
    }

    .iwc-asset-readable-note {
        padding: 22px 20px;
        border-radius: 18px;
    }
}

/* 자산형성포털 버튼 hover */
.iwc-asset-btn:hover,
.iwc-asset-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 91, 168, 0.26);
    filter: brightness(1.04);
}

.iwc-asset-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 91, 168, 0.18);
}

.iwc-asset-btn::after {
    transition: transform .22s ease;
}

.iwc-asset-btn:hover::after,
.iwc-asset-btn:focus::after {
    transform: translate(3px, -3px);
}

/* =========================================================
   자산형성지원사업 카드 높이 정렬 보정
   - 카드 내부 항목 위치 통일
========================================================= */

.iwc-asset-product-grid {
    align-items: stretch;
}

.iwc-asset-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iwc-asset-product-head {
    min-height: 176px;
}

.iwc-asset-product-desc {
    min-height: 52px;
}

.iwc-asset-product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* 항목별 최소 높이 통일 */
.iwc-asset-product-body .iwc-asset-product-section:nth-of-type(1) {
    min-height: 126px; /* 가입대상 */
}

.iwc-asset-product-body .iwc-asset-product-section:nth-of-type(2) {
    min-height: 78px; /* 가입기준 */
}

.iwc-asset-product-body .iwc-asset-product-section:nth-of-type(3) {
    min-height: 102px; /* 정부지원금 */
}

.iwc-asset-product-body .iwc-asset-product-section:nth-of-type(4) {
    min-height: 112px; /* 해지조건 */
}

/* 적립액 박스는 항상 카드 하단으로 */
.iwc-asset-product-money {
    margin-top: auto;
}

/* 모바일에서는 고정 높이 해제 */
@media (max-width: 1024px) {
    .iwc-asset-product-head,
    .iwc-asset-product-desc,
    .iwc-asset-product-body .iwc-asset-product-section:nth-of-type(1),
    .iwc-asset-product-body .iwc-asset-product-section:nth-of-type(2),
    .iwc-asset-product-body .iwc-asset-product-section:nth-of-type(3),
    .iwc-asset-product-body .iwc-asset-product-section:nth-of-type(4) {
        min-height: auto;
    }

    .iwc-asset-product-money {
        margin-top: 18px;
    }
}