
/* PHOTOTHEQUE - MOBILE */
@media screen and (max-width: 767px) {
  .phototheque-shell {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    padding: 16px 12px 20px;
    gap: 16px;
  }

  .phototheque-header {
    padding-right: 48px;
  }

  .phototheque-header h2 {
    font-size: 1.6rem;
  }

  .phototheque-selector-form,
  .phototheque-form {
    gap: 14px;
  }

  .phototheque-selector-form select,
  .phototheque-form input {
    padding: 16px;
    font-size: 1.05rem;
  }

  .phototheque-panel {
    padding: 20px 16px;
  }

  .phototheque-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .phototheque-thumb img {
    height: 140px;
  }

  .phototheque-viewer-inner {
    padding: 60px 12px 24px;
  }

  .phototheque-nav {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .phototheque-nav.prev {
    left: 8px;
  }

  .phototheque-nav.next {
    right: 8px;
  }
}
