/* ==== Content01 ==== */
.cont1 .box-list {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    font-size: var(--font-md);
    color: #414141;
    line-height: 1.5;
}

.box-list ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.box-list ul li {
    position: relative;
    padding-left: 15px;
    font-weight: 500;
}

.box-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 4px;
    height: 4px;
    background: rgba(0, 78, 206, 0.5);
    border-radius: 50%;
}

.box-list ul li strong {
    color: var(--color-black);
    font-weight: 600;
}

.box-card-wrap {
    background: #f5f9ff;
    border-radius: 10px;
    padding: 25px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.box-card-group {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    position: relative;
}

.box-card {
    flex: 1;
    background: #f9f9f9;
    border-radius: 10px;
    outline: 1px solid rgba(112, 112, 112, 0.7);
    outline-offset: -1px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-card.blue {
    background: #f5f9ff;
    outline: 1px solid rgba(0, 78, 206, 0.7);
}

.box-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
    border-radius: 10px;
    padding: 15px 40px;
    color: #414141;
    font-size: var(--font-md);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.box-card.blue .box-item {
    background: rgba(0, 78, 206, 0.1);
    height: 100%;
}

.plus-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background: #707070;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 16px;
    color: white;
}

@media (max-width: 1280px) {
    .cont1 .box-list {
        padding: 26px;
    }

    .cont1 .box-list ul {
        gap: 9px;
    }

    .cont1 .box-list ul li {
        padding-left: 18px;
    }

    .cont1 .box-card-wrap {
        padding: 26px 34px;
    }

    .cont1 .box-item {
        padding: 14px 30px;
    }
}

@media (max-width: 1024px) {
    .cont1 .box-list {
        padding: 22px;
        border-radius: 9px;
    }

    .cont1 .box-list ul {
        gap: 8px;
    }

    .cont1 .box-card-wrap {
        padding: 22px 28px;
    }

    .cont1 .box-item {
        padding: 14px 26px;
        font-size: var(--font-base);
    }
}

@media (max-width: 768px) {
    .cont1 .box-list {
        padding: 18px;
        border-radius: 8px;
        font-size: var(--font-md);
    }

    .cont1 .box-list ul {
        gap: 7px;
    }

    .cont1 .box-list ul li {
        padding-left: 16px;
    }

    .cont1 .box-list ul li::before {
        width: 3px;
        height: 3px;
    }

    .cont1 .box-card-group {
        flex-direction: column;
    }

    .cont1 .box-card {
        padding: 16px;
    }

    .cont1 .box-item {
        padding: 12px 20px;
    }

    .cont1 .plus-box {
        margin: 20px auto 0;
    }
}

@media (max-width: 480px) {
    .cont1 .box-list {
        padding: 16px;
    }

    .cont1 .box-list ul {
        gap: 6px;
    }

    .cont1 .box-list ul li {
        padding-left: 15px;
        font-size: 15px;
    }

    .cont1 .box-card-wrap {
        padding: 18px;
    }

    .cont1 .box-item {
        font-size: var(--font-sm);
        padding: 10px 16px;
    }
}

.tab-list.org {
    margin: 10px 0 40px;
}

.tab-list.org li {
    background-color: transparent;
}

/* ==== Content02 ==== */
.cont2 {
    background-color: #F9F9F9;
}

.cont2 .notice-box {
    width: 100%;
    padding: 30px 35px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(17, 17, 17, 0.1);
}

.cont2 .notice-box .title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--color-black);
}

.cont2 .notice-box .notice-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cont2 .notice-box .subtitle {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--color-black);
}

.cont2 .notice-box .content {
    font-size: var(--font-md);
    font-weight: 500;
    color: #414141;
    line-height: 1.6;
}

.cont2 .notice-box ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 10px;
}

.cont2 .notice-box ul li {
    position: relative;
    padding-left: 10px;
    font-size: var(--font-md);
    font-weight: 500;
    color: #414141;
    line-height: 1.6;
}

