section .imagegrid img {
  width: 100%;
  display: block;
  min-height: 100%;
  object-fit: cover;
}
section .imagegrid {
  display: grid;
  grid-template-columns: 25% 15% 30% 25%;
  gap: 20px;
  place-content: center;
  grid-template-rows: 60% 40%;
  min-height: 60vh;
  /*min-height: 360px;*/
  /*padding: max(2vh, 1.5rem);*/
  padding: 0px;
}
section .card {
  /*box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.26);*/
  filter:grayscale(1);
  border-radius: 0px !important;
  border: none !important;

}
section .card:hover {
  transition: 0.5s ease;
  filter:grayscale(0);
}
section .card:nth-child(1) {
  grid-column: 1;
  grid-row: span 2;
}
section000 .card:nth-child(2) {
  grid-column: 2/3;
  grid-row: span 2;
}
section .card:nth-child(5) {
  grid-column: span 2;
}
section .card:nth-child(4) {
  grid-row: span 2;
}

@media screen and (max-width: 470px) {
  section .card {
    grid-column: span 1;
  }
}

@media screen and (max-width: 690px) {
section .imagegrid {
  grid-template-columns: 50% 50%;
  grid-template-rows: 34% 33% 33%;
  gap: 20px;
  height: 100vh;
}
section .card:nth-child(1) {
  grid-column: 1;
  grid-row: span 1;
}
section .card:nth-child(4) {
  grid-row: span 1;
}

}


section .card p {
  /*font-size: clamp(0.9rem, 0.8750rem + 0.1250vw, 1rem);*/
  line-height: 1.4;
}
section .card img {
  border-radius: 0px;
}
section .card .card__img {
  position: relative;
  height: 100%;
}
section .card .card__img .card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  color: #fff;
  /*padding: clamp(0.938rem,5vw,1.563rem);
  background: #02022e;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.57) 0%, rgba(255, 255, 255, 0) 100%);*/
  width: 100%;
  height: 100%;
  border-radius: 0px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  border: 0px;
}
section .card .card__img span {
  position: absolute;
  top: 25px;
  left: min(2vmax, 1.563rem);
  color: #ff7b29;
  background: #fff;
  /*border-radius: 50px;*/
  padding: 2px 8px 2px 6px;
  display: flex;
  /*box-shadow: 0px 1px 20px #0000002b;*/
}
