.iscu_new_u_card_container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
}

.iscu_new_u_card_wrap {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.iscu_new_u_card_head_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e5e5;
}

.iscu_new_u_card_head_image_wrap {
    width: fit-content;
    flex-shrink: 0;
}

.iscu_new_u_card_head_image {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.iscu_new_u_card_head_content_wrap {
    flex: 1;
    min-width: 0;
}

.iscu_new_u_card_head_title_wrap {
    margin-bottom: 8px;
}

.iscu_new_u_card_head_title {
    font-size: 23px !important;
    line-height: 1.25;
    font-weight: 500;
    color: #111111;
    margin: 0;
    padding: 0;
    border: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.iscu_new_u_card_head_cat_wrap {
    display: block;
}

.iscu_new_u_card_head_cat_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.iscu_new_u_card_head_cat {
    font-size: 17px;
    line-height: 1.4;
    color: #4c4c4c;
}

.iscu_new_card_cat_sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #6b6b6b;
    flex-shrink: 0;
}

.iscu_new_u_card_body_section {
    padding: 24px 32px;
}

.iscu_new_u_card_body_head_label_wrap {
    margin-bottom: 4px;
}

.iscu_new_u_card_body_head_label {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: #3a3a3a;
}

.iscu_new_u_card_body_miles_head {
    margin-bottom: 4px;
}

.iscu_new_u_card_body_miles_text {
    font-size: 32px !important;
    line-height: 1.05;
    margin: 0;
    padding: 0;
    border: none;
    color: #1666b3;
    letter-spacing: -1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 500;
}

.iscu_new_u_card_body_miles_head_content {
    margin-bottom: 24px;
}

.iscu_new_u_card_body_miles_head_text {
    font-size: 18px !important;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
}

.iscu_new_u_card_body_charges_list_card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.iscu_new_u_card_body_charges_single_list_card {
    background: #efede8;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
}

.iscu_new_u_card_body_charges_single_list_card_head {
    font-size: 18px;
    line-height: 1.4;
    color: #3f3f3f;
}

.iscu_new_u_card_body_charges_single_list_card_price {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    color: #111111;
}

.iscu_new_u_card_body_charges_single_list_card:nth-child(3) .iscu_new_u_card_body_charges_single_list_card_price,
.iscu_new_u_card_body_charges_single_list_card:nth-child(4) .iscu_new_u_card_body_charges_single_list_card_price {
    color: #0e7a5a;
}

.iscu_new_u_card_body_tags_list_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.iscu_new_u_card_body_single_tags_list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    background: #f4f1eb;
    border: 1px solid #d3ccc2;
    border-radius: 999px;
}

.iscu_new_u_card_body_single_tags_list_text {
    font-size: 17px;
    line-height: 1.3;
    color: #333333;
    white-space: nowrap;
}

