/* [project]/src/styles/pages/academie.css [app-client] (css) */
.projects-v3.library-v3 {
  --hymo-red: #27684d;
  --hymo-red-2: #1b503d;
  --hymo-red-3: #388a61;
  --hymo-red-soft: #e7f3ed;
  --hymo-red-soft-2: #d5ebe0;
  --hymo-red-line: #b1d3c2;
  --hymo-red-faint: #f5faf7;
  --hymo-red-glow: #246b4d38;
  --hymo-red-halo: #246b4d52;
  --hymo-red-accent: #32854e;
  --hymo-grad-accent: var(--hymo-red);
  --hymo-grad-accent-kpi: var(--hymo-red);
  --hymo-grad-bar: var(--hymo-red);
}

.projects-v3.library-v3 .hero-row {
  margin-bottom: 64px;
}

.projects-v3.library-v3 .greet-title {
  text-wrap: balance;
}

.projects-v3.library-v3 .hero-left {
  gap: 20px;
}

.projects-v3.library-v3 .hero-left > .greet {
  margin-bottom: 8px;
}

.projects-v3.library-v3 .sec {
  margin-bottom: 72px;
}

@media (width <= 1023px) {
  .projects-v3.library-v3 .hero-row {
    margin-bottom: 48px;
  }

  .projects-v3.library-v3 .sec {
    margin-bottom: 56px;
  }
}

@media (width <= 767px) {
  .projects-v3.library-v3 .hero-row {
    margin-bottom: 36px;
  }

  .projects-v3.library-v3 .sec {
    margin-bottom: 48px;
  }
}

.library-v3 .lib-v3-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding: 13px 18px;
  margin-bottom: 40px;
  border-radius: 15px;
  border: 1px solid var(--hymo-glass-border-light);
  background: var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--hymo-shadow-glass);
  cursor: pointer;
  transition: all var(--hymo-t) var(--hymo-ease);
}

.library-v3 .lib-v3-search:hover {
  box-shadow: var(--hymo-shadow-glass-hover);
}

.library-v3 .lib-v3-search svg {
  width: 16px;
  height: 16px;
  color: var(--hymo-red);
  flex-shrink: 0;
}

.library-v3 .lib-v3-search__placeholder {
  flex: 1;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--hymo-fg-3);
}

.library-v3 .lib-v3-search kbd {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 7px;
  background: var(--hymo-surface);
  border: 1px solid var(--hymo-border);
  box-shadow: 0 1px 0 var(--hymo-border);
  font-family: var(--font-mono), ui-monospace, monospace;
  font-size: 11px;
  color: var(--hymo-fg-3);
  white-space: nowrap;
}

@media (width <= 767px) {
  .library-v3 .lib-v3-search {
    margin-bottom: 28px;
  }

  .library-v3 .lib-v3-search kbd {
    display: none;
  }
}

.library-v3 .lib-cat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (width <= 1023px) {
  .library-v3 .lib-cat {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 600px) {
  .library-v3 .lib-cat {
    grid-template-columns: 1fr;
  }
}

.library-v3 .lib-cat__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  cursor: pointer;
  background: var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass);
  overflow: hidden;
  isolation: isolate;
  transition: transform .28s var(--hymo-ease), box-shadow .28s var(--hymo-ease);
}

.library-v3 .lib-cat__card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(60% 80% at 100% 0, #cfe8db38, #0000 70%);
  z-index: -1;
  pointer-events: none;
}

.library-v3 .lib-cat__card:hover {
  box-shadow: var(--hymo-shadow-glass-hover);
}

.library-v3 .lib-cat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--hymo-red-soft);
  color: var(--hymo-red);
  border: 1px solid var(--hymo-red-line);
  flex-shrink: 0;
  margin-bottom: 4px;
  transition: transform .28s var(--hymo-ease);
}

.library-v3 .lib-cat__icon svg {
  width: 18px;
  height: 18px;
}

.library-v3 .lib-cat__card:hover .lib-cat__icon {
  transform: scale(1.06);
}

.library-v3 .lib-cat__name {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.012em;
  color: var(--hymo-fg);
  line-height: 1.25;
  margin: 0;
}

.library-v3 .lib-cat__desc {
  font-size: 13px;
  color: var(--hymo-fg-3);
  line-height: 1.45;
  margin: 0;
}

