.sub-article {
    padding: 80px 0;
}

.pr-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pr-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.pr-box.best {
    position: relative;
    border: 1px solid var(--main-color);
}

.pr-box.best::after {
    content: '가장 인기있어요';
    position: absolute;
    top: -12px; left: 50%;
    transform: translate(-50%, 0);
    color: #fff;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
    background-color: var(--main-color);
}

.pr-line {
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

.pr-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pr-top p {
    color: #555;
    width: 70%;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.pr-top h5 {
    color: #222;
    font-size: 32px;
    letter-spacing: -0.06em;
}

.pr-center {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.prc-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prc-left li {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.prc-left li span {
    font-weight: 300;
    letter-spacing: -0.5px;
}

.prc-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.prc-right span {
    color: #222;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}

.prc-right h5 {
    color: var(--main-color);
    font-size: 50px;
    letter-spacing: -0.06em;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.prc-right h5 em {
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
}

.prc-right span {
    color: #fff;
    padding: 2px 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: -1px;
    border-radius: 2px;
    background-color: #bcbcbc;
}

.pr-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.pr-bottom li span {
    color: #888;
    font-weight: 300;
}

.pr-bottom li {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.prBtn-wrapper {
    display: flex;
    gap: 10px;
}

.prBtn {
    height: 50px;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.prBtn:first-child {
    flex: 2;
}
.prBtn:last-child {
    flex: 3;
}

.prBtn.on {
    color: #fff;
    font-weight: 600;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
}

.prBtn:hover {
    filter: brightness(97%);
}


.pr-title {
    color: #222;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 3rem;
}

.pr2-table-wrapper {
    width: 100%;
    background-color: #fff;
}

.pr2-table {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #e7e7e7;
}

.pr2-table:first-child,
.pr2-table:last-child {
    border-bottom: none;
}

.pr2-table div {
    height: 60px;
    color: #333;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pr2-t-title {
    color: #fff !important;
    font-size: 19px !important;
    font-weight: 600;
}

.pr2-t-title br {
    display: none;
}

.pr2-t-title:nth-child(2) {
    background-color: #fb842d;
}
.pr2-t-title:nth-child(3) {
    background-color: #ff6a00;
}
.pr2-t-title:nth-child(4) {
    background-color: #ff5100;
}

.pr2-table div:first-child {
    min-width: 123px;
    padding-left: 20px;
    justify-content: flex-start;
    background-color: #f7f7f7;
    white-space: nowrap;
}

.pr2-table:first-child div:first-child {
    background-color: transparent;
}

.pr2-table i {
    color: #0fd59f;
    font-size: 26px;
}

.pr2-table div:nth-child(2) i {
    color: #fb842d;
}
.pr2-table div:nth-child(3) i {
    color: #ff6a00;
}
.pr2-table div:nth-child(4) i {
    color: #ff5100;
}

.pr2-table i.ri-close-large-line {
    color: #cdcdcd !important;
    font-size: 18px;
}



.pr4 .pr-title {
    width: 100%;
}

.pr4-notice {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.pr4-notice li {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    list-style-type: '•';
    list-style-position: inside;
}


/*==================================================*/
@media (max-width: 1250px) {   
    .pr-box-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .pr-box {
        width: 400px;
    }
}


@media (max-width: 768px) {
    .pr2-table div {
        height: 45px;
        font-size: 13px;
    }
    
    .pr2-t-title {
        font-size: 15px !important;
    }

    .pr2-table div:first-child {
        padding-left: 13px;
    }

    .pr2-table i {
        font-size: 20px;
    }

    .pr2-table i.ri-close-large-line {
        font-size: 15px;
    }
}


@media (max-width: 550px) {
    .sub-article {
        padding: 40px 0;
    }

    .pr-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .pr-box-wrapper {
        gap: 3rem;
    }
    
    .pr2-table div {
        height: 40px;
        font-size: 12px;
    }
    
    .pr2-t-title {
        padding: 10px;
        font-size: 12px !important;
    }

    .pr2-t-title br {
        display: block;
    }
    
    .pr2-table div:first-child {
        padding-left: 10px;
        min-width: 100px;
    }

    .pr2-table i {
        font-size: 16px;
    }

    .pr2-table i.ri-close-large-line {
        font-size: 13px;
    }

    .pr4-notice {
        gap: 10px;
    }
    
    .pr4-notice li {
        font-size: 13px;
        list-style-position: unset;
    }
}


@media (max-width: 450px) {
    .pr-box {
        width: 100%;
        padding: 35px 30px;
        gap: 1rem;
    }

    .pr-box.best::after {
        font-size: 12px;
        border-radius: 3px;
    }
    
    .pr-top p {
        margin-bottom: 5px;
    }
    
    .pr-top h5 {
        font-size: 28px;
    }

    .pr-line:nth-child(6) {
        display: none;
    }

    .prc-left li {
        font-size: 14px;
    }
    
    .prc-right h5 {
        font-size: 45px;
    }

    .prc-right span {
        font-size: 11px;
    }

    .pr-bottom {
        gap: 5px;
    }

    .prBtn {
        height: 45px;
        font-size: 14px;
    }
}