.iscu_new_u_card_body_btns_wrap {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.iscu_new_u_card_body_apply_btn_wrap,
.iscu_new_u_card_body_read_btn_wrap {
    width: 100%;
}

.iscu_new_u_card_body_apply_btn,
.iscu_new_u_card_body_read_btn {
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    padding: 17px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    gap: 6px;
    text-transform: none;
    width: max-content;
}

.iscu_new_u_card_body_apply_btn {
    background: #1567b7;
    border: 2px solid #1567b7;
    color: #ffffff;
}

.iscu_new_u_card_body_apply_btn:hover {
    background: #0f57a0;
    border-color: #0f57a0;
}

.iscu_new_u_card_body_read_btn {
    background: transparent;
    border: 3px solid #1567b7;
    color: #1567b7;
}

.iscu_new_u_card_body_read_btn:hover {
    background: #0f57a0;
    border-color: #0f57a0;
    color: #ffffff;
}

.iscu_new_u_card_footer_section {
    padding: 16px 32px;
    border-top: 1px solid #e5e5e5;
    background: #ffffff;
}

.iscu_new_u_card_footer_text {
    font-size: 16px;
    line-height: 1.6;
    color: #343434;
}

@media only screen and (max-width: 768px) {

    .iscu_new_u_card_body_charges_list_card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iscu_new_u_card_body_apply_btn,
    .iscu_new_u_card_body_read_btn {
        padding: 15px 12px;
        min-height: 52px;
    }

    .iscu_new_u_card_body_btns_wrap {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .iscu_new_u_card_body_charges_single_list_card_price,
    .iscu_new_u_card_head_title {
        font-size: 20px !important;
    }

    .iscu_new_u_card_body_miles_text {
        font-size: 28px !important;
    }

    .iscu_new_u_card_body_single_tags_list_text,
    .iscu_new_u_card_body_charges_single_list_card_head,
    .iscu_new_u_card_body_miles_head_text,
    .iscu_new_u_card_body_head_label,
    .iscu_new_u_card_head_cat {
        font-size: 16px !important;
    }

    .iscu_new_u_card_footer_text {
        font-size: 15px;
    }
}

@media only screen and (max-width: 480px) {

    .iscu_new_u_card_head_section,
    .iscu_new_u_card_body_section {
        padding: 20px 24px;
    }

    .iscu_new_u_card_footer_section {
        padding: 16px 24px;
    }

    .iscu_new_u_card_body_charges_list_card {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 24px;
    }

    .iscu_new_u_card_body_charges_single_list_card {
        padding: 15px 18px;
    }

    .iscu_new_u_card_body_apply_btn,
    .iscu_new_u_card_body_read_btn {
        padding: 13px 10px;
        min-height: 48px;
        font-size: 16px;
    }

    .iscu_new_u_card_head_section {
        flex-direction: column;
        align-items: start;
    }
}

@media only screen and (max-width: 375px) {

    .iscu_new_u_card_body_apply_btn,
    .iscu_new_u_card_body_read_btn {
        font-size: 15px;
    }
}

.iscu_new_a_card_container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.iscu_new_a_card_wrap {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.iscu_new_a_card_head_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e5e5;
}

.iscu_new_a_card_head_image_wrap {
    width: fit-content;
    flex-shrink: 0;
}

.iscu_new_a_card_head_image {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.iscu_new_a_card_head_content_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.iscu_new_a_card_head_title {
    font-size: 23px !important;
    line-height: 1.25;
    font-weight: 500;
    color: #111111;
    margin: 0;
    padding: 0;
    border: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.iscu_new_a_card_head_cat_wrap {
    display: block;
}

.iscu_new_a_card_head_cat_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.iscu_new_a_card_head_cat {
    font-size: 17px;
    line-height: 1.4;
    color: #4c4c4c;
}

.iscu_new_card_cat_sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #6b6b6b;
    flex-shrink: 0;
}

.iscu_new_a_card_body_section {
    padding: 24px 32px;
}

.iscu_new_a_card_head_right_side_content {
    text-align: right;
}

.iscu_new_a_card_body_head_label {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: #3a3a3a;
}

.iscu_new_a_card_body_miles_text {
    font-size: 30px !important;
    line-height: 1.05;
    margin: 0;
    padding: 0;
    border: none;
    color: #1666b3;
    letter-spacing: -1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 500;
}

.iscu_new_a_card_body_miles_head_text {
    font-size: 18px !important;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
}

.iscu_new_a_card_body_charges_list_card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.iscu_new_a_card_body_charges_single_list_card {
    background: #efede8;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
}

.iscu_new_a_card_body_charges_single_list_card_head {
    font-size: 18px;
    line-height: 1.4;
    color: #3f3f3f;
}

.iscu_new_a_card_body_charges_single_list_card_price {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    color: #111111;
}

.iscu_new_a_card_body_charges_single_list_card:nth-child(3) .iscu_new_a_card_body_charges_single_list_card_price,
.iscu_new_a_card_body_charges_single_list_card:nth-child(4) .iscu_new_a_card_body_charges_single_list_card_price {
    color: #0e7a5a;
}

.iscu_new_a_card_body_tags_list_btn_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 24px;
}

.iscu_new_a_card_body_tags_list_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.iscu_new_a_card_body_single_tags_list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    background: #f4f1eb;
    border: 1px solid #d3ccc2;
    border-radius: 999px;
}

.iscu_new_a_card_body_single_tags_list_text {
    font-size: 17px;
    line-height: 1.3;
    color: #333333;
    white-space: nowrap;
}

.iscu_new_a_card_body_btns_wrap {
    display: flex;
    gap: 16px;
}

.iscu_new_a_card_body_apply_btn_wrap,
.iscu_new_a_card_body_read_btn_wrap {
    width: 100%;
}

.iscu_new_a_card_body_apply_btn,
.iscu_new_a_card_body_read_btn {
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    gap: 6px;
    text-transform: none;
    width: max-content;
}

.iscu_new_a_card_body_apply_btn {
    background: #1567b7;
    border: 2px solid #1567b7;
    color: #ffffff;
}

.iscu_new_a_card_body_apply_btn:hover {
    background: #0f57a0;
    border-color: #0f57a0;
}

.iscu_new_a_card_body_read_btn {
    background: transparent;
    border: 3px solid #1567b7;
    color: #1567b7;
}

.iscu_new_a_card_body_read_btn:hover {
    background: #0f57a0;
    border-color: #0f57a0;
    color: #ffffff;
}

.iscu_new_a_card_footer_section {
    padding: 16px 0 0 0;
    border-top: 1px solid #e5e5e5;
    background: #ffffff;
}

.iscu_new_a_card_footer_text {
    font-size: 16px;
    line-height: 1.6;
    color: #343434;
}

@media only screen and (max-width: 768px) {

    .iscu_new_a_card_body_charges_list_card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iscu_new_a_card_body_btns_wrap {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .iscu_new_a_card_body_charges_single_list_card_price,
    .iscu_new_a_card_head_title {
        font-size: 20px !important;
    }

    .iscu_new_a_card_body_miles_text {
        font-size: 28px !important;
    }

    .iscu_new_a_card_body_single_tags_list_text,
    .iscu_new_a_card_body_charges_single_list_card_head,
    .iscu_new_a_card_body_miles_head_text,
    .iscu_new_a_card_body_head_label,
    .iscu_new_a_card_head_cat {
        font-size: 16px !important;
    }

    .iscu_new_a_card_footer_text {
        font-size: 15px;
    }
}

@media only screen and (max-width: 480px) {

    .iscu_new_a_card_head_section,
    .iscu_new_a_card_body_section {
        padding: 20px 24px;
    }

    .iscu_new_a_card_body_charges_list_card {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 24px;
    }

    .iscu_new_a_card_body_charges_single_list_card {
        padding: 15px 18px;
    }

    .iscu_new_a_card_body_apply_btn,
    .iscu_new_a_card_body_read_btn {
        padding: 13px 10px;
        min-height: 48px;
    }

    .iscu_new_a_card_head_section {
        flex-direction: column;
        align-items: start;
    }
}

@media only screen and (max-width: 375px) {

    .iscu_new_a_card_body_apply_btn,
    .iscu_new_a_card_body_read_btn {
        font-size: 15px;
    }
}