.library-v3 .lib-cat__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hymo-red);
  transition: gap var(--hymo-t) var(--hymo-ease);
}

.library-v3 .lib-cat__cta svg {
  width: 13px;
  height: 13px;
}

.library-v3 .lib-cat__card:hover .lib-cat__cta {
  gap: 10px;
}

.library-v3 .back-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 54px;
  width: 54px;
  padding: 0;
  color: var(--hymo-red);
  background: var(--hymo-glass-2);
  border: 1px solid var(--hymo-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all .42s cubic-bezier(.2, .8, .2, 1);
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  font-family: inherit;
  box-shadow: inset 0 1.5px #ffffffb3, inset 0 -1px #fff3, inset 1px 0 #ffffff40, inset -1px 0 #ffffff40, 0 1px 2px #1c543d1a, 0 12px 28px -10px #1c543d38;
  isolation: isolate;
}

.library-v3 .back-arrow {
  justify-content: center;
}

.library-v3 .back-arrow svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (width <= 767px) {
  .library-v3 .back-arrow {
    height: 42px;
    width: 42px;
  }

  .library-v3 .back-arrow svg {
    width: 17px;
    height: 17px;
  }
}

.library-v3 .back-arrow .back-arrow-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--hymo-red);
  letter-spacing: -.005em;
  max-width: 0;
  opacity: 0;
  transition: max-width .42s var(--hymo-ease), opacity .25s ease, margin .42s var(--hymo-ease);
}

.library-v3 .back-arrow:hover {
  width: 200px;
  border-color: var(--hymo-border-strong);
  color: var(--hymo-red);
  background: var(--hymo-red-soft);
  box-shadow: inset 0 1.5px #ffffffd9, inset 0 -1px #ffffff40, inset 1px 0 #ffffff4d, inset -1px 0 #ffffff4d, 0 1px 2px #1c543d24, 0 18px 36px -10px #1c543d5c;
}

.library-v3 .back-arrow:hover .back-arrow-label {
  max-width: 172px;
  opacity: 1;
  margin: 0 0 0 9px;
}

.library-v3 .lib-cathub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

@media (width <= 1199px) {
  .library-v3 .lib-cathub {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
}

@media (width <= 1023px) {
  .library-v3 .lib-cathub {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.library-v3 .lib-cathub__title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.library-v3 .lib-cathub__title-row .lib-cathub__icon {
  margin-top: 4px;
}

.library-v3 .lib-cathub__title-row .greet-title {
  margin-bottom: 0;
}

.library-v3 .lib-cathub__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: var(--hymo-red);
  background: linear-gradient(0deg, #27684d12, #27684d12), linear-gradient(135deg, #ffffffc7 0%, #ffffff80 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1.5px solid #fff9;
  box-shadow: inset 0 1.5px #ffffffb3, 0 1px 2px #1c543d14, 0 10px 24px -12px #1c543d40;
}

.library-v3 .lib-cathub__icon svg {
  width: 25px;
  height: 25px;
}

@media (width <= 767px) {
  .library-v3 .lib-cathub__title-row {
    gap: 12px;
  }

  .library-v3 .lib-cathub__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .library-v3 .lib-cathub__icon svg {
    width: 20px;
    height: 20px;
  }
}

.library-v3 .lib-cathub__objectives {
  align-self: end;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(0deg, #27684d0a, #27684d0a), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.library-v3 .lib-cathub__objectives:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(60% 80% at 100% 0, #cfe8db47, #0000 70%);
  z-index: -1;
  pointer-events: none;
}

.library-v3 .lib-cathub__objectives-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--hymo-red);
  margin-bottom: 10px;
}

.library-v3 .lib-cathub__objectives-head svg {
  width: 14px;
  height: 14px;
}

.library-v3 .lib-cathub__objectives ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.library-v3 .lib-cathub__objective {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--hymo-fg-2);
}

.library-v3 .lib-cathub__objective + .lib-cathub__objective {
  border-top: 1px solid var(--hymo-border);
}

.library-v3 .lib-cathub__objective-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 7px;
  background: var(--hymo-red-soft);
  border: 1px solid var(--hymo-red-line);
  color: var(--hymo-red);
}

.library-v3 .lib-cathub__objective-check svg {
  width: 11px;
  height: 11px;
}

