@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-ThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-ExtraLightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-SemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-ExtraBoldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Grift";
  src: url("../fonts/Grift/Grift-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}
:root {
  --font-stack-main: Grift, sans-serif;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eeeeee;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #bdbdbd;
  --color-gray-500: #9e9e9e;
  --color-gray-600: #757575;
  --color-gray-700: #616161;
  --color-gray-800: #424242;
  --color-gray-900: #212121;
  --color-primary: #007bff;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-white: #ffffff;
  --color-black: #000000;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-stack-main), sans-serif;
  font-size: 24px;
  min-height: 100vh;
  background-color: var(--color-gray-100);
}

@media screen and (max-width: 2400px) {
  body {
    font-size: 20px;
  }
}
@media screen and (max-width: 1600px) {
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 356px) {
  body {
    font-size: 12px;
  }
}
h1 {
  font-size: 5em;
  font-weight: bold;
  margin: 0 0 1rem;
}

h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0 0 1rem;
}

@media screen and (max-width: 1600px) {
  h1 {
    font-size: 3.8em;
  }
  h2 {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 540px) {
  h1 {
    font-size: 3.5em;
  }
  h2 {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 356px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 1.2em;
  }
}
a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 123, 255, 0.4);
  font-weight: bold;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, text-decoration-thickness 0.2s ease;
}
@media (hover: hover) {
  a:hover {
    color: rgb(0, 98.4, 204);
    text-decoration-color: rgb(0, 98.4, 204);
    text-decoration-thickness: 2px;
  }
}
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

label {
  width: 100%;
}

