badged-icon[data-astro-cid-lib4bup5] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge[data-astro-cid-lib4bup5] {
  position: absolute;
  right: -4px;
  top: -4px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: .625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  min-width: 14px;
  height: 14px;
  padding: 2px 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--badge-fg, #fff);
  background: var(--badge-bg, #1976d2);
  border-radius: 10px;
  box-shadow: 0 1px 3px #0000004d,
      0 0 0 1.5px var(--badge-ring, #fff);
  will-change: transform;
  z-index: 2;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

badged-icon[data-astro-cid-lib4bup5]:hover .badge[data-astro-cid-lib4bup5] {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .badge[data-astro-cid-lib4bup5] {
    transition: none;
  }

  badged-icon[data-astro-cid-lib4bup5]:hover .badge[data-astro-cid-lib4bup5] {
    transform: none;
  }
}
menu-button[data-astro-cid-jkphbzk7] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 12px;
  background: #ffffff1a;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
}

menu-button[data-astro-cid-jkphbzk7]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff26;
  border-radius: 12px;
  transform: scale(0);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

menu-button[data-astro-cid-jkphbzk7]:hover {
  background: #fff3;
  transform: scale(1.05);
}

menu-button[data-astro-cid-jkphbzk7]:hover:before {
  transform: scale(1);
}

menu-button[data-astro-cid-jkphbzk7]:active {
  transform: scale(.95);
}

menu-button[data-astro-cid-jkphbzk7] span[data-astro-cid-jkphbzk7] {
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

menu-button[data-astro-cid-jkphbzk7]:hover span[data-astro-cid-jkphbzk7] {
  transform: rotate(90deg);
}

@media (width >= 641px) {
  menu-button[data-astro-cid-jkphbzk7] {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  menu-button[data-astro-cid-jkphbzk7], menu-button[data-astro-cid-jkphbzk7] span[data-astro-cid-jkphbzk7] {
    transition: none;
  }

  menu-button[data-astro-cid-jkphbzk7]:hover span[data-astro-cid-jkphbzk7] {
    transform: none;
  }
}
/**
 * Button Variants - Modern Design System
 *
 * Modern button system with:
 * - Gradient backgrounds and glass-morphism effects
 * - Smooth animations and fluid transitions
 * - Ripple effects on interaction
 * - Enhanced accessibility
 * - Contemporary design patterns
 */

/* ========== ANIMATIONS ========== */
@keyframes buttonRipple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-8px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ========== PRIMARY BUTTON ========== */
.btn-primary,
a.btn-primary,
button.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--app-accent-color) 0%, #ff8a3d 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
  user-select: none;
}

.btn-primary::before,
a.btn-primary::before,
button.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(255, 159, 67, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active::before,
button.btn-primary:active::before {
  animation: buttonRipple 0.6s ease-out;
}

.btn-primary:active,
button.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(255, 159, 67, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:focus,
button.btn-primary:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.2), 0 12px 28px rgba(255, 159, 67, 0.4);
}

.btn-primary:disabled,
button.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========== SECONDARY BUTTON ========== */
.btn-secondary,
a.btn-secondary,
button.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--app-primary-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 2px solid var(--app-primary-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  overflow: hidden;
  user-select: none;
}

.btn-secondary::after,
a.btn-secondary::after,
button.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--app-primary-color);
  z-index: -1;
  transition: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-secondary:hover,
a.btn-secondary:hover,
button.btn-secondary:hover {
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(61, 75, 126, 0.3);
}

.btn-secondary:hover::after,
a.btn-secondary:hover::after,
button.btn-secondary:hover::after {
  left: 0;
}

.btn-secondary:active,
button.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary:focus,
button.btn-secondary:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(61, 75, 126, 0.2), inset 0 0 0 2px var(--app-primary-color);
}

.btn-secondary:disabled,
button.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ========== BACK BUTTON / RETURN LINK ========== */
.btn-back,
a.btn-back,
button.btn-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(61, 75, 126, 0.1), rgba(90, 111, 168, 0.06));
  border: 2px solid rgba(61, 75, 126, 0.2);
  border-radius: 10px;
  color: var(--app-primary-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  box-shadow: 0 2px 8px rgba(61, 75, 126, 0.08);
  user-select: none;
  overflow: hidden;
}

