/* ========================================
Sub Product Category
======================================== */

.sub-product-category {
    padding: calc(120 * var(--vw)) 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(60 * var(--vw));
    width: calc(1300 * var(--vw));
}

/* Category Card */

.sub-category-card {
    position: relative;
    display: block;
    width: 100%;
    height: calc(500 * var(--vw));
    overflow: hidden;
    border-radius: calc(24 * var(--vw));
    background: #f7f7f7;
}

.sub-category-card-content {
    position: relative;
    z-index: 2;
    padding: calc(78 * var(--vw)) calc(58 * var(--vw));
}

.sub-category-card-content h3 {
    margin: 0 0 calc(40 * var(--vw));
    color: #000;
    font-family: "Russo One", sans-serif;
    font-size: calc(38 * var(--vw));
    line-height: 1.15;
}

.sub-category-card-image {
    position: absolute;
    inset: 0;
}

.sub-category-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.sub-category-card:hover .sub-button-more {
    color: #fff;
    background: var(--red);
}

.sub-category-card:hover .sub-category-card-image img {
    transform: scale(1.04);
}


/* ========================================
Sub Category Slider
======================================== */

.sub-category-slider-wrap {
    width: 100%;
    overflow: hidden;
}

.sub-category-slider {
    width: 100%;
    overflow: hidden;
}

.sub-category-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.sub-category-slider .swiper-slide {
    width: calc(480 * var(--vw)) !important;
    flex: 0 0 calc(480 * var(--vw));
}



/* ========================================
Sub Pride Dealer
======================================== */

.sub-pride-dealer {
    padding: calc(120 * var(--vw)) 0;
    overflow: hidden;
    background: #fff;
}

.sub-pride-dealer .inner {
    width: calc(1300 * var(--vw));
    margin: auto;
}

.sub-pride-dealer .sub-section-title {
    margin-bottom: calc(60 * var(--vw));
}


/* Main */

.sub-dealer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(460 * var(--vw));
    overflow: hidden;
    border-radius: calc(24 * var(--vw));
    background: #f4f5f9;
}

.sub-dealer-main-image {
    overflow: hidden;
}

.sub-dealer-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .25s ease;
}

.sub-dealer-main-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(70 * var(--vw)) calc(58 * var(--vw));
}

.sub-dealer-area {
    align-self: flex-start;
    margin-bottom: calc(26 * var(--vw));
    padding: calc(10 * var(--vw)) calc(22 * var(--vw));
    border-radius: calc(999 * var(--vw));
    background: var(--red);
    color: #fff;
    font-size: calc(15 * var(--vw));
    font-weight: 700;
}

.sub-dealer-name {
    margin: 0 0 calc(34 * var(--vw));
    padding-bottom: calc(34 * var(--vw));
    border-bottom: 1px solid #d4d5da;
    color: #111;
    font-size: calc(32 * var(--vw));
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.04em;
}

.sub-dealer-info-list {
    display: flex;
    flex-direction: column;
    gap: calc(14 * var(--vw));
    margin: 0 0 calc(54 * var(--vw));
}

.sub-dealer-info-list div {
    display: grid;
    grid-template-columns: calc(74 * var(--vw)) 1fr;
    gap: 0;
}

.sub-dealer-info-list dt,
.sub-dealer-info-list dd {
    margin: 0;
    font-size: calc(16 * var(--vw));
    line-height: 1.6;
}

.sub-dealer-info-list dt {
    color: #222;
    font-weight: 700;
}

.sub-dealer-info-list dd {
    color: #777;
    font-weight: 400;
}

.sub-dealer-map {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: calc(6 * var(--vw));
    padding-bottom: calc(6 * var(--vw));
    border-bottom: 1px solid #111;
    color: #111;
    font-size: calc(18 * var(--vw));
    font-weight: 700;
    line-height: calc(26 * var(--vw));
}

.sub-dealer-map-icon {
    position: relative;
    display: block;
    width: calc(24 * var(--vw));
    height: calc(24 * var(--vw));
    background: url("/images/icon/icon_map.png")center / cover no-repeat;

}


/* Slider */

.sub-dealer-slider-wrap {
    position: relative;
    margin-top: calc(50 * var(--vw));
}

.sub-dealer-slider {
    overflow: hidden;
}

.sub-dealer-slider .swiper-wrapper {
    align-items: stretch;
}

.sub-dealer-slider .swiper-slide {
    height: auto;
}

.sub-dealer-thumb {
    display: block;
    width: 100%;
    height: calc(305 * var(--vw));
    overflow: hidden;
    border: 0;
    border-radius: calc(20 * var(--vw));
    background: none;
    padding: 0;
}

.sub-dealer-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-dealer-thumb:hover,
.sub-dealer-thumb.is-active {
    opacity: 1;
}



/* Slider Button */

.sub-dealer-slider-button {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: calc(66 * var(--vw));
    height: calc(66 * var(--vw));
    border: 1px solid #d5d5d5;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);

}

.sub-dealer-prev {
    left: calc(-106 * var(--vw));
}

.sub-dealer-next {
    right: calc(-106 * var(--vw));
}

.sub-dealer-slider-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(11 * var(--vw));
    height: calc(11 * var(--vw));
    border-top: calc(2 * var(--vw)) solid #aaa;
    border-right: calc(2 * var(--vw)) solid #aaa;
}

.sub-dealer-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.sub-dealer-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.sub-dealer-slider-button.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}


/* ========================================
Sub Pride Interview
======================================== */

.sub-pride-interview {
    padding: calc(120 * var(--vw)) 0;
    overflow: hidden;
    background: #f5f6fa;
}
.sub-pride-interview .inner {
    width: calc(1300 * var(--vw));
    margin: auto;
}

.sub-pride-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(60 * var(--vw));
}

.sub-pride-title {
    margin: 0;
    color: #222;
    font-family: "Russo One", sans-serif;
    font-size: calc(64 * var(--vw));
    line-height: 1;
}

.sub-pride-title span {
    color: var(--red);
}


/* Slider Controls */

.sub-pride-controls {
    display: flex;
    gap: calc(16 * var(--vw));
}

.sub-pride-button {
    position: relative;
    width: calc(64 * var(--vw));
    height: calc(64 * var(--vw));
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    background: transparent;
    transition:
        border-color .3s,
        opacity .3s;
}


.sub-pride-button:hover {
    border-color: var(--red);
    color: var(--red);
}

.sub-pride-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(12 * var(--vw));
    height: calc(12 * var(--vw));
    border-top: calc(2 * var(--vw)) solid #aaa;
    border-right: calc(2 * var(--vw)) solid #aaa;
}

.sub-pride-button:hover::before {
    border-color: var(--red);
}

.sub-pride-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.sub-pride-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.sub-pride-button.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}


/* Slider */

.sub-pride-slider {
    width: 100%;
    overflow: hidden;
}

.sub-pride-list {
    align-items: stretch;
}

.sub-pride-item {
    height: auto;
}

.sub-pride-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: calc(24 * var(--vw));
    background: #fff;
}


/* Image */

.sub-pride-image {
    width: 100%;
    height: calc(250 * var(--vw));
    overflow: hidden;
}

.sub-pride-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}


/* Content */

.sub-pride-content {
    height: calc(260 * var(--vw));
}

.sub-pride-content h3 {
    padding: calc(50 * var(--vw)) calc(50 * var(--vw)) calc(20 * var(--vw));
    color: #111;
    font-size: calc(24 * var(--vw));
    font-weight: 600;
    letter-spacing: -0.1px;
}

.sub-pride-content p {
    padding: 0 calc(50 * var(--vw)) calc(50 * var(--vw));
    color: #666;
    font-size: calc(18 * var(--vw));
    font-weight: 400;
    line-height: calc(26 * var(--vw));
    letter-spacing: -0.1px;
}

.sub-pride-card:hover .sub-pride-image img {
    transform: scale(1.04);
}




/* ========================================
Sub Product Item
======================================== */

.sub-product-item {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: none;
}

.sub-product-item-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sub-product-item-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sub-product-item .inner {
    position: relative;
    z-index: 2;
    display: flex;
}

.sub-product-item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(1300 * var(--vw));
    min-height: calc(820 * var(--vw));
}

.sub-product-item-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: auto;
}

.sub-product-item-image img {
    display: block;
    width: 100%;
    height: auto;
}

.sub-product-item > .sub-product-item-image {
    width: 100%;
}

.sub-product-item > .sub-product-item-image > img.pc-only {
    position: static;
    max-width: none;
}

.sub-product-item > .sub-product-item-image + .inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.sub-product-item > .sub-product-item-image + .inner .sub-product-item-wrap {
    min-height: 0;
    height: 100%;
}

.sub-product-item-content {
    z-index: 2;
    width: calc(590 * var(--vw));
    padding-bottom: calc(68 * var(--vw));
}

.sub-product-item-category {
    display: inline-block;
    margin-bottom: calc(15 * var(--vw));
    color: var(--red);
    font-family: "Russo One", sans-serif;
    font-size: calc(26 * var(--vw));
}

.sub-product-item-title {
    margin-bottom: calc(30 * var(--vw));
    color: #000;
    font-family: "Russo One", sans-serif;
    font-size: calc(50 * var(--vw));
    line-height: normal;
}

.sub-product-item-title sup {
    font-size: .5em;
    vertical-align: super;
}

.sub-product-item-title .greenX {
    background: url('/images/products/p_X.png');
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0;
    width: calc(40 * var(--vw));
    height: calc(46 * var(--vw));
    margin-top: calc(5 * var(--vw));
}


.sub-product-item-desc {
    width: 100%;
    margin-bottom: calc(40 * var(--vw));
    color: #666;
    font-size: calc(18 * var(--vw));
    font-weight: 300;
    line-height: calc(30 * var(--vw));
    letter-spacing: -1px;
    word-break: keep-all;
}
.sub-product-item-desc sup {
    font-size: calc(10 * var(--vw));
    vertical-align: super;
}

.sub-product-item-reverse {
    background: none;
}

.sub-product-item-reverse .sub-product-item-wrap {
    flex-direction: row-reverse;
}

.sub-product-item-reverse .sub-product-item-content {
    text-align: left;
}

.sub-product-item-center {
    background: none;
}

.sub-product-item-center .sub-product-item-wrap {
    flex-direction: column;
    justify-content: flex-start;
}

.sub-product-item.sub-product-item-center .sub-product-item-content {
    width: 100%;
    padding: calc(100 * var(--vw)) 0 0;
    text-align: center;
}

/* Alignment Racks */
.Scissor-Alignment-Lifts .sub-product-item-content {
    padding-bottom: 0;
}

.Four-Post-Lifts .sub-product-item-content {
    padding-bottom: 0;
}