form {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 1600px) {
  form {
    align-items: flex-end;
  }
  label {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  button {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 540px) {
  form {
    align-items: center;
  }
  label {
    width: unset;
  }
  input {
    text-align: center;
    font-size: 1.4em;
  }
  button {
    font-size: 1.4em;
  }
}
input {
  width: 100%;
  font-family: var(--font-stack-main), sans-serif;
  font-size: 1em;
  padding: 0.5em;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  margin-top: 0.5em;
  margin-bottom: 1em;
  max-width: 50ch;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.18);
}

button {
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 6px;
  font-size: 1.5em;
  background-color: var(--color-primary);
  color: white;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 5px 0 rgb(0, 78.72, 163.2), 4px 8px 0 rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, transform 0.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  top: 0;
}
@media (hover: hover) {
  button:hover {
    background-color: rgb(0, 86.1, 178.5);
    box-shadow: 0 7px 0 rgb(0, 49.2, 102), 6px 12px 0 rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
  }
}
button:active {
  top: 2px;
  transform: translateY(0);
  box-shadow: 0 2px 0 rgb(0, 78.72, 163.2), 2px 4px 0 rgba(0, 0, 0, 0.18);
}
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.article-list {
  margin-top: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.article-list a {
  font-size: 1.4em;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  height: 100vh;
  justify-content: center;
  align-content: center;
}
.hero > * {
  grid-column: 2;
  grid-row: 2;
}
.hero > * > h1 {
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero > * > h2 {
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero > * > [data-include], .hero > * > form {
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@media screen and (max-width: 1600px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    margin-right: 2vw;
    margin-left: 2vw;
    text-align: right;
  }
}
@media screen and (max-width: 540px) {
  .hero {
    text-align: center;
  }
}
@media screen and ((min-aspect-ratio: 2.6/1) or ((max-width: 2200px) and (min-aspect-ratio: 2/1))) {
  .hero {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .hero > * {
    grid-column: 2/span 2;
    grid-row: 2;
  }
}
aside {
  background-color: var(--color-gray-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4em;
  padding-bottom: 4em;
}
aside h1,
aside h2,
aside h3 {
  color: var(--color-gray-100);
}
aside h2 {
  margin-top: 1em;
}
aside p {
  font-weight: bold;
  width: 50ch;
  text-align: left;
  margin-bottom: 0;
  font-size: 1.2em;
  color: var(--color-gray-300);
}
aside .strong {
  color: var(--color-gray-900);
}
aside a {
  color: rgb(178.5, 215.4, 255);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(178.5, 215.4, 255, 0.4);
}
@media (hover: hover) {
  aside a:hover {
    color: rgb(229.5, 241.8, 255);
    text-decoration-color: rgb(229.5, 241.8, 255);
    text-decoration-thickness: 2px;
  }
}

.footer {
  background-color: var(--color-gray-900);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 5em;
  padding-bottom: 5em;
}
.footer > * {
  grid-column: 2;
}
.footer h1 {
  font-size: 2.5em;
  color: var(--color-gray-200);
  margin-bottom: 0.5rem;
}
.footer h2 {
  font-size: 1.2em;
  color: var(--color-gray-500);
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.footer p,
.footer label {
  color: var(--color-gray-300);
  font-size: 0.9em;
}

@media screen and (max-width: 1600px) {
  .footer {
    grid-template-columns: 1fr;
    padding-left: 2vw;
    padding-right: 2vw;
    text-align: right;
  }
  .footer > * {
    grid-column: 1;
  }
}
@media screen and (max-width: 540px) {
  .footer {
    text-align: center;
  }
}
.blog-page {
  color: var(--color-gray-900);
  background: radial-gradient(circle at top left, rgba(0, 123, 255, 0.08), transparent 28%), linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 24rem, var(--color-gray-100) 100%);
}
.blog-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.blog-shell {
  padding: 1.5rem 2rem 0;
}

.blog-shell__nav {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9em;
}

.blog-shell__brand {
  letter-spacing: 0.02em;
}

.blog-index,
.blog-post {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding-bottom: 5rem;
}

.blog-index__hero,
.blog-post__header {
  padding-top: 3rem;
  margin-bottom: 3rem;
}

.blog-index__eyebrow,
.blog-post__eyebrow,
.post-card__meta,
.blog-post__meta,
.blog-section-heading p {
  font-size: 0.82em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-700);
}

.blog-index__hero {
  max-width: 40rem;
}
.blog-index__hero h1 {
  max-width: 11ch;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.blog-index__intro,
.blog-post__summary {
  max-width: 40rem;
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--color-gray-800);
}

.blog-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(33, 33, 33, 0.12);
}
.blog-section-heading h2 {
  font-size: 1.8em;
  margin-bottom: 0;
}
.blog-section-heading p {
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9em;
  max-width: 28rem;
}

.blog-index__featured {
  margin-bottom: 4rem;
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(33, 33, 33, 0.08);
  border-radius: 1.25rem;
  background-color: rgba(245, 245, 245, 0.72);
  box-shadow: 0 12px 28px rgba(33, 33, 33, 0.05);
}

.post-card--featured {
  grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
  align-items: center;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(245, 245, 245, 0.96));
}

.post-card__media,
.blog-post__cover {
  margin: 0;
}
.post-card__media img,
.blog-post__cover img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(33, 33, 33, 0.08);
  background-color: var(--color-white);
}

.post-card__content h3 {
  font-size: 1.5em;
  margin-bottom: 0.75rem;
}
.post-card__content p:not(.post-card__meta):not(.post-card__cta) {
  margin: 0;
  color: var(--color-gray-800);
  line-height: 1.6;
}

.post-card__meta,
.blog-post__meta {
  margin-bottom: 0.75rem;
}

.post-card__cta {
  margin-top: 1rem;
  margin-bottom: 0;
}

.blog-index__empty {
  max-width: 36rem;
  line-height: 1.6;
}

.blog-post article {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.blog-post__header {
  margin-bottom: 2rem;
}

.blog-post__cover {
  margin-bottom: 2rem;
}

.blog-post__content {
  font-size: 1.04em;
  line-height: 1.72;
  color: var(--color-gray-900);
}
.blog-post__content > *:first-child {
  margin-top: 0;
}
.blog-post__content > *:last-child {
  margin-bottom: 0;
}
.blog-post__content p,
.blog-post__content ul,
.blog-post__content ol,
.blog-post__content blockquote,
.blog-post__content pre,
.blog-post__content figure {
  margin-top: 0;
  margin-bottom: 1.25em;
}
.blog-post__content h2,
.blog-post__content h3,
.blog-post__content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.1;
}
.blog-post__content h2 {
  font-size: 1.9em;
}
.blog-post__content h3 {
  font-size: 1.4em;
}
.blog-post__content ul,
.blog-post__content ol {
  padding-left: 1.4em;
}
.blog-post__content li + li {
  margin-top: 0.45em;
}
.blog-post__content blockquote {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-primary);
  background-color: rgba(0, 123, 255, 0.06);
  color: var(--color-gray-800);
}
.blog-post__content hr {
  border: 0;
  border-top: 1px solid rgba(33, 33, 33, 0.12);
  margin: 2rem 0;
}
.blog-post__content code {
  font-family: ui-monospace, SFMono-Regular, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.88em;
  background-color: rgba(33, 33, 33, 0.06);
  padding: 0.12em 0.35em;
  border-radius: 0.3rem;
}
.blog-post__content pre {
  padding: 1rem 1.1rem;
  overflow-x: auto;
  border-radius: 0.9rem;
  background-color: var(--color-gray-900);
  color: var(--color-gray-200);
  box-shadow: inset 0 0 0 1px rgba(245, 245, 245, 0.08);
}
.blog-post__content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
}
.blog-post__content a {
  word-break: break-word;
}
.blog-post__content img {
  border-radius: 1rem;
  border: 1px solid rgba(33, 33, 33, 0.08);
  background-color: var(--color-white);
}

.blog-post__footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(33, 33, 33, 0.12);
}

.blog-shell a:focus-visible,
.blog-post__eyebrow a:focus-visible,
.post-card h3 a:focus-visible,
.post-card__cta a:focus-visible,
.blog-post__footer a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

@media screen and (max-width: 900px) {
  .post-card--featured {
    grid-template-columns: minmax(0, 1fr);
  }
  .blog-section-heading {
    align-items: start;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .blog-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .blog-shell__nav {
    align-items: start;
    flex-direction: column;
  }
  .blog-index,
  .blog-post {
    width: min(100% - 1.5rem, 72rem);
  }
  .blog-index__hero,
  .blog-post__header {
    padding-top: 2rem;
  }
  .blog-index__hero h1 {
    max-width: none;
  }
  .post-card,
  .post-card--featured {
    padding: 1.2rem;
  }
}

/*# sourceMappingURL=style.css.map */
