/* Logo */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  width: 24px;
  height: 24px;
  display: block;
}
.md-header__button.md-logo,
.md-nav__button.md-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
}


/* Full-width content */
.md-grid {
  max-width: 100%;
}
.md-content {
  max-width: 100%;
}
.md-content__inner {
  max-width: 100%;
  padding: 0 2px;
}

/* Images: clickable cursor */
.md-content img {
  cursor: zoom-in;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: box-shadow .2s;
}
.md-content img:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
}

/* Lightbox overlay */
#__lightbox__ {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#__lightbox__.open {
  display: flex;
}
#__lightbox__ img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  cursor: zoom-out;
  user-select: none;
}
#__lightbox__close {
  position: fixed;
  top: 16px;
  right: 22px;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  user-select: none;
}
#__lightbox__close:hover { opacity: 1; }