/* Vehicle Inspection */
.Quick-Check-Inspection .sub-product-item-content {
    width: calc(570 * var(--vw));
    padding-bottom: calc(168 * var(--vw));
}

.Hunter-Quick-Check-Commercial .sub-product-item-content {
    padding-top: calc(100 * var(--vw));
    padding-bottom: 0;
}

/* Heavy Duty */
.TCX635-PHD .sub-product-item-content {
    width: calc(530 * var(--vw));
}



/* ========================================
Detail Visual
======================================== */


.detail-visual {
    position: relative;
    overflow: hidden;
    background: #c90000 url("../images/products/item/PDP_Products_bg.png") center / cover no-repeat;
}

.detail-top-button {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 100;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.detail-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.detail-top-button img {
    display: block;
    width: 100%;
    height: 100%;
}

.detail-top-button:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}
.detail-visual.bg2 {
    position: relative;
    overflow: hidden;
    background: url("/images/products/Products_D_V_bg2.png") bottom / cover no-repeat;
}

.detail-visual .inner {
    position: relative;
    z-index: 2;
    width: calc(1300 * var(--vw));
    margin: auto;
}

.detail-visual-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: calc(1080 * var(--vw));
}

.detail-visual-title {
    margin: 0 0 calc(28 * var(--vw));
    font-family: "Russo One", sans-serif;
    font-size: calc(50 * var(--vw));
    line-height: calc(70 * var(--vw));
}

.detail-visual-title .red {
    display: block;
    color: var(--red);
    font-family: "Russo One", sans-serif;
}

.detail-visual-title .black {
    font-family: "Russo One", sans-serif;
    color: #000;
}
.detail-visual-title .disc {
    display: block;
    font-size: calc(18 * var(--vw));
    color: #777777;
    margin-top: calc(50 * var(--vw));
    line-height: normal;
}

.detail-visual-title .greenX {
    background: url('/images/products/p_X.png');
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0;
    width: calc(66 * var(--vw));
    height: calc(76 * var(--vw));
}

.detail-visual-title sup {
    position: relative;
    top: calc(-10 * var(--vw));
    font-size: calc(40 * var(--vw));
}


.detail-visual-desc {
    max-width: 560px;
    margin: 0 0 calc(60 * var(--vw));
    color: rgb(0 0 0 / 60%);
    font-size: calc(20 * var(--vw));
    line-height: calc(36 * var(--vw));
    letter-spacing: -1px;
}

.detail-product-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.detail-product-image img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.detail-visual > .detail-product-image {
    position: relative;
    width: 100%;
    height: calc(1080 * var(--vw));
}

.detail-visual > .detail-product-image img {
    display: block;
    max-width: none;
    max-height: none;
    height: 100%;
}

.detail-visual > .detail-product-image + .inner {
    position: absolute;
    inset: 0;
    height: 100%;
}

.detail-visual > .detail-product-image + .inner .detail-visual-wrap {
    height: 100%;
}

.detail-visual > .detail-product-image + .inner .detail-visual-content {
    margin-top:calc(260 * var(--vw));
}
/* ========================================
Detail Visual Controls
======================================== */

.detail-visual-controls {
    display: flex;
    gap: calc(14 * var(--vw));
    margin-top: calc(60 * var(--vw));
}

.detail-visual-button {
    position: relative;

    width: calc(58 * var(--vw));
    height: calc(58 * var(--vw));

    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;

    transition: .3s;
}

.detail-visual-button:hover {
    border-color: var(--red);
}

.detail-visual-button::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: calc(11 * var(--vw));
    height: calc(11 * var(--vw));

    border-top: calc(2 * var(--vw)) solid #999;
    border-right: calc(2 * var(--vw)) solid #999;

    transition: .3s;
}

.detail-visual-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.detail-visual-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.detail-visual-button:hover::before {
    border-color: var(--red);
}

.detail-visual-button.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

.detail-visual-button.swiper-button-disabled:hover {
    border-color: #ddd;
}

.detail-visual-button.swiper-button-disabled::before {
    border-color: #999;
}



/* ========================================
Detail Main Features
======================================== */
.detail-features {
    padding: calc(120 * var(--vw)) 0;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.detail-features-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(60 * var(--vw));
}

/* Controls */

.detail-features-controls {
    display: flex;
    gap: calc(16 * var(--vw));
}

.detail-features-button {
    position: relative;
    width: calc(64 * var(--vw));
    height: calc(64 * var(--vw));
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    transition: border-color .3s;
}

.detail-features-button:hover {
    border-color: var(--red);
}

.detail-features-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(12 * var(--vw));
    height: calc(12 * var(--vw));
    border-top: calc(2 * var(--vw)) solid #888;
    border-right: calc(2 * var(--vw)) solid #888;
}

.detail-features-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.detail-features-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.detail-features-button.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}


/* Slider */

.detail-features-slider-wrap {
    width:100%;
    overflow:hidden;
}

.detail-features-slider {
    width:100%;
    overflow:visible;
}

.detail-features-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.detail-features-slider .swiper-slide {
    width: calc(400 * var(--vw)) !important;
    flex: 0 0 calc(400 * var(--vw));
    height: auto;
}


/* Card */

.detail-features-card {
    height: calc(520 * var(--vw));
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: calc(22 * var(--vw));
    background: #fff;
}

.detail-features-image {
    width: 100%;
    height: calc(200 * var(--vw));
    overflow: hidden;
}

.detail-features-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-features-content {
    min-height: calc(320 * var(--vw));
}

.detail-features-content h3 {
    margin: calc(50 * var(--vw)) calc(40 * var(--vw)) calc(20 * var(--vw));
    color: #111;
    font-size: calc(24 * var(--vw));
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.04em;
}

.detail-features-content p {
    margin: 0 calc(40 * var(--vw));
    color: #777;
    font-size: calc(18 * var(--vw));
    line-height: calc(30 * var(--vw));
    letter-spacing: -1px;
    word-break: keep-all;
}


/* ========================================
Detail Summary
======================================== */
.detail-summary {
    width: 100%;
    padding: calc(106 * var(--vw)) 0 calc(100 * var(--vw));
    background: #303030;
    color: #fff;
}

.detail-summary-inner {
    width: calc(1300 * var(--vw));
    margin: 0 auto;
}

.detail-summary-inner .detail-section-title {
    color: #fff;
}

.detail-summary-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: calc(60 * var(--vw));

}

.detail-summary-item {
    display: grid;
    grid-template-columns: calc(68 * var(--vw)) minmax(0, 1fr);
    align-items: center;
    gap: calc(40 * var(--vw));
    min-height: calc(120 * var(--vw));
    padding: calc(31 * var(--vw)) 0;
    border-bottom: 1px solid #464646;
    box-sizing: border-box;
}

.detail-summary-item:nth-child(even) {
    padding-left: calc(50 * var(--vw));
}
.detail-summary-item:nth-child(odd) {
    padding-right: calc(50 * var(--vw));
}

.detail-summary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(58 * var(--vw));
    height: calc(58 * var(--vw));
    color: #fff;
}

.detail-summary-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.detail-summary-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: calc(18 * var(--vw));
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -.02em;
    word-break: keep-all;
}


/* ========================================
Detail Spec
======================================== */

.detail-spec {
    padding: calc(120 * var(--vw)) 0;
    background: #FAFAFA;
    display: flex;
    justify-content: center;
}
.detail-spec .inner {
    width: calc(1300 * var(--vw));
}

.detail-spec-title {
    margin: 0 0 calc(68 * var(--vw));
    color: #000;
    font-family: "Russo One", sans-serif;
    font-size: calc(64 * var(--vw));
    line-height: 1;
}

.detail-spec-title span {
    color: var(--red);
}

.detail-spec-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-spec-content {
    flex: 0 0 calc(650 * var(--vw));
}

.detail-spec-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
}

.detail-spec-row {
    display: grid;
    grid-template-columns: calc(190 * var(--vw)) 1fr;
    align-items: center;
    min-height: calc(72 * var(--vw));
    border-bottom: 1px solid #ccc;
}

.detail-spec-row dt,
.detail-spec-row dd {
    margin: 0;
}

.detail-spec-row dt {
    color: #222;
    font-size: calc(18 * var(--vw));
    font-weight: 700;
    line-height: 1.5;
}

.detail-spec-row dd {
    color: #222;
    font-size: calc(18 * var(--vw));
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -.04em;
}
.detail-spec-subtxt {
    margin-top: 29px;
    color: #777;
    font-size: calc(18 * var(--vw));
}

.detail-spec-buttons {
    display: flex;
    gap: calc(16 * var(--vw));
    margin-top: calc(48 * var(--vw));
}

.detail-spec-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: calc(12 * var(--vw));
    min-width: calc(310 * var(--vw));
    height: calc(58 * var(--vw));
    padding: calc(14 * var(--vw)) calc(50 * var(--vw));
    border-radius: calc(999 * var(--vw));
    border: 1px solid var(--red);
    background: #fff;
    color: var(--red);
    box-sizing: border-box;
    font-size: calc(16 * var(--vw));
    font-weight: 600;
    letter-spacing: .04em;
    transition:
        background-color .3s,
        color .3s,
        transform .3s;
}

.detail-spec-button:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(calc(-2 * var(--vw)));
}

.detail-spec-button-icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: calc(24 * var(--vw));
    height: calc(24 * var(--vw));
    background-color: currentColor;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}


/* Document Icon */

.detail-spec-icon-note {
    -webkit-mask-image: url("/images/icon/icon_note.png");
    mask-image: url("/images/icon/icon_note.png");
}


/* Video Icon */

.detail-spec-icon-video {
    -webkit-mask-image: url("/images/icon/icon_video.png");
    mask-image: url("/images/icon/icon_video.png");
}


/* Product Image */

.detail-spec-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(520 * var(--vw));
    min-height: calc(600 * var(--vw));
}

.detail-spec-image img {
    display: block;
    max-width: 100%;
    max-height: calc(670 * var(--vw));
    width: auto;
    height: auto;
    object-fit: contain;
}

/* TCMPRO Maverick model selector */
.tcmw-detail-spec .detail-section-heading {
    margin-bottom: calc(68 * var(--vw));
}

.tcmw-spec-selector {
    position: relative;
    z-index: 3;
    width: calc(650 * var(--vw));
    margin-bottom: calc(28 * var(--vw));
}

.tcmw-spec-select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: calc(72 * var(--vw));
    padding: 0 calc(26 * var(--vw)) 0 calc(22 * var(--vw));
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    color: #555;
    font-family: inherit;
    font-size: calc(16 * var(--vw));
    font-weight: 500;
    cursor: pointer;
}

.tcmw-spec-select-arrow {
    width: calc(10 * var(--vw));
    height: calc(10 * var(--vw));
    border-right: calc(2 * var(--vw)) solid #111;
    border-bottom: calc(2 * var(--vw)) solid #111;
    transform: translateY(calc(-3 * var(--vw))) rotate(45deg);
    transition: transform .2s ease;
}

