/**
 * Loaded only on the "/" homepage route.
 */
.home-page {
  --home-content-width: 88%;
  --home-content-max-width: 1120px;
  --home-technical-color: #0d75b9;
  --home-technical-hover-color: #005BFF;
  --home-creative-color: #C93A7A;
  --home-creative-hover-color: #a9245d;
  --home-border-color: #e3e6ea;
  --home-muted-color: #4c5662;
  --home-text-color: #061422;
  --page-hero-background-color: #fff;
  --page-hero-border-color: transparent;
  --page-hero-text-color: var(--home-text-color);
  --page-hero-accent-color: var(--home-creative-color);
  background: #fff;
}
.home-hero {
  min-height: 455px;
  border-bottom: 0;
}
.home-hero-copy {
  max-width: 1120px;
  padding-top: 7.6em;
  padding-bottom: 3.8em;
  padding-left: max(6%, calc((100% - var(--home-content-max-width)) / 2));
  padding-right: max(6%, calc((100% - var(--home-content-max-width)) / 2));
}
.home-hero-kicker {
  color: var(--home-creative-color) !important;
  font-family: 'Roboto';
  font-size: 1.05em !important;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 1.1em !important;
}
.home-hero-title {
  color: var(--home-text-color);
  font-size: 5.15em;
}
.home-hero-canvas {
  opacity: 1;
}
.home-paths {
  width: var(--home-content-width);
  max-width: var(--home-content-max-width);
  margin-left: auto;
  margin-right: auto;
}
.home-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25em;
  padding: 0 0 0;
}
.home-path {
  display: flex;
  flex-direction: column;
  color: var(--home-text-color);
  min-height: 315px;
  box-sizing: border-box;
  background: #fff8fb;
  border: 1px solid var(--home-border-color);
  border-radius: 8px;
  box-shadow: 0 0.35em 1.6em rgba(15, 23, 42, 0.08);
  padding: 2.15em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.home-path:hover {
  color: var(--home-text-color);
  border-color: #c5c5c5;
  box-shadow: 0 0.5em 1.8em rgba(15, 23, 42, 0.12);
}
.home-path:after {
  content: none;
}
.home-path-technical {
  background: #f6fbff;
}
.home-path-technical:after {
  content: none;
}
.home-path-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  border-radius: 8px;
  font-size: 2em;
  position: relative;
  z-index: 1;
}
.home-path-icon-technical {
  background: var(--home-technical-color);
}
.home-path-icon-creative {
  background: var(--home-creative-color);
}
.home-path-copy {
  display: block;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.home-path-title {
  display: block;
  font-family: 'Newsreader';
  font-size: 1.95em;
  font-weight: bold;
  line-height: 1.15;
  margin: 0.8em 0 0.45em;
}
.home-path-text {
  display: block;
  color: var(--home-muted-color);
  font-size: 1.05em;
  line-height: 1.55;
  max-width: 26em;
}
.home-path-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  color: var(--home-technical-color);
  font-family: 'Roboto';
  font-size: 0.98em;
  font-weight: bold;
  line-height: 1.2;
  margin-top: auto;
  padding-top: 1.8em;
  position: relative;
  z-index: 1;
}
.home-path-cta-creative {
  color: var(--home-creative-color);
}
.home-path-arrow {
  font-size: 1.25em;
  line-height: 1;
}
.home-selected {
  width: var(--home-content-width);
  max-width: var(--home-content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 3.4em 0 2.5em;
}
.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2em;
  margin-bottom: 1.35em;
}
.home-section-title {
  color: var(--home-text-color);
  font-size: 1.75em;
  line-height: 1.15;
  margin: 0;
  text-transform: none;
}
.home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  color: var(--home-technical-color);
  font-family: 'Roboto';
  font-size: 0.98em;
  font-weight: bold;
  text-decoration: none;
}
.home-section-link:hover {
  color: var(--home-technical-hover-color);
  text-decoration: underline;
}
.home-work-grid {
  display: grid;
  grid-template-columns: repeat(var(--home-work-columns, 4), minmax(0, 1fr));
  gap: 1em;
}
.home-work-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--home-border-color);
  border-radius: 7px;
  box-shadow: 0 0.25em 1.1em rgba(15, 23, 42, 0.07);
}
.home-work-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  line-height: 0;
  background: #333;
}
.home-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  transition: opacity .25s ease-in-out;
}
.home-work-image:hover img {
  opacity: 0.75;
}
.home-work-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1em 0.85em 1.1em;
}
.home-work-meta {
  color: var(--home-technical-color);
  font-family: 'Roboto';
  font-size: 0.86em;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 0.55em;
}
.home-work-meta-creative {
  color: var(--home-creative-color);
}
.home-work-title {
  font-size: 1em;
  line-height: 1.2;
  margin: 0 0 0.55em;
}
.home-work-title-link {
  color: var(--home-text-color);
  text-decoration: none;
}
.home-work-title-link:hover {
  color: #000;
  text-decoration: underline;
}
.home-work-year {
  color: var(--home-muted-color);
  font-size: 0.9em;
  line-height: 1.2;
  margin-top: auto;
}
@media screen and (max-width:767px) {
  .home-hero {
    min-height: 380px;
  }
  .home-hero-copy {
    padding-top: 4em;
    padding-bottom: 3.5em;
  }
  .home-hero-title {
    font-size: 3em;
  }
  .home-paths,
  .home-selected {
    width: 90%;
  }
  .home-path {
    min-height: 280px;
  }
  .home-paths,
  .home-work-grid {
    grid-template-columns: 1fr;
  }
  .home-work-grid {
    grid-template-columns: repeat(var(--home-work-columns, 1), minmax(0, 1fr));
  }
  .home-section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6em;
  }
}
@media screen and (min-width:450px) and (max-width:767px) {
  .home-work-grid {
    grid-template-columns: repeat(var(--home-work-columns, 2), minmax(0, 1fr));
  }
}
@media screen and (min-width:768px) and (max-width:1150px) {
  .home-work-grid {
    grid-template-columns: repeat(var(--home-work-columns, 2), minmax(0, 1fr));
  }
  .home-paths {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width:1151px) {
  .home-selected {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .home-section-header {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  .home-work-grid {
    grid-template-columns: repeat(var(--home-work-columns, 5), minmax(0, 1fr));
    width: 100%;
    box-sizing: border-box;
    padding-left: 1em;
    padding-right: 1em;
  }
}
