@import url('../vars.css');

.int-res-subtitle{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: #667085;
    margin-bottom: 20px;
}
.int-res-body-cap{
    font-family: var(--desktop-h4-font);
    font-size: var(--desktop-h4-size);
    font-weight: var(--desktop-h4-weight);
    color: var(--primary-brand-2);
}
.int-res-prod-sign{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 100px;
}
.int-res-prod-card{
    width: 32%;
    padding: 20px 32px;
    border-radius: 16px;
    box-shadow: var(--drop-shadow-200);
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.int-res-prod-card-top{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.int-res-prod-card-main-title{
    font-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
    color: var(--text);
    text-align: center;
}
.int-res-prod-card-cap{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: var(--primary-brand-2);
}
.int-res-prod-card-bottom{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.int-res-prod-card-item{
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 20px;
}
.int-res-prod-card-title{
    font-family: var(--desktop-subtitle-font);
    font-size: var(--desktop-subtitle-size);
    font-weight: var(--desktop-subtitle-weight);
    color: #667085;
}
.int-res-prod-card-value{
    font-family: var(--desktop-body-font);
    font-size: var(--desktop-body-size);
    font-weight: var(--desktop-body-weight);
    color: var(--text);
}

.int-res-num{
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
    gap: 20px;
    align-items: flex-start;
}
.int-res-num-card{
    width: 32%;
    padding: 20px 32px;
    border-radius: 16px;
    box-shadow: var(--drop-shadow-200);
    display: flex;
    flex-direction: column;
}
.int-res-num-card-title{
    font-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
    color: var(--text);
}
.int-res-num-cap{
    margin-top: 8px;
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: var(--primary-brand-2);
}
.int-res-num-table{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.int-res-num-item{
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 20px;
}
.int-res-num-item-title{
    font-family: var(--desktop-subtitle-font);
    font-size: var(--desktop-subtitle-size);
    font-weight: var(--desktop-subtitle-weight);
    color: #667085;
}
.int-res-num-item-val{
    font-family: var(--desktop-body-font);
    font-size: var(--desktop-body-size);
    font-weight: var(--desktop-body-weight);
    color: var(--text);
}
.int-res-num-cust{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.int-res-num-cust-item{
    display: flex;
    align-items: center;
    gap: 20px;
}
.int-res-num-cust-item img{
    height: 32px;
    width: 32px;
}
.int-res-num-cust-name{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: var(--text);
}
.int-res-num-btn{
    width: 100%;
    background: var(--primary-brand-2);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    color: #fff;
    font-family: var(--desktop-button-font);
    font-size: var(--desktop-button-size);
    font-weight: var(--desktop-button-weight);
}
.int-res-num-input{
    display: none;
}
.int-res-num-card:nth-child(n+7){
    display: none;
}
.int-res-num:has(input[id="intResInput"]:checked) .int-res-num-card:nth-child(n+7){
    display: flex;
}
.int-res-num:has(input[id="intResInput"]:checked) .int-res-num-btn-show{
    display: none;
}
.int-res-num:has(input[id="intResInput"]:checked) .int-res-num-btn-hide{
    display: block;
}
.int-res-num-btn-show{}
.int-res-num-btn-hide{
    display: none;
}

@media screen and (max-width: 1400px) {
    .int-res-prod-card{
        width: 48%;
    }
    .int-res-num-card{
        width: 48%;
    }
}
@media screen and (max-width: 1024px) {
    .int-res-prod-sign{
        flex-direction: column;
    }
    .int-res-prod-card{
        width: 100%;
    }
    .int-res-num{
        flex-direction: column;
    }
    .int-res-num-card{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .int-res-subtitle{
        margin: 12px 0 32px;
    }
}
@media screen and (max-width: 480px) {
    .int-res-prod-card{
        padding: 20px 16px;
    }
    .int-res-prod-card-item{
        grid-template-columns: 2fr 3fr;
    }
    .int-res-num-card{
        padding: 20px 16px;
    }
    .int-res-num-item{
        grid-template-columns: 2fr 3fr;
    }
}