.projects-v3-sort-menu.lib-sort-menu {
  --hymo-red: #27684d;
  --hymo-red-2: #1b503d;
  --hymo-red-3: #388a61;
  --hymo-red-soft: #e7f3ed;
  --hymo-red-soft-2: #d5ebe0;
  --hymo-red-line: #b1d3c2;
  --hymo-red-faint: #f5faf7;
  --hymo-red-glow: #246b4d38;
  --hymo-red-halo: #246b4d52;
  --hymo-red-accent: #32854e;
}

.library-v3 .toolbar {
  margin-bottom: 18px;
}

.library-v3 .toolbar .tb-search {
  flex: 260px;
  max-width: 460px;
}

@media (width <= 640px) {
  .library-v3 .toolbar .tb-search {
    flex-basis: 100%;
    max-width: none;
  }
}

.library-v3 .lib-result-note {
  margin: 0 0 14px;
  font-size: 12.5px;
  color: var(--hymo-fg-3);
}

.library-v3 .lib-art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (width <= 1023px) {
  .library-v3 .lib-art-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 767px) {
  .library-v3 .lib-art-grid {
    grid-template-columns: 1fr;
  }
}

.library-v3 .lib-art {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass);
  overflow: hidden;
  isolation: isolate;
  transition: transform .28s var(--hymo-ease), box-shadow .28s var(--hymo-ease);
  animation: lib-art-in .46s var(--hymo-ease) both;
  animation-delay: var(--enter-delay, 0s);
}

@keyframes lib-art-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .library-v3 .lib-art {
    animation: none;
  }
}

.library-v3 .lib-art:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(60% 80% at 100% 0, #cfe8db38, #0000 70%);
  z-index: -1;
  pointer-events: none;
}

.library-v3 .lib-art:hover {
  box-shadow: var(--hymo-shadow-glass-hover);
}

.library-v3 .lib-art__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--hymo-red-soft);
  color: var(--hymo-red);
  border: 1px solid var(--hymo-red-line);
  flex-shrink: 0;
  margin-bottom: 4px;
  transition: transform .28s var(--hymo-ease);
}

.library-v3 .lib-art__icon svg {
  width: 17px;
  height: 17px;
}

.library-v3 .lib-art:hover .lib-art__icon {
  transform: scale(1.06);
}

.library-v3 .lib-art__title {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.012em;
  color: var(--hymo-fg);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.library-v3 .lib-art__excerpt {
  font-size: 13px;
  color: var(--hymo-fg-3);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.library-v3 .lib-art__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 2px;
  font-size: 12px;
  color: var(--hymo-fg-4);
}

.library-v3 .lib-art__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-variant-numeric: tabular-nums;
}

.library-v3 .lib-art__meta svg {
  width: 12px;
  height: 12px;
}

.library-v3 .lib-art__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hymo-red);
  transition: gap var(--hymo-t) var(--hymo-ease);
}

.library-v3 .lib-art__cta svg {
  width: 13px;
  height: 13px;
}

.library-v3 .lib-art:hover .lib-art__cta {
  gap: 10px;
}

.library-v3 .lib-art--skeleton {
  pointer-events: none;
}

.library-v3 .lib-art__line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--hymo-surface-2) 25%, var(--hymo-surface) 50%, var(--hymo-surface-2) 75%);
  background-size: 200% 100%;
  animation: 1.4s infinite lib-shimmer;
}

.library-v3 .lib-art__line--short {
  width: 70%;
}

.library-v3 .lib-art__line--xs {
  width: 45%;
  margin-bottom: 20px;
}

@keyframes lib-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .library-v3 .lib-art__line {
    animation: none;
  }
}

.search-overlay--library .search-overlay__item-icon {
  background: #e7f3ed;
  color: #27684d;
}

.search-overlay--library .search-overlay__item-text--category {
  color: #27684d;
}

.search-overlay--library .search-overlay__item:hover {
  background: #f5faf7;
}

.library-v3--article {
  --portal-accent: 155 45% 28%;
  --portal-accent-bg: 150 35% 95%;
}

.library-v3--article .focus-col {
  animation: .48s cubic-bezier(.22, 1, .36, 1) backwards lib-article-enter;
}

@keyframes lib-article-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .library-v3--article .focus-col {
    animation: none;
  }
}

