<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: 'Erode-Light';
  src: url('../fonts/Erode-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Erode-LightItalic';
  src: url('../fonts/Erode-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Erode-Regular';
  src: url('../fonts/Erode-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Erode-Italic';
  src: url('../fonts/Erode-Italic.woff2') format('woff2');
  font-weight: 350;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Erode-Semibold';
  src: url('../fonts/Erode-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Erode-SemiboldItalic';
  src: url('../fonts/Erode-SemiboldItalic.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Erode-Bold';
  src: url('../fonts/Erode-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Seshat';
  src: url('/assets/fonts/Seshat.otf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
}

body {
  background-image: radial-gradient(#d5dbdb, 0.5px, #ffffff 0.7px);
  background-size: 10px 15px;
  font-family: 'Erode-Regular', sans-serif;
  letter-spacing: 1.1px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

main {
  max-width: 1000px;
   
}

/* Override max-width for page.php to allow 4 columns */
.page-container main {
  max-width: 1200px;
}


.title {
  font-family: 'Erode-Italic', sans-serif;
  font-style: italic;
  font-size: 1em;
  letter-spacing: 171px;
  margin-top: 1.5rem;
  position: fixed;
  top: 20;
  width: 600px;
  text-align: center;
}

.title-page {
  font-family: 'Erode-Italic', sans-serif;
  font-style: italic;
  font-size: 1em;
  letter-spacing: 50px;
  margin-top: 3.5rem;
  color:#888;
    
}
.email {
  font-family: 'Erode-Italic', sans-serif;
  font-style: italic;
  font-size: .8em;
  letter-spacing: 5px;
  margin-top: 3.5rem;
  color:#888;
    
}
a {
  color: currentColor;
  text-decoration: none;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

img {
  max-width: 100%;
}


.page-container {
padding-top: 3rem;
  
}

.posts-container {
  padding-top: 4rem;
  margin: 3em;
}

.post {
  margin-bottom: 10rem;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;  
  margin: 1rem;
}

.layout-column {
  flex: 1 1 calc(25% - 0.5rem);
  min-width: 100px;
  box-sizing: border-box;
}

.layout-column[style*="flex: 100%"] {
  flex: 1 1 calc(25% - 0.5rem);
}



.block-type-text {
  margin-left: 1rem;
  font-size: .85rem;
  text-align: left;
  line-height: 1.4;
}

.block-type-text a {
  text-decoration: underline;
}

.block-type-image {
  width: 100%;
}

.k-block-type-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

.k-block-type-image figcaption,
.img-caption {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}



@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }
  
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid &gt; .column {
    grid-column: span var(--columns);
  }
}

@media screen and (max-width: 700px) {
  .layout-column {
    flex: 1 1 calc(80% - 0.5rem);
  }
}</pre></body></html>