:root {
  /* colors */
  --color-light-beige: #faf4e7;
  --color-dark-beige: #f0e8cc;
  --color-white: #fff;
  --color-black: #000;
  --color-light-green: #178737;
  --color-dark-green: #084220;
  --color-light-blue: #008390;
  --color-dark-blue: #005e66;
  --color-red: #da3434;
  --link-color: var(--color-black);
  --link-hover-color: var(--color-black);
  --background-color: var(--color-light-beige);
  --light-color: #eee;
  --dark-color: #ccc;
  --text-color: black;

  /* fonts */
  --body-font-family: "Untitled Serif", serif;
  --heading-font-family-bold: "Founders Grotesk Bold", sans-serif;
  --heading-font-family-medium: "Founders Grotesk Medium", sans-serif;
  --heading-font-family-regular: "Founders Grotesk Regular", sans-serif;
  --fixed-font-family: consolas, 'Liberation Mono', monospace;

  /* body sizes */
  --body-font-size-m: 22px;
  --body-font-size-s: 18px;
  --body-font-size-xs: 16px;

  /* heading sizes */
  --heading-font-size-xxl: 48px;
  --heading-font-size-xl: 40px;
  --heading-font-size-l: 32px;
  --heading-font-size-m: 24px;
  --heading-font-size-s: 20px;
  --heading-font-size-xs: 18px;

  /* nav height */
  --nav-height: 64px;

  /* breakpoints */
  --breakpoint-tablet: 720px;
  --breakpoint-desktop: 980px;

  /* cards */
  --card-border: 6px solid var(--color-black);
  --block-margin-bottom: 40px;
}

@media (width >=900px) {
  :root {
    --heading-font-size-xxl: 60px;
    --heading-font-size-xl: 24px;
    --heading-font-size-l: 36px;
    --heading-font-size-m: 30px;
    --heading-font-size-s: 24px;
    --heading-font-size-xs: 22px;
  }
}

/* Normalise some common elements */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
img,
ul,
ol,
li,
form,
label,
table {
  margin: 0;
  padding: 0;
}

img,
svg {
  display: block;
  width: 100%;
  /* Safari's requirement for SVG files */
  max-width: 100%;
}

body {
  font-size: var(--body-font-size-m);
  font-family: var(--body-font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  display: none;
}

body.appear {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family-medium);
  font-weight: 400;
  line-height: 1;
  scroll-margin: calc(var(--nav-height) + 1em);
}

h1 {
  font-size: var(--heading-font-size-xxl)
}

h2 {
  font-size: var(--heading-font-size-xl)
}

h3 {
  font-size: var(--heading-font-size-l)
}

h4 {
  font-size: var(--heading-font-size-m)
}

h5 {
  font-size: var(--heading-font-size-s)
}

h6 {
  font-size: var(--heading-font-size-xs)
}

p,
dl,
ol,
ul,
pre,
blockquote {
  margin-bottom: 1.4em;
}

code,
pre {
  font-family: var(--fixed-font-family);
  font-size: var(--body-font-size-s);
}

code {
  padding: .125em;
}

pre {
  overflow: scroll;
}

main pre {
  background-color: var(--light-color);
  padding: 1em;
  border-radius: .25em;
  overflow-x: auto;
  white-space: pre;
}

/* links */
a:any-link {
  color: var(--link-color);
  text-decoration: none;
  text-underline-offset: 1px;
}

a:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
  transition: outline 0.1s ease-in-out;
}

/* buttons */
a.button:any-link,
button {
  font-family: var(--body-font-family);
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid transparent;
  padding: 5px 30px;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  color: var(--background-color);
  background-color: var(--link-color);
  margin: 16px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 30px;
}

a.button:hover,
a.button:focus,
button:hover,
button:focus {
  background-color: var(--link-hover-color);
  cursor: pointer;
}

button:disabled,
button:disabled:hover {
  background-color: var(--light-color);
  cursor: unset;
}

a.button.secondary,
button.secondary {
  background-color: unset;
  border: 2px solid currentcolor;
  color: var(--text-color)
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon img {
  height: 100%;
  width: 100%;
}

/* sections */
main .section {
  padding: 0 16px;
}

@media (width >=720px) {
  main .section {
    padding: 0 32px;
  }
}

@media (width >=980px) {
  .section>div {
    max-width: 1272px;
    margin: auto;
    padding: 0;
  }

  .nav-wrapper {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 16px;
  }
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
}

header.header-wrapper {
  display: inline;
}

a.article-feed__card-image--container img {
  transition: transform 0.13s ease-in-out;
}

a.article-feed__card-image--container:hover img {
  transform: scale(1.05);
  transition: transform 0.13s ease-in-out;
}

a.article-feed__card-image--container picture {
  display: flex;
  overflow: hidden;
}

.vidyard-custom-wrapper {
  position: relative;
}

.video-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  cursor: pointer;
}

.video-cover-image:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity .3s;
}

.video-cover-image:hover:before {
  opacity: .5;
}

.video-cover-image:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 50px;
  height: 50px;
  background-color: #000;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAvCAYAAACYECivAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHXSURBVHgB1dlRasJAEIDh2ahpCwo+lerT9iYeob2BvYE9QfUGegK9QXuDeIN6A/PU+FZBxbShTLPREZG0ZuNudvNDUEyEzyAzoIA4b0KJcqLN9Xu0CV5wG3AoQ9/rYB4fKB4FHCzPOXrOEaG//wBdsDQn5TUeH2Nb4c4/5zhYCHcyXMNhD49WQQcMlwVMcWTgfW0WryYnigw4iSE+RD8gviZjE3Bp8FFdE/BLwFShcBVgKoYz7VtTJTgOm2L5xHfc0zUKFYMPcdA0w3WBKQ6K4brBFAdF8KLAFIcd3Mu7NYsGUx2xNfOMQlNgSnqGmwZTmeG2gKmzcNvAlIB7aVvTVrCIp21NJmYj7MaN7fkAlUeb7/BROGMIT279dlYFu/PjY+DW2xN6wU4wsiUCjq4arf7pKbvAe6hb3w4Zu1+mXWIHOAOUMg9GHNXqYf8clDIJntQqMGA3bV/mTSbA03hEDWqN1hRyVCT4IihVBFgJlNIJ9sV2UgWldIB9SLZTawIaUgc+zNJwmHVE5elysMTQV1F+cMFQKh9YcjupTAqMyN7cKj7LbieVZQUns9Rt3E3BcOfASoe+iv4CWwelTsE+aBz6Skp+UVwtPsP1Rw/KULhe9Mr0j/4vgkU9BW8bV/kAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35%;
  transition: all .3s;
}

.video-cover-image:hover:after {
  background-color: #050b18;
  filter: invert(1);
}

.vidyard-player-embed:focus {
  outline: none;
}