.btn-back:hover,
a.btn-back:hover,
button.btn-back:hover {
  background: linear-gradient(135deg, rgba(61, 75, 126, 0.15), rgba(90, 111, 168, 0.1));
  border-color: rgba(61, 75, 126, 0.4);
  transform: translateX(-4px);
  box-shadow: 0 8px 20px rgba(61, 75, 126, 0.15);
}

.btn-back:active,
button.btn-back:active {
  transform: translateX(-2px) scale(0.98);
}

.btn-back:focus,
button.btn-back:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(61, 75, 126, 0.15), 0 8px 20px rgba(61, 75, 126, 0.15);
}

.btn-back .material-symbols-rounded {
  font-size: 1.25rem !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-back:hover .material-symbols-rounded {
  transform: translateX(-4px);
}

/* ========== TERTIARY BUTTON (Minimal) ========== */
.btn-tertiary,
a.btn-tertiary,
button.btn-tertiary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--app-primary-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  user-select: none;
}

.btn-tertiary:hover,
a.btn-tertiary:hover,
button.btn-tertiary:hover {
  background: rgba(61, 75, 126, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 75, 126, 0.1);
}

.btn-tertiary:active,
button.btn-tertiary:active {
  transform: translateY(0) scale(0.98);
}

.btn-tertiary:focus,
button.btn-tertiary:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(61, 75, 126, 0.15);
}

/* ========== DANGER BUTTON ========== */
.btn-danger,
a.btn-danger,
button.btn-danger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--error-color) 0%, #c41e3a 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  overflow: hidden;
  user-select: none;
}

.btn-danger:hover,
a.btn-danger:hover,
button.btn-danger:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.4);
}

.btn-danger:active,
button.btn-danger:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-danger:focus,
button.btn-danger:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2), 0 12px 28px rgba(220, 38, 38, 0.4);
}

.btn-danger:disabled,
button.btn-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ========== SIMPLE LINK ========== */
.btn-link,
a.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--app-primary-color);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  position: relative;
  user-select: none;
}

.btn-link::after,
a.btn-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--app-accent-color), var(--app-primary-light-color));
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-link:hover,
a.btn-link:hover {
  color: var(--app-accent-color);
  transform: translateX(2px);
}

.btn-link:hover::after,
a.btn-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-link:focus,
a.btn-link:focus {
  outline: 2px solid transparent;
  color: var(--app-primary-color);
}

/* ========== SIZE VARIANTS ========== */
.btn-sm,
button.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem !important;
}

.btn-lg,
button.btn-lg {
  padding: 1rem 2rem !important;
  font-size: 1.125rem !important;
}

/* ========== FULL WIDTH ========== */
.btn-full-width {
  width: 100%;
  box-sizing: border-box;
}

/* ========== BUTTON GROUP ========== */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-group.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.btn-group.center {
  justify-content: center;
}

