/* KD Typography System */

/* Global Font Family */
.kd-h1, .kd-h2, .kd-h3, .kd-h4, .kd-body, .kd-small {
    font-family: 'Inter', sans-serif;
}

/* H1 */
.kd-h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #001A72;
}

/* H2 */
.kd-h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    color: #001A72;
}

/* H3 */
.kd-h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    color: #001A72;
}

/* H4 */
.kd-h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #001A72;
}

/* Body */
.kd-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #0d0d0d;
}

/* Small */
.kd-small {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #0d0d0d;
}

/* Mobile Typography (max-width: 767px) */
@media (max-width: 767px) {
    .kd-h1 {
        font-size: 34px;
    }
    
    .kd-h2 {
        font-size: 28px;
    }
    
    .kd-h3 {
        font-size: 21px;
    }
    
    .kd-h4 {
        font-size: 17px;
    }
    
    .kd-body {
        font-size: 17px;
    }
    
    .kd-small {
        font-size: 14px;
    }
}
