:root {
  --color-background: #0e0e12;
  --color-surface:    #1a1a24;
  --color-text:       #e6e6ec;
  --color-link-hover: #6cd9a6;
  --color-accent:     #c1c1d2;
  --color-border:     #535373;
  --color-gray:       #a6a6bf;
  --font-family:      'Spectral', serif;
}

[data-theme='light'] {
  --color-background: #e6e6ec;
  --color-surface:    #c1c1d2;
  --color-text:       #0e0e12;
  --color-link-hover: #e6e6ec;
  --color-accent:     #535373;
  --color-border:     #535373;
  --color-gray:       #333346;
  --font-family:      'Spectral', serif;
}

@font-face {
  font-family: 'Spectral';
  src: url("../assets/Spectral/Spectral-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Spectral';
  src: url("../assets/Spectral/Spectral-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Spectral';
  src: url("../assets/Spectral/Spectral-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Spectral';
  src: url("../assets/Spectral/Spectral-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

.body {
  margin: 0;
  padding: 1.25rem;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-family);
}

.body a {
  color: var(--color-accent);
  text-decoration: none;
}

.body a:hover {
  color: var(--color-link-hover);
  cursor: pointer;
}

.body > a {
  color: var(--color-gray);
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-title {
  text-align: center;
  min-height: 8rem;
  margin: 0;
  margin-top: 4rem;
  font-size: 2rem;
  border: 2px solid var(--color-border);
  background-color: var(--color-surface);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-title > h1 {
  margin: 2rem 0 0 0;
  font-size: 3rem;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 50vh;
}

.main > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

.content {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  background-color: var(--color-surface);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.content > p {
  margin: 2rem 2rem 0rem 2rem;
  text-align: justify;
  text-indent: 1.5em;
  font-size: 1rem;
  line-height: 1.8;
}

.sidebar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--color-surface);
  border-right: 2px solid var(--color-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebar h1 {
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem 1rem;
}

.divider {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-bottom: 0.5rem;
}

.sidebar > p {
  margin: 0 1rem 0 1rem;
  margin-right: 1.5rem;
  text-align: justify;
}

.theme-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 2px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme-switcher:hover {
  background-color: var(--color-accent);
  color: var(--color-background);
}

.gr_custom_container_1750546163 {
  background-color: transparent;
  color: var(--color-text);
  width: 90%;
  max-width: 90%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gr_custom_container_1750546163 > a {
  color: var(--color-text);
}

.gr_custom_container_1750546163 > a:hover {
  color: var(--color-link-hover);
}

.gr_custom_header_1750546163 {
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  margin-bottom: 0.3125rem;
  text-align: center;
  font-size: 1.2em;
}

.gr_custom_each_container_1750546163 {
  width: 100%;
  clear: both;
  margin-bottom: 0.625rem;
  overflow: auto;
  padding-bottom: 0.25rem;
}

.gr_custom_book_container_1750546163 {
  overflow: hidden;
  height: auto;
  max-height: 10rem;
  float: right;
  margin-left: 0.25rem;
  width: 30%;
  max-width: 6rem;
  min-width: 4rem;
}

.gr_custom_book_container_1750546163 img {
  width: 100%;
  height: auto;
  max-height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.gr_custom_author_1750546163 {
  font-size: 0.8em;
  line-height: 1.4;
}

.gr_custom_tags_1750546163 {
  font-size: 0.8em;
  color: var(--color-gray);
}

.gr_custom_rating_1750546163 {
  float: right;
}

@media (max-width: 768px) {
  .gr_custom_container_1750546163 {
    padding: 0.5rem 0.25rem;
  }
  .gr_custom_book_container_1750546163 {
    width: 25%;
    max-width: 5rem;
    min-width: 3rem;
  }
  .gr_custom_header_1750546163 {
    font-size: 1.1em;
  }
  .gr_custom_author_1750546163,
  .gr_custom_tags_1750546163 {
    font-size: 0.75em;
  }
}

@media (max-width: 480px) {
  .gr_custom_book_container_1750546163 {
    width: 20%;
    max-width: 4rem;
    min-width: 2.5rem;
  }
  .gr_custom_header_1750546163 {
    font-size: 1em;
  }
}
/*# sourceMappingURL=main.css.map */