main:has(.library-v3--article) {
  overflow: clip;
}

.library-v3--article .article-layout {
  overflow-x: clip;
}

.library-v3 .lib-arthero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}

@media (width <= 1199px) {
  .library-v3 .lib-arthero {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
}

@media (width <= 1023px) {
  .library-v3 .lib-arthero {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }
}

.library-v3 .lib-arthero__top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

@media (width <= 767px) {
  .library-v3 .lib-arthero__top {
    gap: 8px;
    margin-bottom: 14px;
  }

  .library-v3 .lib-arthero__cat {
    padding: 8px 14px;
    font-size: 12px;
  }
}

.library-v3 .lib-arthero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hymo-red);
  background: linear-gradient(135deg, #ffffffc7 0%, #ffffff8c 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1.5px solid #fff9;
  box-shadow: inset 0 1.5px #ffffffb3, 0 1px 2px #1c543d14, 0 10px 24px -12px #1c543d40;
}

.library-v3 .lib-arthero__cat svg {
  width: 13px;
  height: 13px;
}

.library-v3 .lib-arthero__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin: 0 0 14px;
  background: var(--hymo-grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

@media (width <= 1023px) {
  .library-v3 .lib-arthero__title {
    font-size: 34px;
  }
}

@media (width <= 767px) {
  .library-v3 .lib-arthero__title {
    font-size: 27px;
  }
}

.library-v3 .lib-arthero__intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hymo-fg-2);
  max-width: 640px;
  margin: 0 0 18px;
}

.library-v3 .lib-arthero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 12.5px;
  color: var(--hymo-fg-3);
}

.library-v3 .lib-arthero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.library-v3 .lib-arthero__meta svg {
  width: 13px;
  height: 13px;
  color: var(--hymo-red);
}

.library-v3 .lib-arthero__points {
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(0deg, #27684d0a, #27684d0a), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.library-v3 .lib-arthero__points:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(60% 80% at 100% 0, #cfe8db47, #0000 70%);
  z-index: -1;
  pointer-events: none;
}

@media (width <= 767px) {
  .library-v3 .lib-arthero__points {
    padding: 18px;
  }

  .library-v3 .lib-cathub__objectives {
    padding: 18px;
  }
}

.library-v3 .lib-arthero__points-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--hymo-red);
  margin: 0 0 10px;
}

.library-v3 .lib-arthero__points-title svg {
  width: 14px;
  height: 14px;
}

.library-v3 .lib-arthero__points ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.library-v3 .lib-arthero__point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--hymo-fg-2);
}

.library-v3 .lib-arthero__point + .lib-arthero__point {
  border-top: 1px solid var(--hymo-border);
}

.library-v3 .lib-arthero__point-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 7px;
  background: var(--hymo-red-soft);
  border: 1px solid var(--hymo-red-line);
  color: var(--hymo-red);
}

.library-v3 .lib-arthero__point-check svg {
  width: 11px;
  height: 11px;
}

.library-v3--article .article-toolbar {
  max-width: none;
  padding: 0;
  margin: 0 0 32px;
  overflow-x: visible;
}

