.cardContent {
  background: #d8d8d8;
  width: 100%;
  height: 235px;
  margin: 0 0 25px 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center; /* Centrowanie w pionie */
  text-decoration: none;
}

/* OBSZARY GRID */
.div1 { 
  grid-area: 1 / 1 / 2 / 4; 
  display: flex;
  justify-content: center;
  min-width: 330px;
}
.div1 > img {
  width: 180px;
}


.div2 { 
  grid-area: 1 / 4 / 2 / 11; 
}

.div3 { 
  grid-area: 1 / 11 / 2 / 13; 
  display: flex;
  justify-content: center;
  font-size: 24px;
  min-width: 220px;
}
.div3 > img {
  height: 80px;
}

/* STYLIZACJA ELEMENTÓW */
.cardIcon {
  max-height: 80px;
  width: auto;
}

.cardTitle {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  text-transform: none;
}

.cardItem {
  text-decoration: none;
  display: block;
}

@media (min-width: 320px) and (max-width: 629px) {
  .cardContent {
    min-height: 180px;
    max-height: 200px;
    grid-template-columns: repeat(7, 1fr);
  }

  .div1 {
    display: none;
  }

  .div2 { 
    grid-area: 1 / 1 / 2 / 6; 
  }

  .div3 { 
    grid-area: 1 / 7 / 2 / 8; 
    min-width: 120px;
  }
  .div3 > img {
    height: 50px;
  }

  .cardTitle {
    margin: 0 0 0 25px;
    font-size: 40px;
  }
}
@media (min-width: 630px) and (max-width: 1024px) {}
