html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    max-width: 960px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 15px;
    color: #231f20;
    font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.25;
}

a {
    background-color: transparent;
    color: #308282;
    text-decoration: underline;
}

a:hover {
    color: #ea1b10;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

svg:not(:root) {
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
}

.logo {
    width: 150px;
    margin-inline-end: 20px;
}

.logo a {
    display: block;
}

.figure-logo {
    max-width: 150px;
    max-height: 55.1px;
}

.release-notes {
    font-size: 14px;
}

.main {
    padding: 40px 0;
    margin: 0 auto;
    text-align: center;
}

.figure-space {
    max-width: 265px;
}

@keyframes pos {
    0%, 100% {
        transform: rotate(-6deg);
    }
    50% {
        transform: rotate(6deg);
    }
}

.egg {
    fill: #43b1b0;
    animation: pos 3s ease infinite;
    transform: translateY(50px);
    transform-origin: 50% 80%;
}

.main-text {
    max-width: 400px;
    margin: 5px auto;
}

.main-text h1 {
    font-size: 22px;
}

.main-text p {
    margin: 15px auto 0;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #e6e6e6;
    padding: 10px;
}

.option {
    display: block;
    padding: 10px 10px 10px 34px;
    position: relative;
    text-decoration: none;
}

.option svg {
    width: 24px;
    height: 24px;
    fill: gray;
    border: 1px solid #d9d9d9;
    padding: 5px;
    border-radius: 100%;
    top: 10px;
    inset-inline-start: 0;
    position: absolute;
}

.option h2 {
    font-size: 19px;
    text-decoration: underline;
}

.option p {
    padding-top: 3px;
    color: #231f20;
    font-size: 15px;
    font-weight: 300;
}

@media (max-width: 767px) {
    body {
        max-width: 767px;
    }
}

@media (max-width: 767px) {
    .option {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .main {
        padding: 20px 0;
    }

    .figure-space {
        max-width: 200px;
    }

    .footer {
        display: block;
        width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .header-link {
        max-width: 100px;
    }
}


/* Home page blocks CSS */

.homepage-stream,
.title-card {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.summary-split-container {
  display: flex;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.summary-split-container {
  width: 100vw;
  background: var(--summary-split-bg, #fff);
}

.summary-split {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
  min-height: 300px;
  position: relative;
  min-width: 0;
}

.summary-split-left .summary-split-image,
.summary-split-right .summary-split-image {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.summary-split-left .summary-split-image img,
.summary-split-right .summary-split-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 650px;
}

.title-card {
  width: 100%;
  padding: 3rem 1rem;
  color: #fff;
  text-align: center;
}

.title-card-content {
    padding: 2rem;
}

.title-card-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.title-card-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.summary-split {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
  min-height: 300px;
  position: relative;
}
.summary-split h2 {
  margin-bottom: 1.5rem;
}
.summary-split-left .summary-split-text {
  flex: 0 0 33%;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.summary-split-left .summary-split-image {
  flex: 0 0 67%;
  position: relative;
  overflow: hidden;
  /* Set up CSS variable for chamfer color */
  --chamfer-color: #fff;
}

.summary-split-left .summary-split-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 30px solid var(--chamfer-color);
  border-right: 30px solid transparent;
  z-index: 2;
  pointer-events: none;
}
.summary-split-right .summary-split-image {
  flex: 0 0 67%;
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  --chamfer-color: #fff;
}

.summary-split-right .summary-split-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 30px solid var(--chamfer-color);
  border-left: 30px solid transparent;
  z-index: 2;
  pointer-events: none;
}
.summary-split-right .summary-split-text {
  flex: 0 0 33%;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  min-width: 0;
}

/* Chamfer between text and image in desktop mode */
.summary-split-left .chamfer-left {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateY(0);
  width: 0;
  height: 0;
  border-top: 20px solid;
  /*border-right: 20px solid transparent;*/
  border-bottom: none;
  border-left: none;
}

@media (max-width: 767px) {
  .summary-split {
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  .summary-split-right {
    display: flex;
    flex-direction: column-reverse;
  }
  .summary-split-left .summary-split-text,
  .summary-split-right .summary-split-text,
  .summary-split-left .summary-split-image,
  .summary-split-right .summary-split-image {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 1px;
    height: auto;
  }
}

.title-card-container {
  width: 100vw;
  background: var(--title-card-bg, #fff);
}
.title-card-container,
.summary-split-container {
  padding-bottom: 0;
}
.content-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}
.title-card,
.summary-split {
  margin: 0;
  padding: 0;
}