@charset "UTF-8";
.flex-down {
  display: flex;
  flex-direction: column;
}

.flex-right {
  display: flex;
  flex-direction: row;
}

.center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.space-around {
  justify-content: space-around;
}

.gap-0 {
  gap: 0rem;
}

.gap-xs {
  gap: 0.5rem;
}

.gap-s {
  gap: 1rem;
}

.gap-m {
  gap: 2rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.trailing-line {
  overflow: hidden;
}
.trailing-line:after {
  content: "";
  display: inline-block;
  height: 0.75em;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  margin-left: 1rem;
  border-top: 1px solid var(--primary-color);
}

.site-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
}
.site-header * {
  margin: 0;
  line-height: 1.1;
}
.site-header .logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--primary-color);
}
.site-header .logo a {
  text-decoration: none;
}
.site-header .logo:hover {
  color: var(--primary-color);
}
.site-header.hero .logo {
  font-size: 3rem;
}
.site-header .tagline {
  font: var(--font-body);
}

nav.main {
  position: relative;
}
nav.main .hamburger {
  cursor: pointer;
  width: 6rem;
  height: 6rem;
}
nav.main .hamburger .icon {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: absolute;
  display: block;
  top: 3rem;
  right: 1rem;
  width: 1.5rem;
  height: 2px;
  background: var(--text-color);
  -webkit-transform-origin: center;
  transform-origin: center;
  z-index: 10;
}
nav.main .hamburger .icon:before {
  position: absolute;
  display: block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--text-color);
  top: -0.5rem;
}
nav.main .hamburger .icon:after {
  position: absolute;
  display: block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--text-color);
  bottom: -0.5rem;
}
nav.main .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--border-color);
  text-align: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
nav.main input {
  display: none;
}
nav.main input:checked ~ .menu {
  display: flex;
  z-index: 0;
}
nav.main .nav-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}
nav.main .nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: 300;
  font-size: 1.5rem;
}
nav.main .nav-links a {
  text-decoration: none;
}
nav.main .nav-links a:hover {
  color: var(--primary-color);
}

h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}

h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-color);
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

.meta {
  font-style: italic;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
:root {
  --font-heading: "EB Garamond", serif;
  --font-body: "Roboto", sans-serif;
  --primary-color: #000;
  --text-color: #333;
  --background-color: #fff;
  --card-background: #f8f8f8;
  --border-color: #ddd;
  --spacing-unit: 1rem;
  --max-width: 1280px;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

main {
  padding: 0 1rem;
}
main.static {
  min-height: 50vh;
  padding-top: 25px;
  padding-bottom: 75px;
}

footer {
  display: flex;
  flex-direction: row;
  background-color: var(--border-color);
  padding: 4rem 1rem;
  margin-top: 4rem;
  font-size: 1.125rem;
  font-weight: 300;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
footer .footer-column {
  min-width: min(12vw, 10rem);
}
footer ul {
  list-style: none;
}
footer a {
  text-decoration: none;
}

table td {
  padding: 0.25rem 0.5rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  padding-bottom: 0.5rem;
}
.section-heading a {
  color: var(--primary-color);
  text-decoration: none;
}
.section-heading a:hover {
  opacity: 0.7;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  list-style: none;
  margin-left: 0;
}

.article-card {
  background-color: var(--card-background);
  padding: 1.5rem;
}
.article-card .article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.article-card .article-date {
  font-size: 0.875rem;
  color: rgb(112.2, 112.2, 112.2);
}
.article-card .article-level {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(112.2, 112.2, 112.2);
  text-transform: uppercase;
}
.article-card .article-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.125;
}
.article-card .article-title a {
  color: var(--primary-color);
  text-decoration: none;
}
.article-card .article-title a:hover {
  color: var(--primary-color);
  opacity: 0.7;
}
.article-card .article-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.article-card .read-more {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.article-card .read-more::after {
  content: "›";
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}
.article-card .read-more:hover {
  text-decoration: none;
}
.article-card .read-more:hover::after {
  transform: translateX(4px);
}

article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
article nav {
  padding-bottom: 1.5rem;
}
article nav a {
  text-decoration: none;
}
article .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .site-header .logo {
    font-size: 2rem;
  }
  .section-heading {
    font-size: 2rem;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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