.tcmw-spec-selector.is-open .tcmw-spec-select-arrow {
    transform: translateY(calc(3 * var(--vw))) rotate(225deg);
}

.tcmw-spec-options {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 calc(8 * var(--vw)) calc(20 * var(--vw)) rgba(0, 0, 0, .08);
    list-style: none;
}

.tcmw-spec-options[hidden] {
    display: none;
}

.tcmw-spec-option {
    display: block;
    width: 100%;
    height: calc(58 * var(--vw));
    padding: 0 calc(22 * var(--vw));
    border: 0;
    background: #fff;
    color: #555;
    font: inherit;
    font-size: calc(16 * var(--vw));
    text-align: left;
    cursor: pointer;
}

.tcmw-spec-option:hover,
.tcmw-spec-option:focus-visible,
.tcmw-spec-option.is-selected {
    background: #f4f4f4;
    color: var(--red);
}

.tcmw-detail-spec .detail-spec-image img {
    transition: opacity .25s ease;
}

.tcmw-detail-spec .detail-spec-image img.is-changing {
    opacity: 0;
}


/* ========================================
Detail FAQ
======================================== */

.detail-faq {
    display: flex;
    justify-content: center;
    padding: calc(120 * var(--vw)) 0;
    background: #fff;
}

.detail-faq .inner {
    width: calc(1300 * var(--vw));
}
.detail-faq-title {
    margin: 0 0 calc(68 * var(--vw));
    color: #000;
    font-family: "Russo One", sans-serif;
    font-size: calc(64 * var(--vw));
    line-height: 1;
}

.detail-faq-title span {
    color: var(--red);
}

.detail-faq-list {
    border-top: 1px solid #ddd;
}

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

.detail-faq-question {
    display: grid;
    grid-template-columns: calc(50 * var(--vw)) 1fr calc(40 * var(--vw));
    align-items: center;
    gap: 0;

    width: 100%;
    min-height: calc(116 * var(--vw));
    padding: 0;
    border: none;
    color: #111;
    text-align: left;
    background: transparent;
}

.detail-faq-number {
    color: var(--red);
    font-family: "Russo One", sans-serif;
    font-size: calc(24 * var(--vw));
    line-height: 1;
}

.detail-faq-question-text {
    padding: 0 calc(20 * var(--vw)) 0 0;
    font-size: calc(24 * var(--vw));
    font-weight: 600;
    letter-spacing: -.02em;
}

.detail-faq-icon {
    position: relative;
    display: block;
    width: calc(28 * var(--vw));
    height: calc(28 * var(--vw));
    justify-self: end;
}

.detail-faq-icon::before,
.detail-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #111;
    transform: translate(-50%, -50%);
    transition: transform .3s, opacity .3s;
}

.detail-faq-icon::before {
    width: calc(26 * var(--vw));
    height: calc(2 * var(--vw));
}

.detail-faq-icon::after {
    width: calc(2 * var(--vw));
    height: calc(26 * var(--vw));
}

.detail-faq-item.is-active .detail-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}


/* Answer */

.detail-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height .4s ease;
}

.detail-faq-answer-inner {
    padding: calc(30 * var(--vw)) calc(60 * var(--vw));
}

.detail-faq-answer p {
    margin: 0;
    color: #555;
    font-size: calc(18 * var(--vw));
    font-weight: 400;
    line-height: calc(30 * var(--vw));
    letter-spacing: -.02em;
    word-break: keep-all;
}

.detail-faq-answer p strong {
    font-weight: 600;
}




/* ========================================
products-ROICalculator.html
======================================== */

.roi-calculator {
    padding: calc(120 * var(--vw)) 0;
}

.roi-calculator .inner {
    width: calc(1300 * var(--vw));
    margin: auto;
}

.roi-title {
    margin-bottom: calc(100 * var(--vw));
    font-size: calc(40 * var(--vw));
    font-weight: 700;
    line-height: calc(50 * var(--vw));
}

.roi-title span {
    color: var(--red);
    font-family: "Russo One", sans-serif;
}

.roi-product-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(40 * var(--vw));
    margin-bottom: calc(80 * var(--vw));
}

.roi-product-card {
    position: relative;
    height: calc(330 * var(--vw));
    overflow: hidden;
    padding: 0;
    border: 4px solid transparent;
    border-radius: calc(20 * var(--vw));
    background: #f6f6f6;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
}

.roi-product-card.is-active {
    border-color: var(--red);
}

.roi-product-card:focus {
    outline: none;
}

.roi-product-card:focus-visible {
    box-shadow: 0 0 0 2px var(--red);
}

.roi-product-card span {
    position: absolute;
    top: calc(52 * var(--vw));
    left: calc(48 * var(--vw));
    z-index: 2;
    font-size: calc(28 * var(--vw));
    font-weight: 700;
    line-height: 1.05;
}

.roi-product-card img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[data-roi-panel][hidden],
[data-roi-result-panel][hidden] {
    display: none !important;
}

.roi-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(70 * var(--vw)) calc(60 * var(--vw));
}

.roi-form--changer {
    grid-template-columns: repeat(2, 1fr);
    column-gap: calc(110 * var(--vw));
}

.roi-form-item {
    min-width: 0;
}

.roi-form-item label {
    display: flex;
    align-items: center;
    gap: calc(10 * var(--vw));
    margin-bottom: calc(20 * var(--vw));
    font-size: calc(22 * var(--vw));
    color: #000;
    font-weight: 500;
    letter-spacing: -.02em;
}

.roi-input-wrap{
    display:flex;
    align-items:center;
    gap:calc(18 * var(--vw));
    min-width:0;
}

.roi-input{
    flex:1;
    min-width:0;
    height:calc(80 * var(--vw));
    padding:0 calc(24 * var(--vw));
    border:1px solid #ddd;
    color: #999;
    font-size: calc(18 * var(--vw));
    font-weight: 500;
    letter-spacing: -.02em;
}
.roi-input::placeholder{
    color: #999;
    font-size:calc(18 * var(--vw));
}

.roi-input.is-active{
    border-color:var(--red);
}

.roi-input-wrap span{
    font-size:calc(20 * var(--vw));
    font-weight:600;
}

.roi-info{
    width:calc(28 * var(--vw));
    height:calc(28 * var(--vw));

    border:none;
    border-radius:50%;

    background:var(--red);

    color:#fff;

    font-size:calc(15 * var(--vw));
}

.roi-result {
    padding: calc(98 * var(--vw)) 0;
    background: var(--red);
    color: #fff;
}

.roi-result .inner {
    width: calc(1300 * var(--vw));
    margin: auto;
}

.roi-result-formula {
    display: grid;
    align-items: center;
}

.roi-result-symbol {
    position: relative;
    padding: 0;
    font-size: 0;
}

.roi-result-symbol::before,
.roi-result-symbol--equals::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(30 * var(--vw));
    height: calc(3 * var(--vw));
    background: #fff;
    transform: translate(-50%, -50%);
}

.roi-result-symbol--equals::before {
    margin-top: calc(-7 * var(--vw));
}

.roi-result-symbol--equals::after {
    margin-top: calc(7 * var(--vw));
}

.roi-result-formula {
    grid-template-columns: minmax(0, 1fr) 0 minmax(0, 1fr) 0 minmax(0, 1fr);
    column-gap: calc(30 * var(--vw));
    row-gap: calc(55 * var(--vw));
}

.roi-result-item,
.roi-comparison-item {
    min-width: 0;
}

.roi-result-item {
    text-align: left;
}

.roi-result-label {
    display: block;
    margin: 0 0 calc(18 * var(--vw));
    color: #FFA59F;
    font-size: calc(22 * var(--vw));
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.roi-result-output {
    display: grid;
    grid-template-columns: minmax(0, 1fr) calc(20 * var(--vw));
    align-items: center;
    gap: calc(18 * var(--vw));
    min-height: calc(70 * var(--vw));
    padding: 0;
    background: transparent;
    box-sizing: border-box;
    white-space: nowrap;
}

.roi-result-value {
    display: flex;
    flex: 1;
    align-items: center;
    min-width: 0;
    min-height: calc(70 * var(--vw));
    padding: 0 calc(26 * var(--vw));
    background: #B20B00;
    font-size: calc(26 * var(--vw));
    font-weight: 700;
    line-height: normal;
    letter-spacing: -.02em;
    box-sizing: border-box;
}

.roi-result-output > em {
    width: max-content;
    margin-left: 0;
    font-size: calc(22 * var(--vw));
    font-style: normal;
    font-weight: 400;
}

.roi-result-formula > .roi-result-symbol {
    align-self: end;
    height: calc(70 * var(--vw));
    min-height: 0;
}

.roi-result-formula .roi-result-item--metric {
    min-height: 0;
    border-left: 0;
}

.roi-result-formula .roi-result-item:nth-child(6) {
    grid-column: 1;
    grid-row: 2;
}

.roi-result-formula .roi-result-item:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
}

.roi-result--changer {
    padding: calc(70 * var(--vw)) 0;
}

.roi-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: calc(80 * var(--vw));
    row-gap: calc(38 * var(--vw));
}