.btn-group.right {
  justify-content: flex-end;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

  .btn-primary,
  a.btn-primary,
  button.btn-primary,
  .btn-secondary,
  a.btn-secondary,
  button.btn-secondary,
  .btn-back,
  a.btn-back,
  button.btn-back {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group>* {
    width: 100%;
  }

  .btn-group.right {
    justify-content: flex-start;
  }

  .btn-link {
    font-size: 0.95rem;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {

  .btn-primary,
  a.btn-primary,
  button.btn-primary,
  .btn-secondary,
  a.btn-secondary,
  button.btn-secondary,
  .btn-back,
  a.btn-back,
  button.btn-back,
  .btn-tertiary,
  a.btn-tertiary,
  button.btn-tertiary,
  .btn-danger,
  a.btn-danger,
  button.btn-danger,
  .btn-link,
  a.btn-link {
    transition: none;
  }

  .btn-primary::before,
  a.btn-primary::before,
  button.btn-primary::before {
    animation: none;
  }

  .btn-link::after,
  a.btn-link::after {
    transition: none;
  }
}

/* ========== PRINT STYLES ========== */
@media print {

  .btn-primary,
  a.btn-primary,
  button.btn-primary,
  .btn-secondary,
  a.btn-secondary,
  button.btn-secondary,
  .btn-back,
  a.btn-back,
  button.btn-back,
  .btn-tertiary,
  a.btn-tertiary,
  button.btn-tertiary,
  .btn-danger,
  a.btn-danger,
  button.btn-danger {
    box-shadow: none !important;
    transform: none !important;
  }
}@font-face {
  font-family: Material Symbols Rounded;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/material-symbols-rounded.woff2") format("woff2");
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

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

@keyframes menuItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

body {
  --toolbar-height: 64px;
  --menu-width: 320px;
  display: grid;
  grid-template: var(--toolbar-height) 1fr auto / 1fr;
  grid-template-areas: "head head"
                       "main main"
                       "footer footer";
}

body[menu] {
  grid-template-areas: "head head"
                       "menu menu"
                       "footer footer";
}

body[menu] main[data-astro-cid-drgz4ef6] {
  display: none;
}

body[menu] .drawer-content[data-astro-cid-drgz4ef6] {
  display: flex;
}

.toolbar[data-astro-cid-drgz4ef6] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  grid-area: head;
  display: flex;
  gap: 4px;
  padding: 0 8px;
  align-items: center;
  line-height: 100%;
  background: linear-gradient(135deg,
          var(--app-primary-color) 0%,
          #2a3652 100%);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 20px;
  z-index: 100;
  box-shadow: 0 4px 20px #00000026;
  animation: .4s cubic-bezier(.34, 1.56, .64, 1) slideInFromTop;

  & a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #ffffffe6;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 12px;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    overflow: hidden;
    flex-shrink: 0;

    &:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #ffffff1a;
      border-radius: 12px;
      transform: scale(0);
      transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    }

    &:hover {
      color: #fff;
      transform: translateY(-2px);
    }

    &:hover:before {
      transform: scale(1);
    }

    & div {
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .2px;
      position: relative;
      z-index: 1;
      display: none;
    }

    & span {
      position: relative;
      z-index: 1;
      font-size: 22px;
    }

    & img {
      width: 28px;
      height: 28px;
    }
  }
}

.drawer-content[data-astro-cid-drgz4ef6] {
  position: fixed;
  top: var(--toolbar-height);
  bottom: 0;
  display: none;
  grid-area: menu;
  flex-flow: column;
  justify-content: space-between;
  padding: 24px 0;
  width: var(--menu-width);
  box-sizing: border-box;
  background: linear-gradient(#fff 0%, #f8f9fa 100%);
  overflow: auto;
  box-shadow: 4px 0 20px #0000001a;
  animation: .4s cubic-bezier(.34, 1.56, .64, 1) slideInFromLeft;
  scrollbar-width: thin;
  scrollbar-color: #3d4b7e4d transparent;

  &::-webkit-scrollbar {
    width: 6px;
  }

  &::-webkit-scrollbar-track {
    background: none;
  }

  &::-webkit-scrollbar-thumb {
    background: #3d4b7e4d;
    border-radius: 3px;
  }

  &::-webkit-scrollbar-thumb:hover {
    background: #3d4b7e80;
  }

  & nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
  }

  & a {
    position: relative;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 32px 1fr;
    align-items: center;
    padding: 12px 16px;
    line-height: 1.5;
    text-decoration: none;
    color: var(--app-secondary-color);
    border-radius: 12px;
    text-align: left;
    font-weight: 500;
    letter-spacing: .3px;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    overflow: hidden;
    animation: .4s cubic-bezier(.34, 1.56, .64, 1) backwards menuItemFadeIn;

    &:first-child {
      animation-delay: 50ms;
    }

    &:nth-child(2) {
      animation-delay: .1s;
    }

    &:nth-child(3) {
      animation-delay: .15s;
    }

    &:nth-child(4) {
      animation-delay: .2s;
    }

    &:nth-child(5) {
      animation-delay: .25s;
    }

    &:nth-child(6) {
      animation-delay: .3s;
    }

    &:nth-child(7) {
      animation-delay: .35s;
    }

    &:nth-child(8) {
      animation-delay: .4s;
    }

    &:nth-child(9) {
      animation-delay: .45s;
    }

    &:nth-child(10) {
      animation-delay: .5s;
    }

    &:nth-child(11) {
      animation-delay: .55s;
    }

    &:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg,
              var(--app-accent-color),
              var(--app-primary-light-color));
      border-radius: 0 4px 4px 0;
      transform: scaleY(0);
      transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    }

    &:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #3d4b7e14, #5a6fa80f);
      border-radius: 12px;
      transform: scale(.95);
      opacity: 0;
      transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
      z-index: -1;
    }

    & img, & span {
      position: relative;
      z-index: 1;
      transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    }
  }

  & a[selected] {
    color: var(--app-primary-color);
    font-weight: 700;
    background: linear-gradient(135deg, #ff9f4326, #3d4b7e1a);
    box-shadow: 0 4px 12px #3d4b7e26;
    view-transition-name: menu-selected;

    &:before {
      transform: scaleY(1);
    }

    & img {
      filter: brightness(1.1) saturate(1.2);
    }
  }

  & a:hover {
    color: var(--app-primary-color);
    transform: translateX(4px);
    box-shadow: 0 6px 16px #3d4b7e1f;

    &:before {
      transform: scaleY(1);
    }

    &:after {
      opacity: 1;
      transform: scale(1);
    }

    & img, & span {
      transform: scale(1.05);
    }
  }

  & a:active {
    transform: translateX(2px) scale(.98);
  }

  & a:focus {
    outline: 2px solid #0000;
    box-shadow: 0 0 0 3px #3d4b7e33, 0 6px 16px #3d4b7e1f;
  }
}

