/* Font Stuff */
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
/* Colors */
/* Core Stuff */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(10pt, 1vw, 16pt);
  font-family: "Sofia Sans Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: whitesmoke;
  overflow: hidden;
}

body {
  font-size: 1rem;
  line-height: 1.4;
  color: #000012;
  height: 100vh;
  overflow: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0.5rem 0;
}

h1 {
  font-size: 1.4rem;
}

a {
  color: #1F8CD6;
}

a:hover {
  color: #175E91;
}

pre {
  background: #F0F0F0;
  margin: 1rem 0;
  border-radius: 2px;
}

blockquote {
  border-left: 10px solid #eee;
  margin: 0;
  padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
  margin: 0 3rem;
}

.padding {
  padding: 3rem 1rem;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Content Styling */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0.5rem;
  display: flex;
  align-items: center;
}
header .header-item {
  min-width: calc(20% - 1rem);
  width: calc(20% - 1rem);
  height: 3rem;
  padding: 0 1rem;
  margin: 0 0.5rem;
  background-color: white;
  transition: background-color 500ms ease;
  text-decoration: none;
  color: #000012;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
header .header-item:hover {
  background-color: gold;
}
header .header-item.disabled {
  opacity: 0.1;
}
header .header-item.disabled:hover {
  background-color: transparent;
}
header .langswitcher {
  display: flex;
  min-width: calc(20% - 1rem);
  width: calc(20% - 1rem);
}
header .langswitcher .header-item {
  min-width: calc(50% - 0.5rem);
  width: calc(50% - 0.5rem);
}
header .langswitcher .header-item.active {
  background-color: gold;
}
header .logo {
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  color: #000012;
}
header svg {
  height: 2rem;
  vertical-align: middle;
  margin: 0.5rem 0;
}
header .tags {
  display: flex;
  flex-wrap: wrap;
}
header .tags .tag {
  padding: 0 0.5rem;
  margin: 0.1rem;
  text-decoration: none;
  color: #000012;
}
header .tags .tag:hover {
  background-color: gold;
}
header .tags .tag.active {
  background-color: gold;
}
header .tags .tag.active:hover {
  background-color: rgba(250, 250, 210, 0.8);
}
header .tags .tag.disabled {
  opacity: 0.1;
}
header .tags .tag.disabled:hover {
  background-color: transparent;
}

main {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 4.5rem 0.5rem;
  width: 100%;
}
main .project {
  position: relative;
  width: calc(20% - 1rem);
  padding: 1rem;
  margin: 0.5rem;
  background-color: white;
  aspect-ratio: 1;
  opacity: 0.05;
}
main .project .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .project.active {
  opacity: 1;
}
main .project.active .mask {
  height: 0px;
}
main .project .cover {
  width: 100%;
}
main .project .cover img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
main .project .title {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem;
  background-color: white;
}
main .project .project-url {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
main .project .categories {
  position: absolute;
  right: 0;
  top: 1.5rem;
}
main .project .categories ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
main .project .categories ul li {
  padding: 0 0.5rem;
  margin: 0.25rem 0;
  background-color: rgba(250, 250, 210, 0.8);
  transition: background-color 500ms ease;
  text-align: right;
}
main .project .categories ul li:hover {
  background-color: gold;
}
main .project .categories ul li:has(.active) {
  background-color: gold;
}
main .project .categories ul li:has(.active):hover {
  background-color: rgba(250, 250, 210, 0.8);
}
main .project .categories ul li a {
  color: #000012;
  text-decoration: none;
}
main.default {
  height: 100vh;
  overflow: hidden;
  padding-bottom: 1rem;
}
main.default .editorial-content {
  width: calc(40% - 1rem);
  margin: 0.5rem;
  padding: 1rem;
  height: 100%;
  background-color: white;
}
main.default .visual-content {
  width: calc(60% - 1rem);
  margin: 0.5rem;
  padding: 0;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
main.default .visual-content::-webkit-scrollbar {
  display: none;
}
main.default .visual-content img {
  max-width: 100%;
  display: block;
  margin-bottom: 1rem;
}

.footer {
  background-color: inherit;
}

@media screen and (max-width: 1500px) {
  main .project {
    width: calc(25% - 1rem);
  }
}
@media screen and (max-width: 1200px) {
  main .project {
    width: calc(33% - 1rem);
  }
}
@media screen and (max-width: 576px) {
  main .project {
    width: calc(50% - 1rem);
  }
}/*# sourceMappingURL=custom.css.map */