.roi-comparison-item--total {
    padding: calc(38 * var(--vw)) 0 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
}
.roi-comparison-item--tip .roi-tooltip { vertical-align: middle; }
.roi-comparison-item--tip .roi-info { background: #fff; color: var(--red); }
.roi-comparison-item--tip .roi-tooltip-box { color: var(--red); background: #fff; }
.roi-comparison-item--tip .roi-tooltip-box::before { border-bottom-color: #fff; }

/* ROI Tooltip */

.roi-tooltip{
    position:relative;
    display:inline-flex;
    align-items:center;
}

.roi-tooltip-box{
    position: absolute;
    left: calc(90 * var(--vw));
    top: calc(50 * var(--vw));
    transform: translateX(-50%);
    min-width: calc(210 * var(--vw));
    padding: calc(20 * var(--vw));
    border-radius: calc(15 * var(--vw));
    background: var(--red);
    color: #fff;
    font-size: calc(16 * var(--vw));
    font-weight: 400;
    line-height: calc(20 * var(--vw));
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s;
    z-index: 30;
    word-break: keep-all;
}

.roi-tooltip-box::before{
    content:"";
    position:absolute;
    left:20%;
    top:calc(-12 * var(--vw));
    transform:translateX(-50%);

    width:0;
    height:0;

    border-left:calc(12 * var(--vw)) solid transparent;
    border-right:calc(12 * var(--vw)) solid transparent;
    border-bottom:calc(14 * var(--vw)) solid var(--red);
}

.roi-tooltip:hover .roi-tooltip-box,
.roi-tooltip:focus-within .roi-tooltip-box{
    opacity:1;
    visibility:visible;
}



/* ========================================
products-ROICalculator.html , Products Hero
======================================== */

.sub-products-visual{
    position:relative;
    width:100%;
    height:calc(1080 * var(--vw));
    overflow:hidden;
}

.sub-products-visual-bg{
    position:absolute;
    inset:0;
    background-color:#c90000;
}

.sub-products-visual-bg picture,
.sub-products-visual-bg img{
    display:block;
    width:100%;
    height:100%;
}

.sub-products-visual-bg img{
    object-fit:cover;
}

.sub-products-visual .inner{
    position:relative;
    z-index:2;
    width:calc(1300 * var(--vw));
    height:calc(1080 * var(--vw));
    margin:calc(110 * var(--vw)) auto 0;
}

.sub-products-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: calc(800 * var(--vw));
    padding-top: calc(51 * var(--vw));
}

.sub-products-category{
    flex:0 0 calc(300 * var(--vw));
    padding-bottom:calc(100 * var(--vw));
}

.sub-products-category-list{
    margin:0;
    padding:0;
    list-style:none;
}

.sub-products-category-list li+li{
    margin-top:0;
}

.sub-products-category-button{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    height:calc(70 * var(--vw));
    padding:0 calc(20 * var(--vw));
    border:none;
    background:transparent;
    color:#000;
    transition:.3s;
}

.sub-products-category-button span{
    font-size:calc(18 * var(--vw));
    font-weight:700;
    text-align:left;
}

.sub-products-category-button i{
    width:calc(10 * var(--vw));
    height:calc(10 * var(--vw));
    border-top:2px solid currentColor;
    border-right:2px solid currentColor;
    transform:rotate(45deg);
    opacity:0;
}

.sub-products-category-list li.is-active .sub-products-category-button{
    background:var(--red);
    color:#fff;
}

.sub-products-category-list li.is-active .sub-products-category-button i{
    opacity:1;
}

.sub-products-main{
    position:relative;
    flex:0 0 calc(990 * var(--vw));
    width:calc(990 * var(--vw));
    min-width:0;
    min-height:calc(800 * var(--vw));
}

.sub-products-group{
    position:absolute;
    inset:0;
    width:100%;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.sub-products-group.is-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.sub-products-visual .sub-products-swiper{
    width:100%;
    overflow:visible !important;
}

.sub-products-visual .sub-products-swiper .swiper-wrapper,
.sub-products-visual .sub-products-swiper .swiper-slide{
    overflow:visible;
}

.sub-products-swiper .swiper-wrapper{
    align-items:stretch;
}

.sub-products-swiper .swiper-slide{
    width:100%;
    height:auto;
}

.sub-products-slide{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    min-height:calc(800 * var(--vw));
}

.sub-products-image{
    display:none;
    justify-content:center;
    align-items:flex-end;
    flex:0 0 calc(660 * var(--vw));
    width:calc(660 * var(--vw));
    min-width:0;
}

.sub-products-image img{
    display:block;
    max-width:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    position: absolute;
    bottom:calc(70 * var(--vw));
}


.sub-products-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    flex:0 0 calc(430 * var(--vw));
    width:calc(430 * var(--vw));
    min-width:0;
    position: absolute;
    right: 0;
    transform:translateY(calc(-43 * var(--vw)));
    z-index:4;
}

.sub-products-title{
    margin:0 0 calc(30 * var(--vw));
    color:#000;
    font-family:"Russo One",sans-serif;
    font-size:calc(52 * var(--vw));
    font-weight:400;
    line-height:calc(60 * var(--vw));
    letter-spacing:0;
    word-break:keep-all;
}

.sub-products-title sup,
.sub-products-desc sup{
    font-size:.7em;
    line-height:0;
    vertical-align:super;
}

.sub-products-title .greenX{
    display:inline-block;
    width:calc(40 * var(--vw));
    height:calc(46 * var(--vw));
    margin-left:calc(8 * var(--vw));
    object-fit:contain;
    vertical-align:calc(-6 * var(--vw));
}


.sub-products-desc{
    margin:0;
    color:#666;
    font-family:"Pretendard",sans-serif;
    font-size:calc(17 * var(--vw));
    font-weight:400;
    line-height:calc(28 * var(--vw));
    letter-spacing:calc(-1 * var(--vw));
    word-break:keep-all;
}

.sub-products-controls{
    position: absolute;
    z-index: 5;
    left: calc(560 * var(--vw));
    bottom: calc(254 * var(--vw));
    display: flex;
    gap: calc(14 * var(--vw));
}

.sub-products-control-button{
    position:relative;
    width:calc(64 * var(--vw));
    height:calc(64 * var(--vw));
    border:1px solid #aaa;
    border-radius:50%;
    background:transparent;
    transition:.3s;
}

.sub-products-control-button:hover{
    border-color:var(--red);
}

.sub-products-control-button::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:calc(12 * var(--vw));
    height:calc(12 * var(--vw));
    border-top:2px solid #aaa;
    border-right:2px solid #aaa;
}

.sub-products-prev::before{
    transform:translate(-40%,-50%) rotate(-135deg);
}

.sub-products-next::before{
    transform:translate(-60%,-50%) rotate(45deg);
}

.sub-products-control-button:hover::before{
    border-color:var(--red);
}

.sub-products-control-button.swiper-button-disabled{
    opacity:.35;
    pointer-events:none;
}

.sub-products-pagination,
.sub-products-mobile-category,
.sub-products-more{
    display:none;
}

.mobile-products{
    display:none;
}

/* ROI Calculator products section - desktop visual */
    .sub-products-visual-bg{
        background:#c90000 url("../images/products/P_Calculator_Products_bg.png") center / cover no-repeat;
    }
    .sub-products-visual-bg img{
        object-fit:cover;
        transform:none;
    }
    .sub-products-visual .inner{
        width:calc(1300 * var(--vw));
        height:100%;
        margin:0 auto;
    }
    .sub-products-content{
        position:relative;
        display:block;
        width:100%;
        height:100%;
        padding:0;
    }
    .sub-products-main{
        position:absolute;
        inset:0;
        width:100%;
        min-height:0;
    }
    .sub-products-group,
    .sub-products-visual .sub-products-swiper,
    .sub-products-swiper .swiper-wrapper,
    .sub-products-swiper .swiper-slide,
    .sub-products-slide{
        width:100%;
        height:100%;
        min-height:0;
    }
    .sub-products-category{
        position:relative;
        z-index:5;
    }
    .sub-products-slide .sub-products-image{
        position:absolute;
        top:0;
        bottom:auto;
        left:50%;
        display:block;
        width:min(100vw, 1920px);
        height:calc(1080 * var(--vw));
        transform:translateX(-50%);
    }
    .sub-products-slide .sub-products-image picture{
        display:block;
        width:100%;
        height:100%;
    }
    .sub-products-slide .sub-products-image img,
    .sub-products-slide:not(.sub-products-slide-horizontal) .sub-products-image img,
    .sub-products-slide-horizontal .sub-products-image img{
        position:static;
        display:block;
        width:100% !important;
        height:100% !important;
        max-width:none !important;
        max-height:none !important;
        object-fit:contain;
        transform:none !important;
    }
    .sub-products-slide .sub-products-info,
    .sub-products-slide:not(.sub-products-slide-horizontal) .sub-products-info,
    .sub-products-slide-horizontal .sub-products-info,
    .sub-products-group[data-category="heavy"] .sub-products-slide:not(.sub-products-slide-horizontal) .sub-products-info{
        position:absolute;
        top:calc(305 * var(--vw)) !important;
        right:auto !important;
        bottom:auto !important;
        left:0 !important;
        display:block;
        width:calc(660 * var(--vw)) !important;
        max-width:none !important;
        text-align:left !important;
        transform:none !important;
    }
    .sub-products-mobile-category{
        display:block;
        margin-bottom:calc(15 * var(--vw));
        color:var(--red);
        font-family:"Russo One",sans-serif;
        font-size:calc(24 * var(--vw));
        font-weight:400;
        line-height:normal;
        letter-spacing:0;
    }
    .sub-products-more{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        width:calc(154 * var(--vw));
        min-width:0;
        height:calc(62 * var(--vw));
        min-height:0;
        margin-top:calc(40 * var(--vw));
        padding:0;
        border:1px solid var(--red);
        border-radius:999px;
        background:transparent;
        box-sizing:border-box;
        color:var(--red);
        font-size:calc(16 * var(--vw));
        line-height:1;
        font-weight:600;
        letter-spacing:.35em;
    }
    .sub-products-group .sub-products-controls,
    .sub-products-group:has(.swiper-slide-active .sub-products-slide:not(.sub-products-slide-horizontal)) .sub-products-controls,
    .sub-products-group:has(.swiper-slide-active .sub-products-slide-horizontal) .sub-products-controls,
    .sub-products-group[data-category="heavy"]:has(.swiper-slide-active .sub-products-slide:not(.sub-products-slide-horizontal)) .sub-products-controls{
        top:calc(180 * var(--vw)) !important;
        right:auto !important;
        bottom:auto !important;
        left:0 !important;
        gap:calc(14 * var(--vw));
        transform:none !important;
    }
    .sub-products-control-button{
        width:calc(66 * var(--vw));
        height:calc(66 * var(--vw));
        background:rgba(255,255,255,.15);
    }
    .sub-products-category{
        position:absolute;
        right:0;
        bottom:calc(61 * var(--vw));
        left:0;
        z-index:10;
        width:100%;
        height:calc(75 * var(--vw));
        padding:0;
    }
    .sub-products-category::after{
        position:absolute;
        bottom:0;
        left:50%;
        z-index:-1;
        width:100vw;
        height:1px;
        background:rgba(255,255,255,.24);
        content:"";
        transform:translateX(-50%);
    }
    .sub-products-category-list{
        display:grid;
        grid-template-columns:repeat(7,minmax(0,1fr));
        align-items:end;
        width:100%;
        height:100%;
    }
    .sub-products-category-list li{align-self:stretch;}
    .sub-products-category-button{
        position:relative;
        align-items:flex-start;
        justify-content:flex-start;
        height:100%;
        padding:calc(22 * var(--vw)) 0 0;
        color:rgba(255,255,255,.52);
    }
    .sub-products-category-button::after{
        position:absolute;
        right:0;
        bottom:0;
        left:0;
        height:1px;
        background:transparent;
        content:"";
    }
    .sub-products-category-button span{
        max-width:calc(125 * var(--vw));
        color:inherit;
        font-size:calc(18 * var(--vw));
        line-height:1.2;
    }
    .sub-products-category-button i{display:none;}
    .sub-products-category-list li.is-active .sub-products-category-button{
        background:transparent;
        color:#fff;
    }
    .sub-products-category-list li.is-active .sub-products-category-button::after{
        height:calc(2 * var(--vw));
        background:#fff;
    }

/* ROI Calculator products section - mobile category slider */


/* ========================================
products-HunterPride-Map.html , Store Map
======================================== */

.sub-pride-map {
    position: relative;
    min-height: calc(1072 * var(--vw));
    overflow: hidden;
}

.sub-pride-map-bg {
    position: absolute;
    inset: 0;
    background: url("/images/products/hunter_pride_map_bg.jpg") center / cover no-repeat;
}

.sub-pride-map-panel {
    position: relative;
    z-index: 2;
    display: flex;
    width: calc(1130 * var(--vw));
    min-height: calc(1072 * var(--vw));
    margin-left: calc((100% - 1300 * var(--vw)) / 2);
    padding-top: calc(40 * var(--vw));
    padding-bottom: calc(40 * var(--vw));
    box-sizing: border-box;
    pointer-events: none;
}

.sub-pride-map-search {
    position: relative;
    z-index: 2;
    flex: 0 0 calc(500 * var(--vw));
    padding: calc(60 * var(--vw)) calc(50 * var(--vw));
    background: #fff;
    pointer-events: auto;
}

.sub-pride-store-detail {
    pointer-events: auto;
}

.sub-pride-map-title{
    margin: 0 0 calc(60 * var(--vw));
    color: #000;
    font-size: calc(34 * var(--vw));
    font-weight: 700;
    line-height: calc(50 * var(--vw));
}

.sub-pride-map-title span {
    color: var(--red);
}

.sub-pride-map-keyword {
    position: relative;
    display: block;
}

.sub-pride-map-keyword input {
    height: calc(80 * var(--vw));
    padding: 0 calc(20 * var(--vw)) 0 calc(58 * var(--vw));
    font-size: calc(18 * var(--vw));
}

.sub-pride-map-search-icon {
    position: absolute;
    top: 50%;
    left: calc(24 * var(--vw));
    z-index: 2;
    width: calc(24 * var(--vw));
    height: calc(24 * var(--vw));
    background: url("/images/icon/icon-search.svg");
    background-size: cover;
    transform: translateY(-55%);
}

.sub-pride-map-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(10 * var(--vw));
    margin-top: calc(10 * var(--vw));
}

