html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 15px;
    color: #1d1d1f;
    line-height: 1.38462;
    font-weight: 400;
    letter-spacing: -.005em;
    font-family: system-ui, -apple-system, sans-serif;
}

/**/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

a,
* a {
    color: #0071e3;
    text-decoration: none;
}

a:hover,
* a:hover {
    text-decoration: underline;
}

/**/

[class*=grid] img[src$=".jpg"] {
    width: 100%;
    display: block;
}

[class*=grid] img[src$=".svg"] {
    width: 24px;
    height: 24px;
}

/**/

.row {
    width: 100%;
    display: inline-block;
}

/**/

.card-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 60%;
    overflow: hidden;
    background: #eee;
}

.card-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}