/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/custom-cards/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
.custom-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 1fr));
  gap: 25px;
  margin: 0 auto;
}
@media screen and (max-width: 1350px) {
  .custom-cards__grid {
    grid-template-columns: repeat(3, minmax(270px, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 888px) {
  .custom-cards__grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}
@media screen and (max-width: 800px) {
  .custom-cards__grid {
    grid-template-columns: repeat(2, minmax(270px, 1fr));
  }
}
@media screen and (max-width: 620px) {
  .custom-cards__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.custom-cards__grid .custom-cards__card {
  box-shadow: 0px 4px 30px 0px rgba(203, 219, 226, 0.3019607843);
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #E2EAEE;
  border-radius: 16px;
}
.custom-cards__grid .custom-cards__card:hover {
  background-color: #009FE3;
}
.custom-cards__grid .custom-cards__card:hover .custom-cards__read-more {
  color: #fff !important;
}
@media screen and (max-width: 620px) {
  .custom-cards__grid .custom-cards__card {
    max-width: 420px;
  }
}
.custom-cards__grid .custom-cards__card .card-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 15px;
}
.custom-cards__grid .custom-cards__card .card-header .image-wrap {
  border-radius: 16px;
  width: 100px;
  overflow: hidden;
}
.custom-cards__grid .custom-cards__card .card-header .image-wrap .card-image {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-cards__grid .custom-cards__card .card-header .author-wrap .card-author {
  font: 700 16px/32px "Urbanist", sans-serif;
  color: black;
  text-transform: uppercase;
  margin-bottom: 0;
}
.custom-cards__grid .custom-cards__card .card-header .author-wrap .card-company {
  font: 700 16px/32px "Urbanist", sans-serif;
  color: #7F8388;
  text-transform: uppercase;
}
.custom-cards__grid .custom-cards__card .custom-cards__content {
  font: 600 16px/28px "Urbanist", sans-serif;
  color: #2C3239;
}
.custom-cards__grid .custom-cards__card .custom-cards__read-more {
  font: 700 16px/32px "Urbanist", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #009FE3;
}
.custom-cards__grid .custom-cards__card:hover .card-header .custom-cards__read-more {
  color: #fff !important;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style-index.css.map*/