.sub-pride-map-selects .sub-form-select-trigger {
    height: calc(80 * var(--vw));
    padding: 0 calc(42 * var(--vw)) 0 calc(18 * var(--vw));
    font-size: calc(18 * var(--vw));
}

.sub-pride-map-count {
    margin: calc(35 * var(--vw)) 0 0;
    padding-bottom: calc(20 * var(--vw));
    border-bottom: 1px solid #e5e5e5;
    color: #555;
    font-size: calc(16 * var(--vw));
    line-height: calc(24 * var(--vw));
}

.sub-pride-map-count strong {
    color: var(--red);
    font-weight: 700;
}

.sub-pride-store-list {
    max-height: calc(566 * var(--vw));
    overflow-y: auto;
}

.sub-pride-store-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: calc(30 * var(--vw)) calc(34 * var(--vw)) calc(30 * var(--vw)) 0;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    color: #111;
    text-align: left;
}

.sub-pride-store-item:hover {
    background: #fafafa;
}

.sub-pride-store-region{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:calc(12 * var(--vw));
    padding:calc(10 * var(--vw)) calc(20 * var(--vw));
    border-radius:calc(999 * var(--vw));
    background:var(--red);
    color:#fff;
    font-size:calc(14 * var(--vw));
}

.sub-pride-store-item strong{
    margin-bottom:calc(8 * var(--vw));
    font-size:calc(20 * var(--vw));
    font-weight:700;
    line-height:1.35;
}

.sub-pride-store-address{
    color:#666;
    font-size:calc(16 * var(--vw));
    line-height:1.5;
}

.sub-pride-store-item i{
    position:absolute;
    top:50%;
    right:calc(6 * var(--vw));
    width:calc(10 * var(--vw));
    height:calc(10 * var(--vw));
    border-top:calc(2 * var(--vw)) solid #111;
    border-right:calc(2 * var(--vw)) solid #111;
    transform:rotate(45deg);
}

.sub-pride-store-detail {
    position: relative;
    flex: 0 0 calc(520 * var(--vw));
    min-height: calc(992 * var(--vw));
    margin-left: calc(10 * var(--vw));
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(-24 * var(--vw)));
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.sub-pride-store-detail.is-open{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

.sub-pride-store-close{
    top:0 !important;
    right:-72px !important;
    left:auto !important;
}

.sub-pride-store-photo{
    height:calc(300 * var(--vw));
    background:#d9d9d9;
    background-image:url("/images/img_placeholder.png");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.sub-pride-store-detail-content{
    padding:calc(30 * var(--vw)) calc(50 * var(--vw)) calc(40 * var(--vw));
}

.sub-pride-store-detail-content h4{
    margin:0 0 calc(24 * var(--vw));
    color:#000;
    font-size:calc(28 * var(--vw));
    font-weight:700;
    line-height:1.3;
}

.sub-pride-store-meta{
    margin:0;
    padding-bottom:calc(30 * var(--vw));
    border-bottom:1px solid #ddd;
}

.sub-pride-store-meta div{
    display:grid;
    grid-template-columns:calc(60 * var(--vw)) 1fr;
    gap:calc(20 * var(--vw));
    margin-top:calc(12 * var(--vw));
}

.sub-pride-store-meta dt,
.sub-pride-store-meta dd{
    margin:0;
    font-size:calc(16 * var(--vw));
    line-height:1.5;
    letter-spacing: calc(-1 * var(--vw));
}

.sub-pride-store-meta dt{
    color:#222;
    font-weight:700;
}

.sub-pride-store-meta dd{
    color:#666;
}

.sub-pride-store-products{
    padding-top:calc(32 * var(--vw));
}

.sub-pride-store-products h5{
    margin:0 0 calc(24 * var(--vw));
    font-size:calc(22 * var(--vw));
    font-weight:600;
}

.sub-pride-store-products ul{
    max-height:calc(280 * var(--vw));
    margin:0;
    padding:0 calc(10 * var(--vw)) 0 0;
    list-style:none;
    overflow-y:auto;
    overscroll-behavior:contain;
    scrollbar-gutter:stable;
}

.sub-pride-store-products ul::-webkit-scrollbar{
    width:calc(6 * var(--vw));
}

.sub-pride-store-products ul::-webkit-scrollbar-thumb{
    border-radius:calc(6 * var(--vw));
    background:#bbb;
}

.sub-pride-store-products ul::-webkit-scrollbar-track{
    background:#eee;
}

.sub-pride-store-products li{
    display:flex;
    align-items:center;
    gap:calc(24 * var(--vw));
}

.sub-pride-store-products li+li{
    margin-top:calc(20 * var(--vw));
}

.sub-pride-product-icon{
    flex:0 0 calc(80 * var(--vw));
    width:calc(80 * var(--vw));
    height:calc(80 * var(--vw));
    border-radius:50%;
    background-color:#f0f0f0;
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
}

.sub-pride-store-products p{
    margin:0;
}

.sub-pride-store-products p strong,
.sub-pride-store-products p span{
    display:block;
}

.sub-pride-store-products p strong{
    margin-bottom:calc(4 * var(--vw));
    color:#222;
    font-size:calc(17 * var(--vw));
    font-weight:600;
    line-height:1.35;
}

.sub-pride-store-products p span{
    color:#555;
    font-size:calc(15 * var(--vw));
    line-height:1.4;
}

.sub-pride-store-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(390 * var(--vw));
    padding: calc(40 * var(--vw)) 0;
    color: #888;
    font-size: calc(16 * var(--vw));
    text-align: center;
}

.sub-pride-store-empty-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:calc(48 * var(--vw));
    height:calc(48 * var(--vw));
    margin-bottom:calc(24 * var(--vw));
    border:calc(4 * var(--vw)) solid #ddd;
    border-radius:50%;
    color:#ccc;
    font-size:calc(34 * var(--vw));
    font-weight:400;
    line-height:1;
}

.sub-pride-store-empty strong{
    margin-bottom:calc(10 * var(--vw));
    color:#222;
    font-size:calc(19 * var(--vw));
    font-weight:700;
}

.sub-pride-store-empty > span:last-child{
    color:#888;
    font-size:calc(16 * var(--vw));
}


.sub-pride-store-item.is-active {
    background: #f8f8f8;
}



/* ========================================
products-HunterPride-Interview.html
======================================== */

.sub-pride-interview-page {
    padding-top: calc(120 * var(--vw));
}

.sub-pride-interview-page > .inner,
.sub-pride-interview-list-inner {
    width: calc(1300 * var(--vw));
    margin: 0 auto;
}

.sub-pride-interview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(52 * var(--vw));
}
.sub-pride-interview-head .sub-section-title {
    font-family: 'Pretendard';
    font-weight: 700;
}

.sub-pride-interview-title {
    margin: 0;
    color: #111;
    font-family: "Russo One", sans-serif;
    font-size: calc(40 * var(--vw));
    line-height: 1;
}

.sub-pride-interview-title span {
    color: var(--red);
}

.sub-pride-interview-controls {
    display: flex;
    gap: calc(16 * var(--vw));
}

.sub-pride-featured-slider.swiper {
    position: relative;
    width: calc(1300 * var(--vw));
    margin: 0 auto;
    overflow: visible;
    padding-bottom: calc(110 * var(--vw));
}

.sub-pride-featured-stage {
    width: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.sub-pride-featured-slider .sub-pride-featured-card {
    display: block;
    width: calc(700 * var(--vw));
    height: auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: calc(18 * var(--vw));
    background: #fff;
    text-align: left;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform .6s ease, opacity .3s ease, box-shadow .3s ease;
}

.sub-pride-featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    border-radius: inherit;
    background: rgba(245, 246, 250, .62);
    pointer-events: none;
    opacity: 1;
    transition: opacity .6s ease;
}

.sub-pride-featured-card.is-active {
    z-index: 2;
    box-shadow: 0 calc(18 * var(--vw)) calc(42 * var(--vw)) rgba(0, 0, 0, .14);
}

.sub-pride-featured-card.is-active::after {
    opacity: 0;
}

.sub-pride-featured-image {
    position: relative;
    display: block;
    height: calc(394 * var(--vw));
    overflow: hidden;
}

.sub-pride-featured-image img,
.sub-pride-interview-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.sub-pride-play-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: block;
    width: calc(78 * var(--vw));
    height: calc(78 * var(--vw));
    border-radius: 50%;
    background: rgba(0, 0, 0, .58);
    transform: translate(-50%, -50%);
}

