/* 
Typography
*/
.t-body {
    font-family: 'EB Garamond', Garamond, 'Times New Roman', Times, serif;
    font-size: .9rem;
    line-height: 1rem;
    letter-spacing: -.0075em;
}

.t-medium {
    font-family: 'EB Garamond', Garamond, 'Times New Roman', Times, serif;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: -.0075em;
}
@media only screen and (min-width: 768px) {
    .t-medium {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
}
@media only screen and (min-width: 1024px) {
    .t-medium {
        font-size: 3rem;
        line-height: 3rem;
    }
}

.t-large {
    font-family: 'EB Garamond', Garamond, 'Times New Roman', Times, serif;
    font-size: 13vw;
    line-height: 13vw;
    letter-spacing: -.0075em;
}
@media only screen and (min-width: 768px) {
    .t-large {
        font-size: 10vw;
        line-height: 10vw;
    }
}
@media only screen and (min-width: 1024px) {
    .t-large {
        font-size: 4rem;
        line-height: 4rem;
    }
}


/* 
Text Style 
*/
.t-italic {font-style: italic;}

.t-capitalize {text-transform: capitalize;}
.t-uppercase {text-transform: uppercase;}
.t-lowercase {text-transform: lowercase;}

.t-left {text-align: left;}
.t-center {text-align: center;}
.t-right {text-align: right;}

.t-underline {text-decoration: underline;}

.t-link {overflow-wrap: break-word;}
.k-text p:not(:first-of-type) {margin-top: 1rem;}