.headerCardContent {
  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;
  text-decoration: none;
}

.headerCardDiv1 { 
  grid-area: 1 / 1 / 2 / 4; 
  display: flex;
  justify-content: center;
}

.headerCardDiv1 > img {
  height: 180px;
}

.headerCardDiv2 { 
  grid-area: 1 / 4 / 2 / 11; 
}

.headerCardTitle {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  text-transform: none;
}


.cardContent {
  background: #d8d8d8;
  width: 100%;
  min-height: 110px;
  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; 
  text-decoration: none;
}

/* OBSZARY GRID */
.div1 { 
  grid-area: 1 / 1 / 2 / 12; 
  display: flex;
  font-size: 24px;
}

.div2 { 
  grid-area: 1 / 12 / 2 / 13; 
  display: flex;
  justify-content: center;
  font-size: 24px;
  min-width: 150px;
}
.div2 > img {
  height: 50px;
}


/* STYLIZACJA ELEMENTÓW */
.cardIcon {
  max-height: 80px;
  width: auto;
}

.cardTitle {
  margin: 25px 40px;
  font-size: 50px;
  font-weight: 700;
  text-transform: none;
}

.cardItem {
  text-decoration: none;
  display: block;
}

@media (min-width: 320px) and (max-width: 629px) {
  .headerCardContent {
    min-height: 180px;
    max-height: 200px;
    grid-template-columns: repeat(7, 1fr);
  }

  .headerCardDiv1 {
    display: none;
  }

  .headerCardDiv2 { 
    grid-area: 1 / 1 / 2 / 13; 
  }

  .headerCardTitle {
    margin: 0 0 0 25px;
    font-size: 45px;
  }

  .cardTitle {
    margin: 20px 30px;
    font-size: 35px;
  }

  .div2 { 
    min-width: 90px;
  }
  .div2 > img {
    height: 40px;
  }

}
@media (min-width: 630px) and (max-width: 1024px) {}