.library-v3--article .article-toolbar [class*="bg-[hsl(var(--card))]"] {
  background: linear-gradient(0deg, #27684d0a, #27684d0a), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass);
}

.library-v3--article .article-search-trigger {
  max-width: 420px;
  border-radius: 15px;
  border: 1px solid var(--hymo-glass-border-light);
  background: linear-gradient(0deg, #27684d0a, #27684d0a), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--hymo-shadow-glass);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--hymo-fg-3);
  transition: all var(--hymo-t) var(--hymo-ease);
}

.library-v3--article .article-search-trigger:hover {
  border-color: var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass-hover);
}

@media (width <= 767px) {
  .library-v3--article .article-search-trigger {
    max-width: none;
  }
}

.library-v3--article .article-search-trigger__shortcut {
  padding: 2px 8px;
  border-radius: 7px;
  background: var(--hymo-surface);
  border: 1px solid var(--hymo-border);
  box-shadow: 0 1px 0 var(--hymo-border);
  font-family: var(--font-mono), ui-monospace, monospace;
  font-size: 11px;
  color: var(--hymo-fg-3);
}

.library-v3--article .article-layout {
  max-width: none;
  padding: 0 0 48px;
}

@media (width >= 1024px) {
  .library-v3--article .article-toc-sticky {
    background: linear-gradient(0deg, #27684d0a, #27684d0a), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--hymo-glass-border-light);
    box-shadow: var(--hymo-shadow-glass);
    border-radius: 18px;
    isolation: isolate;
  }

  .library-v3--article .article-toc-sticky:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(60% 80% at 100% 0, #cfe8db47, #0000 70%);
    z-index: -1;
    pointer-events: none;
  }
}

.library-v3--article .lib-toc {
  list-style: none;
  margin: 0;
  padding: 6px 8px;
}

.library-v3--article .lib-toc__sec {
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 10px;
  transition: background var(--hymo-t) var(--hymo-ease);
}

.library-v3--article .lib-toc__sec a {
  flex: 1;
  min-width: 0;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--hymo-fg-2);
  line-height: 1.35;
  border-radius: 10px;
  transition: color var(--hymo-t) var(--hymo-ease);
}

.library-v3--article .lib-toc__sec a:hover {
  color: var(--hymo-red);
}

.library-v3--article .lib-toc__sec--active {
  background: var(--hymo-red-faint);
}

.library-v3--article .lib-toc__sec--active a {
  color: var(--hymo-red);
}

.library-v3--article .lib-toc__chev {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 4px;
  border-radius: 8px;
  color: var(--hymo-fg-4);
  cursor: pointer;
  transition: all var(--hymo-t) var(--hymo-ease);
}

.library-v3--article .lib-toc__chev svg {
  width: 14px;
  height: 14px;
  transition: transform .2s var(--hymo-ease);
}

.library-v3--article .lib-toc__chev:hover {
  color: var(--hymo-red);
  background: var(--hymo-red-soft);
}

.library-v3--article .lib-toc__chev--open svg {
  transform: rotate(90deg);
}

.library-v3--article .lib-toc__sub {
  list-style: none;
  margin: 2px 0 8px;
  padding: 0 0 0 14px;
  animation: lib-toc-open .22s var(--hymo-ease);
}

@keyframes lib-toc-open {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .library-v3--article .lib-toc__sub {
    animation: none;
  }
}

.library-v3--article .lib-toc__item {
  display: block;
  padding: 7px 10px;
  font-size: 12.5px;
  color: var(--hymo-fg-3);
  line-height: 1.4;
  border-radius: 9px;
  transition: all var(--hymo-t) var(--hymo-ease);
}

.library-v3--article .lib-toc__item:hover {
  color: var(--hymo-red);
  background: #ffffffa6;
}

.library-v3--article .lib-toc__item--active {
  color: var(--hymo-red);
  background: var(--hymo-red-soft);
}

.library-v3--article .article-card {
  border-radius: 18px;
  border: 1px solid var(--hymo-glass-border-light);
  background: linear-gradient(0deg, #27684d0a, #27684d0a), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--hymo-shadow-glass);
}

.library-v3--article .article-card:hover {
  box-shadow: var(--hymo-shadow-glass-hover);
}

.library-v3--article .article-card--category .article-card__thumb {
  background: var(--hymo-red-soft);
}

.library-v3--article .article-card--category .article-card__thumb svg {
  color: var(--hymo-red);
  opacity: .55;
}

.library-v3--article .article-sticky-header {
  transform: translateY(18px);
  transition: transform .52s var(--hymo-ease), opacity .42s ease;
}

.library-v3--article .article-sticky-header--visible {
  transform: translateY(0);
}

.library-v3--article .article-sticky-header__title, .library-v3--article .article-sticky-header__section {
  transform: translateY(16px);
  opacity: 0;
  transition: transform .56s var(--hymo-ease) 80ms, opacity .48s ease 80ms;
}

.library-v3--article .article-sticky-header--visible .article-sticky-header__title, .library-v3--article .article-sticky-header--visible .article-sticky-header__section {
  transform: translateY(0);
  opacity: 1;
}

.library-v3--article .article-sticky-header__inner {
  background: linear-gradient(0deg, #27684d0a, #27684d0a), var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass);
}

.article-search-overlay--library .article-search-overlay__bar {
  border-radius: 16px;
  border: 1px solid var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-pop);
}

.article-search-overlay--library .article-search-overlay__results {
  border-radius: 16px;
  border: 1px solid var(--hymo-glass-border-light);
}

.library-v3--article .article-content h2 {
  background: var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--hymo-glass-border-light);
  box-shadow: var(--hymo-shadow-glass);
  border-radius: 18px;
  padding: 18px 24px;
  margin: 72px 0 20px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--hymo-red);
  overflow: hidden;
  isolation: isolate;
}