.title[data-astro-cid-drgz4ef6] {
  flex: 1;
  text-align: center;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 8px #0000004d;
  font-weight: 700;
  font-size: 0;
  letter-spacing: .5px;
  position: relative;
  padding: 0;
  overflow: hidden;
  min-width: 0;

  & span {
    display: none;
    background: linear-gradient(90deg, #fffffff2, #ffffffd9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

main[data-astro-cid-drgz4ef6] {
  grid-area: main;
  width: 100%;
  overflow: hidden;
}

.footer[data-astro-cid-drgz4ef6] {
  grid-area: footer;
}

@media (width >= 641px) {
  body {
    grid-template: var(--toolbar-height) 1fr auto / var(--menu-width) 1fr;
    grid-template-areas: "head head"
                         "menu main"
                         "menu footer";
  }

  menu-button[data-astro-cid-drgz4ef6] {
    display: none;
  }

  .drawer-content[data-astro-cid-drgz4ef6] {
    display: flex;
    animation: none;
  }

  main[data-astro-cid-drgz4ef6] {
    padding: 1vw;
  }

  .toolbar[data-astro-cid-drgz4ef6] {
    gap: 12px;
    padding: 0 16px;

    & a {
      padding: 8px 12px;
      gap: 4px;

      & div {
        display: block;
        font-size: .7rem;
      }

      & span {
        font-size: inherit;
      }

      & img {
        width: 32px;
        height: 32px;
      }
    }
  }

  .title[data-astro-cid-drgz4ef6] {
    margin: 16px 0;
    padding: 0 1rem;
    font-size: clamp(.85rem, 2vw, 2rem);
    line-height: 1.3;
  }
}

@media (width >= 768px) {
  .title[data-astro-cid-drgz4ef6] {
    & span {
      display: block;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .toolbar[data-astro-cid-drgz4ef6], .drawer-content[data-astro-cid-drgz4ef6], .drawer-content[data-astro-cid-drgz4ef6] a[data-astro-cid-drgz4ef6] {
    animation: none !important;
  }

  .toolbar[data-astro-cid-drgz4ef6] a[data-astro-cid-drgz4ef6], .drawer-content[data-astro-cid-drgz4ef6] a[data-astro-cid-drgz4ef6] {
    transition: none !important;
  }
}

@media print {
  body {
    grid-template-areas: "main";
  }

  .toolbar[data-astro-cid-drgz4ef6], .drawer-content[data-astro-cid-drgz4ef6] {
    display: none;
  }
}
