/* Stałe rozmiary miniaturek */
.text-wrapper .left-col .colhoto {
  width: calc(50% - 10px);
  margin: 5px;
  float: left;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.text-wrapper .left-col .colhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-wrapper .left-col .colhoto a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.text-wrapper .left-col .colhoto a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-wrapper .left-col .colhoto a:hover span {
  opacity: 1;
}

.text-wrapper .left-col .colhoto a span i {
  color: white;
  font-size: 24px;
}

@media only screen and (max-width: 480px) {
  .text-wrapper .left-col .colhoto {
    width: calc(100% - 10px);
  }
} 