.sub-pride-play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    width: 0;
    height: 0;
    border-top: calc(11 * var(--vw)) solid transparent;
    border-bottom: calc(11 * var(--vw)) solid transparent;
    border-left: calc(18 * var(--vw)) solid #fff;
    transform: translate(-50%, -50%);
}

.sub-pride-featured-content {
    display: block;
    height: calc(200 * var(--vw));
}

.sub-pride-featured-content strong {
    display: block;
    margin-bottom: calc(18 * var(--vw));
    padding: calc(50 * var(--vw)) calc(50 * var(--vw)) 0;
    color: #000;
    font-size: calc(24 * var(--vw));
    font-weight: 600;
    line-height: 1.4;
}

.sub-pride-featured-content p {
    margin: 0;
    padding: 0 calc(50 * var(--vw)) calc(50 * var(--vw));
    color: #666;
    font-size: calc(18 * var(--vw));
    line-height: calc(26 * var(--vw));
    letter-spacing: -1px;
    word-break: keep-all;
}

.sub-pride-interview-list-section {
    position: relative;
    width: 100%;
    padding: calc(110 * var(--vw)) 0 calc(115 * var(--vw));
    background: #f5f6fa;
}

.sub-pride-interview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(60 * var(--vw)) calc(30 * var(--vw));
}

.sub-pride-interview-card {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: calc(18 * var(--vw));
    background: #fff;
    color: #111;
    text-align: left;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.sub-pride-interview-card:hover {
    transform: translateY(calc(-6 * var(--vw)));
    box-shadow: 0 calc(14 * var(--vw)) calc(30 * var(--vw)) rgba(0, 0, 0, .09);
}

.sub-pride-interview-image {
    position: relative;
    display: block;
    height: calc(230 * var(--vw));
    overflow: hidden;
    background: #e9e9e9;
}

.sub-pride-interview-image .sub-pride-play-button {
    width: calc(58 * var(--vw));
    height: calc(58 * var(--vw));
}

.sub-pride-interview-image .sub-pride-play-button::before {
    border-top-width: calc(8 * var(--vw));
    border-bottom-width: calc(8 * var(--vw));
    border-left-width: calc(13 * var(--vw));
}

.sub-pride-interview-content {
    display: block;
    height: calc(160 * var(--vw));
    padding: calc(50 * var(--vw));
}

.sub-pride-interview-content strong {
    display: block;
    margin-bottom: calc(20 * var(--vw));
    color: #000;
    font-size: calc(24 * var(--vw));
    font-weight: 600;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sub-pride-interview-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #666;
    font-size: calc(18 * var(--vw));
    line-height: calc(26 * var(--vw));
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sub-pride-more-button {
    display: flex;
    margin: calc(70 * var(--vw)) auto 0;
    cursor: pointer;
}

.sub-pride-more-button.is-hidden {
    display: none;
}

.sub-pride-interview-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.sub-pride-interview-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.sub-pride-interview-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, .72);
}

.sub-pride-interview-close {
    position: absolute;
    top: calc(20 * var(--vw));
    right: calc(20 * var(--vw));
    z-index: 3;
    width: calc(46 * var(--vw));
    height: calc(46 * var(--vw));
    min-width: calc(40 * var(--vw));
    min-height: calc(40 * var(--vw));
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
}

.sub-pride-interview-close::before,
.sub-pride-interview-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(22 * var(--vw));
    height: calc(2 * var(--vw));
    background: #111;
}

.sub-pride-interview-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.sub-pride-interview-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sub-pride-interview-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.sub-pride-interview-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sub-pride-interview-modal-content {
    padding: calc(42 * var(--vw)) calc(48 * var(--vw)) calc(46 * var(--vw));
}

.sub-pride-interview-modal-content h4 {
    margin: 0;
    color: #111;
    font-size: calc(28 * var(--vw));
    font-weight: 700;
    line-height: 1.4;
}

.sub-pride-interview-modal-content p {
    margin: calc(16 * var(--vw)) 0 0;
    color: #666;
    font-size: calc(17 * var(--vw));
    line-height: 1.7;
}

.sub-pride-interview-modal-content time {
    display: block;
    margin-top: calc(16 * var(--vw));
    color: #aaa;
    font-size: calc(15 * var(--vw));
}

body.is-modal-open {
    overflow: hidden;
}


