/* src/components/Misc/assets/styles/thorium-web.publicationGrid.module.css */
.thorium_web_publicationGrid_wrapper {
  --th-color-text: #333;
  --th-color-text-secondary: #666;
  --th-color-background: #fff;
  --th-color-primary: #e0e0e0;
  --th-color-secondary: #fafafa;
  padding: 1rem;
  width: 100%;
}
.thorium_web_publicationGrid_card {
  display: flex;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--th-color-primary);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: white;
}
.thorium_web_publicationGrid_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.thorium_web_publicationGrid_cover {
  width: 120px;
  height: 180px;
  flex-shrink: 0;
  margin: 0;
  background-color: var(--th-color-secondary);
}
.thorium_web_publicationGrid_image {
  width: 120px;
  height: 180px;
  object-fit: contain;
}
.thorium_web_publicationGrid_info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.thorium_web_publicationGrid_title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--th-color-text);
}
.thorium_web_publicationGrid_author {
  margin: 0 0 0.75rem;
  color: var(--th-color-text-secondary);
  font-size: 1rem;
}
.thorium_web_publicationGrid_rendition {
  background: var(--th-color-primary);
  color: var(--th-color-text);
  padding: 0.25rem 0.75rem;
  margin: 0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: auto;
  align-self: flex-start;
}

/* src/components/Misc/assets/styles/thorium-web.loader.module.css */
.thorium_web_loader_wrapper {
  width: 100%;
  height: 100dvh;
  height: 100vh;
}
.thorium_web_loader_loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--th-theme-text, CanvasText);
  background-color: var(--th-theme-background, Canvas);
  font-weight: bold;
}
.thorium_web_loader_loader::after {
  content: "...";
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  animation: thorium_web_loader_ellipsis-dot 1s infinite 300ms;
  animation-fill-mode: forwards;
  width: 3ch;
}
@keyframes thorium_web_loader_ellipsis-dot {
  25% {
    content: "";
  }
  50% {
    content: ".";
  }
  75% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

/* src/components/Misc/assets/styles/thorium-web.error.module.css */
.thorium_web_error_wrapper {
  --th-color-text: #333;
  --th-color-text-secondary: #666;
  --th-color-background: #fff;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.thorium_web_error_title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--th-color-text);
  margin: 0 0 1rem 0;
}
.thorium_web_error_message {
  font-size: 1.125rem;
  color: var(--th-color-text-secondary);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}
/*# sourceMappingURL=index.css.map */