/* ===============================
   FONT
================================ */

@font-face {
  font-family: 'Menoe';
  src: url('../fonts/Menoe_Grotesque-Regular.woff2') format('woff2'),
       url('../fonts/Menoe_Grotesque-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ===============================
   RESET
================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Menoe', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  background: #f3f2ee;
  color: #111;
}


/* ===============================
   CONTAINER
================================ */

.container {
  width: 100%;
  padding: 20px;
}


/* ===============================
   HERO
================================ */

.hero {
  padding-top: 40px;
  max-width: 900px;
}

.hero h1 {
  font-size: 16px;
  font-weight: normal;
}




/* ===============================
   GRID
================================ */

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.project {
  grid-column: span 2;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project.medium {
  grid-column: span 4;
}

.project.large {
  grid-column: span 6;
}

.project.huge {
  grid-column: span 8;
}

.project.full {
  grid-column: span 12;
}

.project:hover {
}


/* ===============================
   IMAGE
================================ */

.project img {
  width: 100%;
  display: block;
  border-radius: 0px;
}

.project video {
  width: 100%;
  display: block;
  height: auto;
}

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


/* ===============================
   META
================================ */

.meta {
  margin-top: 12px;
}

.meta h2 {
  font-size: inherit;
  font-weight: normal;
}

.meta p {
  margin-top: 4px;
  margin-bottom: 10px;

  color: #666;
}

.meta .category {
  margin-top: 4px;
}

.meta .description {
  margin-top: 10px;
  max-width: 90%;
}

.meta a {
  color: inherit;
  text-decoration: none;
}


/* ===============================
   ABOUT
================================ */

.about {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-inner {
  max-width: 800px;
  color: #111;
}


/* ===============================
   FOOTER
================================ */

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #111;
}

.footer a {
  color: inherit;
  text-decoration: none;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1400px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
}


/* Tablet */
@media (max-width: 1100px) {

  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .project { grid-column: span 3; }
  .project.medium { grid-column: span 6; }
  .project.large { grid-column: span 6; }

}

/* Mobile */
@media (max-width: 600px) {

  .grid {
    grid-template-columns: 1fr;
  }

  .project,
  .project.medium,
  .project.large,
  .project.huge {
    grid-column: span 1;
  }

}