/* ========================================
Mobile (720px and below)
======================================== */
@media (max-width: 720px) {

    .detail-top-button {
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
    }
    .page-heading:not(.page-heading--policy) {
        margin-bottom: 0;
    }

    .sub-visual {
        height: 160px;
    }

    .sub-visual-bg img {
        object-position: center;
    }

    .sub-visual-content {
        width: 100%;
        padding: 0 25px;
        box-sizing: border-box;
    }

    .sub-visual-content p {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0;
    }

    .sub-product-category {
        padding: 40px 0 56px;
    }

    .sub-product-category .inner {
        width: 100%;
        padding: 0 25px;
        box-sizing: border-box;
    }

    .sub-section-heading {
        width: 100%;
        margin-bottom: 25px;
    }

    .sub-pride-title {
        font-size: 26px;
        line-height: 1;
    }

    .sub-pride-controls {
        gap: 8px;
    }

    .sub-pride-button {
        width: 34px;
        height: 34px;
    }

    .sub-pride-button::before {
        width: 7px;
        height: 7px;
        border-width: 1px;
    }

    .sub-category-slider .swiper-slide {
        width: 280px !important;
        flex-basis: 280px;
    }

    .sub-category-card {
        height: 300px;
        border-radius: 10px;
    }

    .sub-category-card-content {
        padding: 44px 24px;
    }

    .sub-category-card-content h3 {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 1.05;
    }

    .sub-pride-dealer {
        padding: 30px 25px 60px;
    }

    .sub-pride-dealer .inner {
        width: 100%;
    }

    .sub-pride-dealer .sub-section-title {
        margin-bottom: 20px;
    }

    .sub-dealer-main {
        display: block;
        min-height: 0;
        border-radius: 10px;
    }

    .sub-dealer-main-image {
        height: 270px;
    }

    .sub-dealer-main-info {
        min-height: 300px;
        padding: 30px 24px;
        box-sizing: border-box;
    }

    .sub-dealer-area {
        margin-bottom: 18px;
        padding: 8px 20px;
        font-size: 14px;
    }

    .sub-dealer-name {
        margin-bottom: 24px;
        padding-bottom: 0;
        border-bottom: 0;
        font-size: 20px;
    }

    .sub-dealer-info-list {
        gap: 16px;
        margin-bottom: 26px;
    }

    .sub-dealer-info-list div {
        grid-template-columns: 82px 1fr;
    }

    .sub-dealer-info-list dt,
    .sub-dealer-info-list dd {
        font-size: 14px;
        line-height: 1.55;
    }

    .sub-dealer-map {
        gap: 6px;
        padding-bottom: 4px;
        font-size: 14px;
        line-height: 20px;
    }

    .sub-dealer-map-icon {
        width: 18px;
        height: 18px;
    }

    .sub-dealer-slider-wrap {
        margin-top: 24px;
        padding: 0 42px;
    }

    .sub-dealer-thumb {
        height: 82px;
        border-radius: 8px;
    }

    .sub-dealer-slider-button {
        width: 34px;
        height: 34px;
    }

    .sub-dealer-prev {
        left: 0;
    }

    .sub-dealer-next {
        right: 0;
    }

    .sub-dealer-slider-button::before {
        width: 7px;
        height: 7px;
        border-width: 1px;
    }

    .pt_60 {
        padding-top: 24px;
    }

    .align-c > .sub-button-more {
        min-width: 124px;
        padding: 0 24px;
        border-radius: 25px;
        background: var(--red);
        color: #fff;
        font-size: 14px;
        line-height: 48px;
    }

    .sub-pride-interview {
        padding: 40px 0 70px;
    }

    .sub-pride-interview .inner {
        width: 100%;
    }

    .sub-pride-heading {
        margin-bottom: 30px;
        padding: 0 25px;
    }

    .sub-pride-slider {
        overflow: visible;
    }

    .sub-pride-item {
        width: 280px !important;
        flex: 0 0 280px;
    }

    .sub-pride-card {
        border-radius: 10px;
    }

    .sub-pride-image {
        height: 172px;
    }

    .sub-pride-content {
        height: 188px;
    }

    .sub-pride-content h3 {
        padding: 30px 24px 16px;
        overflow: hidden;
        font-size: 17px;
        line-height: 1.35;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sub-pride-content p {
        display: -webkit-box;
        padding: 0 24px 28px;
        overflow: hidden;
        color: #777;
        font-size: 14px;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .sub-product-item {
        display: block;
        height: auto;
        background: none;
    }

    .sub-product-item .inner {
        display: block;
        width: 100%;
    }

    .sub-product-item > .sub-product-item-image + .inner {
        position: static;
        height: auto;
    }

    .sub-product-item .sub-product-item-wrap,
    .sub-product-item-reverse .sub-product-item-wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
        min-height: 0;
    }

    .sub-product-item .sub-product-item-image {
        position: static;
        inset: auto;
        order: 1;
        align-items: center;
        width: 100%;
        height: 320px;
        overflow: hidden;
        background: url("/images/products/p_l_bg_m.png") center / cover no-repeat;
    }

    .sub-product-item > .sub-product-item-image {
        height: auto;
        overflow: visible;
        background: none;
        line-height: 0;
    }

    .sub-product-item .sub-product-item-image > img.mo-only {
        width: 100%;
        max-width: none;
        height: auto;
    }

    .sub-product-item .sub-product-item-content {
        order: 2;
        width: 100%;
        padding: 38px 25px 50px;
        box-sizing: border-box;
        background: #fff;
        text-align: left;
    }

    .sub-product-item.sub-product-item-center .sub-product-item-content {
        width: 100%;
        padding: 38px 25px 50px;
        text-align: left;
    }

    .sub-product-item-category {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1;
    }

    .sub-product-item-title {
        margin-bottom: 22px;
        font-size: 26px;
        line-height: 1;
    }

    .sub-product-item-title .greenX {
        width: 18px;
        height: 21px;
        margin-top: 1px;
        margin-left: 3px;
    }

    .sub-product-item-desc {
        margin-bottom: 26px;
        color: #666;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -.03em;
    }

    .sub-product-item-desc sup {
        font-size: 10px;
    }

    .sub-product-item .sub-button-more {
        letter-spacing: 4px;
    }

    .detail-visual {
        display: flex;
        flex-direction: column;
        background: #fff;
    }

    .detail-visual > .inner {
        order: 1;
    }

    .detail-visual > .detail-product-image + .inner {
        position: static;
        inset: auto;
        height: auto;
    }

    .detail-visual > .detail-product-image + .inner .detail-visual-content {
        margin-top: 0;
    }

    .detail-visual > .detail-product-image {
        order: 2;
    }

    .detail-visual .inner,
    .detail-features .inner,
    .detail-spec .inner,
    .detail-faq .inner {
        width: 100%;
        padding: 0 25px;
        box-sizing: border-box;
    }

    .detail-visual-wrap {
        position: relative;
        display: block;
        height: auto;
    }

    .detail-visual-content {
        position: relative;
        z-index: 2;
        padding: 40px 0 25px;
    }

    .detail-visual-title {
        margin: 0;
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0;
    }

    .detail-visual-title .black {
        font-size: 22px;
    }

    .detail-visual-title .disc {
        display: block;
        font-size: 13px;
        color: #777777;
        margin-top: 15px;
        line-height: normal;
    }

    .detail-visual-title sup {
        top: -8px;
        font-size: 11px;
    }

    .detail-visual-title .greenX {
        width: 21px;
        height: 24px;
    }

    .detail-visual > .detail-product-image {
        height: auto;
    }

    .detail-visual > .detail-product-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .detail-product-image img {
        max-height: 125px;
    }

    .detail-section-heading {
        width: 100%;
        margin-bottom: 12px;
    }

    .detail-section-title {
        font-size: 18px;
        line-height: 1;
        letter-spacing: 0;
    }

    .detail-features .detail-section-heading {
        margin-bottom: 29px;
    }

    .detail-features .detail-section-title {
        font-size: 26px;
    }

    .detail-features {
        padding: 40px 0;
        align-items: stretch;
    }

    .detail-features-controls {
        gap: 6px;
    }

    .detail-features-controls .sub-slider-button {
        width: 34px;
        height: 34px;
    }

    .detail-features-slider .swiper-slide {
        width: 240px !important;
        flex: 0 0 240px;
    }

    .detail-features-card {
        height: 100%;
        min-height: 335px;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .detail-features-image {
        height: 120px;
    }

    .detail-features-content h3 {
        margin: 25px 25px 12px;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -.04em;
    }

    .detail-features-content p {
        display: -webkit-box;
        margin: 0 25px 25px;
        overflow: hidden;
        color: #777;
        font-size: 14px;
        line-height: 23px;
        letter-spacing: -.04em;
    }

    .detail-summary {
        padding: 40px 25px 29px;
        box-sizing: border-box;
    }

    .detail-summary-inner {
        width: 100%;
    }

    .detail-summary .detail-section-title {
        font-size: 26px;
    }

    .detail-summary-list {
        display: block;
        margin-top: 36px;
    }

    .detail-summary-item,
    .detail-summary-item:nth-child(odd),
    .detail-summary-item:nth-child(even) {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 20px;
        min-height: 94px;
        padding: 0;
    }

    .detail-summary-item:empty {
        display: none;
    }

    .detail-summary-icon {
        width: 30px;
        height: 30px;
    }

    .detail-summary-item p {
        min-width: 0;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: -.03em;
        word-break: keep-all;
    }

    .detail-spec {
        padding: 40px 0 46px;
    }

    .detail-spec .detail-section-heading {
        margin-bottom: 20px;
    }

    .detail-spec .detail-section-title {
        font-size: 26px;
    }

    .detail-spec-wrap {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .detail-spec-content {
        flex: none;
        width: 100%;
    }

    .detail-spec-image {
        display: none;
        flex: none;
        width: 100%;
        height: 315px;
        min-height: 315px;
        margin-bottom: 20px;
    }

    .detail-spec-image img {
        max-width: 100%;
        max-height: 265px;
    }

    .tcmw-detail-spec .detail-section-heading {
        margin-bottom: 20px;
    }

    .tcmw-spec-selector {
        width: 100%;
        margin-bottom: 20px;
    }

    .tcmw-spec-select {
        height: 56px;
        padding: 0 18px;
        font-size: 14px;
    }

    .tcmw-spec-select-arrow {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
        transform: translateY(-2px) rotate(45deg);
    }

    .tcmw-spec-selector.is-open .tcmw-spec-select-arrow {
        transform: translateY(2px) rotate(225deg);
    }

    .tcmw-spec-option {
        height: 50px;
        padding: 0 18px;
        font-size: 14px;
    }

    .detail-spec-row {
        grid-template-columns: 104px 1fr;
        min-height: 60px;
        padding: 18px 0;
        box-sizing: border-box;
    }

    .detail-spec-row dt,
    .detail-spec-row dd {
        font-size: 14px;
        line-height: 22px;
    }

    .detail-spec-subtxt {
        margin-top: 18px;
        font-size: 12px;
        line-height: 18px;
    }

    .detail-spec-buttons {
        flex-direction: column;
        align-items: center;
        gap: 13px;
        margin-top: 31px;
    }

    .detail-spec-button {
        gap: 15px;
        width: 238px;
        min-width: 0;
        height: 46px;
        padding: 0 22px;
        box-sizing: border-box;
        font-size: 14px;
        letter-spacing: .14em;
    }

    .detail-spec-button-icon {
        width: 16px;
        height: 16px;
    }

    .detail-faq {
        padding: 40px 0;
    }

    .detail-faq .detail-section-heading {
        margin-bottom: 35px;
    }

    .detail-faq .detail-section-title {
        font-size: 26px;
    }

    .detail-faq-list {
        margin-top: 0;
    }

    .detail-faq-question {
        grid-template-columns: minmax(0, 1fr) 25px;
        grid-template-areas:
            "number icon"
            "text icon";
        min-height: 0;
        padding: 26px 0 24px;
    }

    .detail-faq-number {
        grid-area: number;
        font-size: 22px;
        line-height: 22px;
    }

    .detail-faq-question-text {
        grid-area: text;
        margin-top: 18px;
        margin-right: 18px;
        padding-right: 0;
        font-size: 14px;
        line-height: 24px;
        word-break: keep-all;
    }

    .detail-faq-icon {
        grid-area: icon;
        align-self: center;
        width: 22px;
        height: 22px;
    }

    .detail-faq-icon::before {
        width: 21px;
        height: 1px;
    }

    .detail-faq-icon::after {
        width: 1px;
        height: 21px;
    }

    .detail-faq-answer-inner {
        padding: 30px 0 31px;
        border-top: 1px solid #ddd;
    }

    .detail-faq-answer p {
        font-size: 14px;
        line-height: 22px;
        word-break: keep-all;
    }

    .roi-calculator-page .btn-search {
        display: none;
    }

    .roi-calculator-page .page-heading {
        margin-bottom: 0;
        padding: 105px 0 20px;
    }

    .roi-calculator-page .page-heading .page-title {
        font-size: 26px;
        line-height: 32px;
    }

    .roi-calculator {
        padding: 40px 0;
    }

    .roi-calculator .inner,
    .roi-result .inner {
        width: auto;
        margin: 0;
        padding: 0 25px;
        box-sizing: border-box;
    }

    .roi-title {
        margin: 0 0 40px;
        font-size: 26px;
        line-height: normal;
    }

    .roi-product-selector {
        display: flex;
        gap: 10px;
        width: calc(100% + 50px);
        margin: 0 0 40px;
        margin-left: -25px;
        padding: 0 25px;
        overflow-x: auto;
        scrollbar-width: none;
        box-sizing: border-box;
    }

    .roi-product-selector::-webkit-scrollbar {
        display: none;
    }

    .roi-product-card {
        flex: 0 0 200px;
        height: 170px;
        border: 2px solid transparent;
        border-radius: 8px;
    }

    .roi-product-card span {
        top: 22px;
        left: 18px;
        font-size: 16px;
    }


    .roi-form {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .roi-form-item:last-child {
        display: none;
    }

    .roi-form--changer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .roi-form--changer .roi-form-item:last-child {
        display: block;
    }

    .roi-form-item label {
        gap: 6px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: normal;
    }

    .roi-input-wrap {
        gap: 8px;
    }

    .roi-input {
        min-width: 0;
        height: 60px;
        padding: 0 18px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .roi-input::placeholder,
    .roi-input-wrap > span {
        font-size: 14px;
    }

    .roi-info {
        width: 18px;
        height: 18px;
        padding: 0;
        font-size: 11px;
        line-height: 18px;
    }

    .roi-tooltip-box {
        top: 30px;
        right: auto;
        bottom: auto;
        left: 66px;
        width: 192px;
        padding: 14px;
        border-radius: 8px;
        font-size: 14px;
        line-height: 18px;
        transform: translateX(-50%);
        box-sizing: border-box;
    }

    .roi-tooltip-box::before {
        top: -8px;
        border-right-width: 8px;
        border-bottom-width: 9px;
        border-left-width: 8px;
    }

    .roi-result {
        padding: 42px 0 37px;
        background: #cf0b00;
    }

    .roi-result-formula {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .roi-result-item {
        width: 100%;
        text-align: left;
    }

    .roi-result-label {
        margin: 0 0 12px;
        color: #FFA59F;
        font-size: 16px;
        line-height: 22px;
        text-align: left;
    }

    .roi-result-symbol {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 70px;
        padding: 0;
        box-sizing: border-box;
        font-size: 0;
        line-height: 1;
    }

    .roi-result-symbol::before,
    .roi-result-symbol--equals::after {
        width: 15px;
        height: 2px;
    }

    .roi-result-symbol--equals::before {
        margin-top: -5px;
    }

    .roi-result-symbol--equals::after {
        margin-top: 5px;
    }

    .roi-result-item--primary,
    .roi-result-item--metric {
        margin-top: 0;
        padding: 0 0 31px;
        border-top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .32);
    }

    .roi-result-item--metric {
        min-height: 0;
        padding: 29px 0 31px;
        padding-left: 0;
        border-left: 0;
    }

    .roi-result-item--metric:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .roi-result-output {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 14px;
        align-items: center;
        gap: 8px;
        width: 100%;
        min-height: 60px;
        padding: 0;
        background: transparent;
        font-size: 20px;
        font-weight: 600;
        box-sizing: border-box;
    }

    .roi-result-value {
        min-height: 60px;
        padding: 0 16px;
        background: #B20B00;
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
    }

    .roi-result-output > em {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .roi-result-formula > .roi-result-symbol {
        align-self: center;
        height: auto;
        min-height: 61px;
    }

    .roi-result-formula .roi-result-item:nth-child(6),
    .roi-result-formula .roi-result-item:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
    }

    .roi-result-formula .roi-result-item--metric {
        border-bottom: 0;
    }

    .roi-result-formula .roi-result-item--primary {
        padding-bottom: 37px;
    }

    .roi-result-formula .roi-result-item--metric {
        padding: 44px 0 0;
    }

    .roi-result-formula .roi-result-item--metric + .roi-result-item--metric {
        padding-top: 45px;
    }

    .roi-result--changer {
        padding: 42px 0 20px;
    }

    .roi-comparison {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .roi-comparison-item {
        padding-bottom: 45px;
    }

    .roi-comparison-item--total {
        padding-top: 0;
        border-top: 0;
    }

    .roi-comparison-item--total:nth-child(5) {
        padding-top: 38px;
        border-top: 1px solid rgba(255, 255, 255, .32);
    }

    .roi-comparison-item--total:last-child {
        padding-bottom: 20px;
    }
    .roi-comparison-item--tip .roi-tooltip-box {
        top: 28px;
        left: -45px;
        width: 200px;
        border-radius: 10px;
    }
    .roi-comparison-item--tip .roi-tooltip-box::before {
        left: 75%;
    }

    .sub-products-visual {
        --products-mobile-scale: calc(100vw / 360);
        height: calc(640 * var(--products-mobile-scale));
        background: url("/images/products/item/m_p_bg.png");
        background-size: cover;
    }

    .sub-products-visual > .sub-products-visual-bg,
    .sub-products-visual > .inner {
        display: none;
    }

    .mobile-products {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: block !important;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .mobile-products-heading {
        position: absolute;
        top: calc(42 * var(--products-mobile-scale));
        right: 0;
        left: 0;
        z-index: 5;
        margin: 0;
        color: #000;
        font-family: "Russo One", sans-serif;
        font-size: calc(30 * var(--products-mobile-scale));
        font-weight: 400;
        line-height: 1;
        text-align: center;
    }

    .mobile-products-heading span {
        color: var(--red);
    }

    .mobile-products-swiper,
    .mobile-products-swiper .swiper-wrapper,
    .mobile-products-swiper .swiper-slide {
        width: 100%;
        height: 100%;
    }

    .mobile-products-swiper .swiper-slide {
        position: relative;
        overflow: hidden;
    }

    .mobile-products-image {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-products-fixed-info {
        position: absolute;
        top: calc(447 * var(--products-mobile-scale));
        right: 0;
        left: 0;
        z-index: 2;
        text-align: center;
    }

    .mobile-products-fixed-info h3 {
        margin: 0;
        color: #fff;
        font-family: "Russo One", sans-serif;
        font-size: calc(24 * var(--products-mobile-scale));
        font-weight: 400;
        line-height: calc(26 * var(--products-mobile-scale));
        letter-spacing: 0;
    }

    .mobile-products-fixed-info a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: calc(92 * var(--products-mobile-scale));
        height: calc(46 * var(--products-mobile-scale));
        margin-top: calc(22 * var(--products-mobile-scale));
        border: 1px solid #fff;
        border-radius: 999px;
        box-sizing: border-box;
        color: #fff;
        font-size: calc(14 * var(--products-mobile-scale));
        font-weight: 600;
        line-height: 1;
        letter-spacing: calc(4 * var(--products-mobile-scale));
    }

    .mobile-products-pagination {
        position: absolute;
        right: 0;
        bottom: calc(40 * var(--products-mobile-scale)) !important;
        left: 0;
        z-index: 4;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(20 * var(--products-mobile-scale));
        width: 100%;
        transform: none !important;
    }

    .mobile-products-pagination .swiper-pagination-bullet {
        width: calc(8 * var(--products-mobile-scale));
        height: calc(8 * var(--products-mobile-scale));
        margin: 0 !important;
        background: rgba(255, 255, 255, .34);
        opacity: 1;
    }

    .mobile-products-pagination .swiper-pagination-bullet-active {
        background: #fff;
    }

    .sub-pride-map-page .btn-search {
        display: none;
    }

    .sub-pride-map {
        min-height: 0;
        overflow: visible;
    }

    .sub-pride-map-bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: 200px;
    }

    .sub-pride-map-panel {
        position: static;
        z-index: auto;
        display: block;
        width: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
    }

    .sub-pride-map-search {
        width: 100%;
        padding: 40px 25px;
        box-sizing: border-box;
    }

    .sub-pride-map-title {
        margin-bottom: 30px;
        font-size: 26px;
        line-height: 34px;
    }

    .sub-pride-map-keyword input {
        height: 60px;
        padding: 0 18px 0 44px;
        border-color: #ddd;
        font-size: 14px;
    }

    .sub-pride-map-search-icon {
        left: 18px;
        width: 18px;
        height: 18px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .sub-pride-map-selects {
        gap: 8px;
        margin-top: 8px;
    }

    .sub-pride-map-selects .sub-form-select-trigger {
        height: 60px;
        padding: 0 48px 0 18px;
        font-size: 14px;
    }

    .sub-pride-map-count {
        margin-top: 40px;
        padding-bottom: 16px;
        font-size: 14px;
        line-height: 20px;
    }

    .sub-pride-store-list {
        max-height: none;
        overflow: visible;
    }

    .sub-pride-store-item {
        min-height: 160px;
        padding: 30px 34px 30px 0;
        box-sizing: border-box;
    }

    .sub-pride-store-region {
        min-width: 74px;
        min-height: 36px;
        margin-bottom: 14px;
        padding: 7px 16px;
        font-size: 14px;
        line-height: 20px;
        box-sizing: border-box;
    }

    .sub-pride-store-item strong {
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 26px;
    }

    .sub-pride-store-address {
        font-size: 14px;
        line-height: 22px;
    }

    .sub-pride-store-item i {
        right: 7px;
        width: 9px;
        height: 9px;
        border-width: 1px;
    }

    .sub-pride-store-empty {
        min-height: 230px;
        padding: 30px 0;
        font-size: 14px;
        box-sizing: border-box;
    }

    .sub-pride-store-empty-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 24px;
        border-width: 4px;
        font-size: 34px;
    }

    .sub-pride-store-empty strong {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 20px;
    }

    .sub-pride-store-empty > span:last-child {
        font-size: 14px;
        line-height: 20px;
    }

    .sub-pride-store-detail {
        position: fixed;
        inset: 0;
        z-index: 1600;
        min-height: 0;
        margin: 0;
        padding: 120px 25px 60px;
        overflow-y: auto;
        background: rgba(0, 0, 0, .6);
        box-sizing: border-box;
        transform: translateY(20px);
    }

    .sub-pride-store-detail.is-open {
        transform: translateY(0);
    }

    .sub-pride-store-close {
        position: fixed !important;
        top: 68px !important;
        right: auto !important;
        left: calc(50% + 113px) !important;
    }

    .sub-pride-store-photo {
        width: 100%;
        max-width: 310px;
        height: 173px;
        margin: 0 auto;
        background-color: #ddd;
    }

    .sub-pride-store-detail-content {
        width: 100%;
        max-width: 310px;
        margin: 0 auto;
        padding: 30px 25px 28px;
        background: #fff;
        box-sizing: border-box;
    }

    .sub-pride-store-detail-content > .sub-pride-store-region {
        margin-bottom: 16px;
    }

    .sub-pride-store-detail-content h4 {
        margin-bottom: 28px;
        font-size: 20px;
        line-height: 26px;
    }

    .sub-pride-store-meta {
        padding-bottom: 28px;
    }

    .sub-pride-store-meta div {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 18px;
        margin-top: 18px;
    }

    .sub-pride-store-meta dt,
    .sub-pride-store-meta dd {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -.02em;
    }

    .sub-pride-store-products {
        padding-top: 28px;
    }

    .sub-pride-store-products h5 {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 22px;
    }

    .sub-pride-store-products ul {
        max-height: 208px;
        padding-right: 8px;
        scrollbar-gutter: auto;
    }

    .sub-pride-store-products ul::-webkit-scrollbar {
        width: 4px;
    }

    .sub-pride-store-products ul::-webkit-scrollbar-thumb {
        border-radius: 4px;
    }

    .sub-pride-store-products li {
        gap: 18px;
    }

    .sub-pride-store-products li + li {
        margin-top: 14px;
    }

    .sub-pride-product-icon {
        flex-basis: 60px;
        width: 60px;
        height: 60px;
    }

    .sub-pride-store-products p,
    .sub-pride-store-products span {
        font-size: 14px;
        line-height: 20px;
    }

    .sub-pride-store-products p span {
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0;
    }

    .sub-pride-store-products p strong {
        display: block;
        color: #222;
        font-size: 16px;
        line-height: 22px;
    }

    .sub-pride-interview-page {
        padding-top: 40px;
    }

    .sub-pride-interview-page > .inner,
    .sub-pride-interview-list-inner {
        width: 100%;
        padding-right: 25px;
        padding-left: 25px;
        box-sizing: border-box;
    }

    .sub-pride-interview-page > .inner {
        position: relative;
    }

    .sub-pride-interview-head {
        margin-bottom: 45px;
    }

    .sub-pride-interview-controls {
        position: absolute;
        right: auto;
        bottom: 40px;
        left: 50%;
        z-index: 5;
        gap: 8px;
        transform: translateX(-50%);
    }

    .sub-pride-featured-slider.swiper {
        width: calc(100% + 50px);
        margin-left: -25px;
        padding-bottom: 100px;
        overflow: hidden;
    }

    .sub-pride-featured-slider .sub-pride-featured-card {
        width: 100%;
        border-radius: 0;
    }

    .sub-pride-featured-card.is-active {
        box-shadow: none;
    }

    .sub-pride-featured-image {
        height: 200px;
    }

    .sub-pride-interview-image {
        height: 174px;
    }

    .sub-pride-play-button {
        display: none;
    }

    .sub-pride-featured-image .sub-pride-play-button {
        display: block;
        width: 42px;
        height: 42px;
    }

    .sub-pride-featured-image .sub-pride-play-button::before {
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-left-width: 12px;
    }

    .sub-pride-featured-content {
        height: 150px;
        text-align: center;
    }

    .sub-pride-featured-content strong,
    .sub-pride-interview-content strong {
        margin-bottom: 15px;
        padding: 35px 24px 0;
        font-size: 22px;
        line-height: normal;
    }

    .sub-pride-featured-content p,
    .sub-pride-interview-content p {
        padding: 0 24px 30px;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -0.04em;
    }

    .sub-pride-featured-content p {
        max-width: 310px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 25px;
        padding-left: 25px;
    }

    .sub-pride-interview-list-section {
        padding: 40px 0 65px;
    }

    .sub-pride-interview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 0;
    }

    .sub-pride-interview-card {
        border-radius: 10px;
    }

    .sub-pride-interview-card:hover {
        transform: none;
        box-shadow: none;
    }

    .sub-pride-interview-content {
        height: 174px;
        padding: 0;
    }

    .sub-pride-more-button {
        margin-top: 40px;
    }

    .sub-pride-interview-modal {
        padding: 20px;
    }

    .sub-pride-interview-modal-content {
        padding: 24px;
    }

    .sub-pride-interview-modal-content h4 {
        font-size: 18px;
    }

    .sub-pride-interview-modal-content p,
    .sub-pride-interview-modal-content time {
        font-size: 14px;
    }
}
