body {
	font-family: var(--fontNormal);
	color: var(--gray-base);
	line-height: 1.6;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--fontHeading);
    font-weight: 500;
}

h1.page-header {
	margin: 20px 0 10px;
	padding: 0;
	border: 0;
	color: var(--black);
}

.combined-byline {
	font-size: 1rem;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.25rem;
}

blockquote {
	font-size: 1rem;
	font-style: italic;
	font-weight: 300;
}

p {
	margin: 0;
    margin-bottom: 1.675em;
}

.lead {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.lead p:first-child {
    font-weight: 600;
}

a {
    text-decoration: underline;
    color: var(--blue-main);
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@media all and (min-width: 60rem) {
    a {
        display: inline;
        overflow: visible;
        text-overflow: unset;
        max-width: none;
    }
}

a:hover,
a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-skip-ink: skip;
    color: var(--blue-dark);
}

a:focus-visible {
    outline-offset: 4px;
}

/* Lists */
ul.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Quote */
blockquote {
    padding: 0.75rem 1.25rem;
    margin: 0 0 1.25rem;
    border-left: 0.25rem solid #f5f5f5;
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
}

blockquote p:last-child {
    margin: 0;
}

/* Display */
.pull-right,
.pull-left,
.align-right,
.align-left {
    margin: 0 0 0 1rem;
}

.pull-right img,
.pull-left img {
    max-width: 100%;
    height: auto;
}

@media all and (min-width: 60rem) { 
    .pull-right,
    .align-right {
        float: right;
        margin-left: 1rem;
        max-width: 50%;
        height: auto;
    }

    .pull-left,
    .align-left {
        float: left;
        margin-right: 1rem;
        max-width: 50%;
        height: auto;
    }
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
}

table thead th {
    border-bottom: 2px solid var(--blue-main);
    padding: 0.25rem 0.5rem;
}

table tbody td {
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid var(--blue-light);
}