@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  background: #fff;
  color: #000;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
  padding: 28px 36px;
}

.nav a,
.nav button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
}

.nav a:hover,
.nav button:hover {
  opacity: 0.6;
}

.archive-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
}

.archive-menu {
  display: none;
  flex-direction: row;
  gap: 42px;
  margin-top: 0;
}

.archive-menu.open {
  display: flex;
}

.empty-space {
  min-height: calc(100vh - 80px);
}
