/*--------------------------------------

variables

--------------------------------------*/
.reportWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-bottom: 50px;
}

.reportItem a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.reportItem a:hover {
  opacity: 0.7;
}

.reportPhoto {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url("../images/load.gif") center 45% no-repeat;
  padding-top: 65%;
  z-index: 1;
  margin-bottom: 5px;
}
.reportPhoto img {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reportCaption {
  text-align: center;
  font-size: 1.5rem;
}

.reportIndexBtn {
  display: block;
  width: 100%;
  padding: 20px 15px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background: rgb(72, 167, 106);
  transition: 0.3s;
  border-radius: 5px;
}
.reportIndexBtn:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  .reportWrap {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
  }
  .reportIndexBtn {
    width: 300px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=report_common.css.map*/