.library-v3--article .article-content h2:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(60% 80% at 100% 0, #cfe8db47, #0000 70%);
  z-index: -1;
  pointer-events: none;
}

@media (width <= 767px) {
  .library-v3--article .article-content h2 {
    font-size: 1.25rem;
    padding: 14px 18px;
    margin: 52px 0 16px;
  }
}

.library-v3--article .article-content h2:first-child {
  margin-top: 0;
}

.library-v3--article .article-content blockquote, .library-v3--article .article-callout, .library-v3--article .article-inline-callout, .library-v3--article .article-callout-section {
  border: 1px solid var(--hymo-glass-border-light);
  background: linear-gradient(0deg, #27684d0d, #27684d0d), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--hymo-shadow-glass);
  border-radius: 18px;
}

.library-v3--article .article-callout-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.library-v3--article .article-callout-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(60% 80% at 100% 0, #cfe8db47, #0000 70%);
  z-index: -1;
  pointer-events: none;
}

.library-v3--article .article-inline-callout, .library-v3--article .article-callout-section--tip, .library-v3--article .article-callout-section--info, .library-v3--article .article-callout-section--know, .library-v3--article .article-callout-section--further, .library-v3--article .article-callout--tip {
  background: linear-gradient(0deg, #27684d1a, #27684d1a), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
}

.library-v3--article .article-callout--warning {
  background: linear-gradient(0deg, hsl(var(--warning) / .07), hsl(var(--warning) / .07)), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
}

.library-v3--article .article-callout--danger {
  background: linear-gradient(0deg, hsl(var(--danger) / .07), hsl(var(--danger) / .07)), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
}

.library-v3--article .article-callout--info {
  background: linear-gradient(0deg, hsl(var(--info) / .07), hsl(var(--info) / .07)), linear-gradient(0deg, #ffffff40, #ffffff40), var(--hymo-glass-strong);
}

.library-v3--article .article-resources-section {
  border: none;
  border-top: 1px solid var(--hymo-border);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (width >= 1024px) {
  .library-v3--article .back-to-top {
    left: calc(var(--sidebar-width, 0px)  + 24px);
  }
}

.library-v3--article .back-to-top {
  border: 1px solid var(--hymo-red-line);
  background: var(--hymo-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--hymo-shadow-glass);
  color: var(--hymo-red);
}

.library-v3--article .back-to-top:hover {
  box-shadow: var(--hymo-shadow-glass-hover);
}

@media (width <= 1023px) {
  .library-v3--article .back-to-top {
    left: 16px;
    bottom: calc(var(--mobile-nav-h, 74px)  + env(safe-area-inset-bottom, 0px)  + 12px);
  }
}

.library-v3 .acad-hub__args {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.library-v3 .acad-hub__arg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hymo-fg-2);
  background: var(--hymo-glass-soft);
  border: 1px solid var(--hymo-glass-border-light);
}

.library-v3 .acad-hub__arg svg {
  width: 13px;
  height: 13px;
  color: var(--hymo-red);
  flex-shrink: 0;
}

.library-v3 .acad-showcase__grid {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.library-v3 .acad-showcase__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.library-v3 .acad-showcase__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.012em;
  color: var(--hymo-fg);
  transition: gap var(--hymo-t) var(--hymo-ease), color var(--hymo-t) var(--hymo-ease);
}

.library-v3 .acad-showcase__title svg {
  width: 15px;
  height: 15px;
  color: var(--hymo-red);
  flex-shrink: 0;
}

.library-v3 .acad-showcase__title:hover {
  gap: 12px;
  color: var(--hymo-red);
}

@media (width <= 1023px) {
  .library-v3 .acad-showcase__grid {
    gap: 26px;
  }
}

@media (width <= 600px) {
  .library-v3 .acad-showcase__grid {
    gap: 22px;
  }

  .library-v3 .acad-hub__args {
    gap: 6px;
  }
}


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