.footer.center {
  text-align: center;
}

.top-wcag {
  display: flex;
  gap: 12px;
  padding-left: 12px;
}

/* BENTO */
.colage-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
  grid-auto-flow: dense;
}
.colage-box-wrapper a.colage-box:hover,
.colage-box-wrapper .colage-box:hover {
  flex: 1.5;
  cursor: pointer;
}
.colage-box-wrapper .colage-box:hover .content h4 {
  font-size: 18px;
}
.colage-box-wrapper .colage-box:hover .content .controls {
  opacity: 1;
  height: 50px;
}
.colage-box-wrapper .colage-box .hover-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.5s ease;
}
.colage-box-wrapper .hero {
  grid-column: span 2;
  grid-row: span 2;
}
.colage-box-wrapper .tall,
.colage-box-wrapper .tall2 {
  grid-row: span 2;
}

.colage-box {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  transition: all 0.5s ease;
}
.colage-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: 0.3s;
}
.colage-box:hover::after {
  opacity: 1;
}
.colage-box:hover .image {
  transform: scale(1.08);
}
.colage-box:hover .controls {
  opacity: 1;
  transform: translateY(0);
}
.colage-box .image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}
.colage-box .content {
  padding: 20px 25px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(0deg, #1c2532 0%, rgba(28, 37, 50, 0) 100%);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
  transition: 0.3s;
}
.colage-box .content h4 {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
  white-space: normal;
  overflow: hidden;
  transition: font-size 0.5s ease;
}
.colage-box .controls {
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 0;
  text-align: center;
}
.colage-box .controls .button {
  font-size: 16px;
  padding: 0;
  color: #fff;
  transition: font-size 0.5s ease;
}/*# sourceMappingURL=praktyki.css.map */