
.microscope-thumb-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.microscope-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 36px;
  height: 36px;

  border-radius: 6px;

  background: #111;

  border: 4px solid #fff;

  transition: all 0.2s ease;

  box-shadow: 0 0 12px rgba(0,0,0,0.6);

}


.microscope-play::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);

  width: 0;
  height: 0;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid white;
}

.microscope-thumb-wrap:hover .microscope-play {
  background: rgba(255,255,255,0.95);
  border-color: rgba(0,0,0,0.95);
}

.microscope-thumb-wrap:hover .microscope-play::before {
  border-left-color: black;
}

.microscope-caption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
}

.microscope-caption small {
  font-size: 0.82rem;
  opacity: 0.8;
  line-height: 1.35;
  max-width: 95%;
}

.microscope-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 0.3rem;
}

.microscope-links a {
  padding: 0.25rem 0.55rem;
  border-radius: 5px;
  background: var(--gallery-button-bg, #ddd);
  color: var(--gallery-button-color, #333);
  text-decoration: none;
  font-size: 0.82rem;
}

.microscope-links a:hover {
  background: var(--gallery-button-active-bg, #333);
  color: var(--gallery-button-active-color, #fff);
}

@media (max-width: 900px) {
   body.section-microscope .category-nav {
    display: none;
  }
}

.image-gallery li .microscope-play {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  background: #000;
  background-color: #000;
  border: 4px solid #fff;
  box-shadow: 0 0 14px rgba(0,0,0,0.65);
  backdrop-filter: none;
}

.image-gallery li .microscope-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

.image-gallery li .microscope-thumb-wrap:hover .microscope-play {
  background: #fff;
  background-color: #fff;
  border-color: #000;
}

.image-gallery li .microscope-thumb-wrap:hover .microscope-play::before {
  border-left-color: #000;
}

.microscope-wrapper .image-gallery li {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}

/* Планшет */

@media (max-width: 1000px) {
  .microscope-wrapper .image-gallery li {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* Телефон */

@media (max-width: 700px) {
  .microscope-wrapper .image-gallery li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