.cont2 .notice-box ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0.8em;
    width: 4px;
    height: 4px;
    background: rgba(0, 78, 206, 0.5);
    border-radius: 50%;
}

.product-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-title h3 {
    margin: 0 0 10px 0;
    color: #08429F;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.product-title .info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #414141;
    font-size: var(--font-base);
    font-weight: 500;
}

.product-title .value {
    padding: 2px 8px;
    background: #F1F4F8;
    border-radius: 6px;
    color: #08429F;
    font-weight: 600;
}

.product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 164px;
}

.product-icon img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    display: block;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background-color: #F9F9F9;
    font-size: var(--font-md);
    text-align: left;
}

.product-table thead th {
    padding: 20px 30px;
    font-weight: 600;
    border-bottom: 1px solid var(--color-black);
}

.product-table tbody td {
    padding: 26px 30px;
    border-bottom: 1px solid #888;
    font-weight: 500;
    line-height: 1.6;
    vertical-align: top;
}

.product-table tbody tr:last-child td {
    border-bottom: none;
}

.product-table td[rowspan] {
    border-bottom: none;
}

.product-table td.soon {
    color: #666666;
}

.product-table thead th:not(:last-child),
.product-table tbody td:not(:last-child) {
    border-right: 1px solid #888;
}

.product-table col:nth-child(1) {
    border-right: 1px solid #888;
}

.product-table col:nth-child(2) {
    border-right: 1px solid #888;
}

.product-table td.soon {
    color: #707070;
}

@media (max-width:1024px) {
    .tab-panel-box {
        padding: 28px
    }

    .cont2 .notice-box {
        padding: 25px 30px;
        gap: 15px;
    }

    .product-header {
        gap: 16px;
        align-items: center
    }

    .product-title h3 {
        font-size: 28px
    }

    .product-title .info {
        font-size: var(--font-sm)
    }
}

@media (max-width:768px) {

    .product-table thead {
        position: absolute !important;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .product-table {
        display: block;
        background: transparent;
    }

    .product-table tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .product-table tbody tr.mobile-original {
        display: none !important;
    }

    .product-table tbody tr.mobile-merge {
        display: flex;
        flex-direction: column;
        position: relative;
        border: 1px solid #E5E9F1;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
        overflow: hidden;
    }

    .product-table tbody tr.mobile-merge td {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid #F0F2F6;
        line-height: 1.55;
        word-break: keep-all;
    }

    .product-table tbody tr.mobile-merge td:last-child {
        border-bottom: none;
    }

    .product-table tbody tr.mobile-merge td::before {
        content: '';
        display: block;
        margin-bottom: 6px;
        color: #08429F;
        font-weight: 700;
    }

    .product-table tbody tr.mobile-merge td.m-org::before {
        content: var(--label-org, '단체명');
    }

    .product-table tbody tr.mobile-merge td.m-criteria::before {
        content: var(--label-criteria, '자조금 거출기준·방법');
    }

    .product-table tbody tr.mobile-merge .merge-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .product-table tbody tr.mobile-merge .merge-list li {
        position: relative;
        padding-left: 12px;
    }

    .product-table tbody tr.mobile-merge .merge-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 4px;
        height: 4px;
        background: rgba(0, 78, 206, 0.5);
        border-radius: 50%;
    }

    .product-table tbody td:not(:last-child) {
        border-right: none;
    }

    .product-icon img {
        max-height: 80%;
    }
}

@media (max-width:480px) {

    .product-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
        gap: 5px;
    }

    .tab-panel-box {
        padding: 14px
    }

    .product-title h3 {
        font-size: 24px
    }

    .product-icon {
        width: 120px;
        height: 100px
    }

    .product-table {
        font-size: var(--font-base)
    }

    .product-table tbody td {
        grid-template-columns: 110px 1fr;
        padding: 12px 14px
    }
}