/* blogListingSec */
.blogListingSec .headingXL {
  text-align: center;
  margin-bottom: 64px;
  color: var(--neutral900);
}

.blogListingRow {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blogListingCol {
  width: calc(33.3333% - 16px);
}

.blogListingBox {
  height: 100%;
  background-color: var(--primaryBrand300);
  overflow: hidden;
  position: relative;
}

.blogListingBox .imgWrapper {
  width: 100%;
  position: relative;
  padding-top: 71%;
}

.blogListingBox .imgWrapper img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blogListingBox .contentBody {
  padding: 24px 24px 72px 24px;
}

.blogListingBox .contentBody .catTagDate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 6px;
  column-gap: 12px;
  margin-bottom: 20px;
}

.blogListingBox .contentBody .catTagDate .catTag {
  background-color: var(--secondaryBrand200);
  border-radius: 100px;
  color: var(--neutral900);
  font-weight: 500;
  padding: 4px 10px;
}

.blogListingBox .contentBody .catTagDate .date {
  color: var(--neutral700);
}

.blogListingBox .contentBody .headingS {
  margin-bottom: 16px;
  color: var(--neutral900);
}

.blogListingBox .contentBody .paragraphM {
  color: var(--neutral700);
}

.blogListingBox .buttonLink {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.blogListingSec .viewAllBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}

/* Responsive - 991px */
@media (max-width: 991px) {
  .blogListingCol {
    width: calc(50% - 12px);
  }
}

/* Responsive - 575px */
@media (max-width: 575px) {
  .blogListingCol {
    width:323px;
	margin-right:16px;
  }

  .blogListingSec .headingXL {
    margin-bottom: 32px;
  }

  .blogListingSec .viewAllBtn {
    margin-top: 32px;
  }

  .blogListingBox .contentBody {
    padding: 16px 16px 64px 16px;
  }

  .blogListingBox .buttonLink {
    bottom: 16px;
    left: 16px;
  }

  .blogListingRow {
    display: block;
    padding-bottom:56px;
	  margin:0px -18px;
	  padding-left:18px;
  }
	
	.blogListingRow .slick-track{
		display:flex;
	}
	.blogListingRow .blogListingCol{
		height:auto;
	}

  /* Slider arrows (used when blogListingRow becomes a slick slider on mobile) */
  .blogListingRow .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primaryBrand);
    transition: 0.4s;
    transform: unset;
    z-index: 4;
  }

  .blogListingRow .slick-arrow:hover {
    background-color: #8b6e421a;
  }

  .blogListingRow .slick-arrow::before {
    display: none;
  }

  .blogListingRow .slick-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .blogListingRow .slick-arrow.slick-prev::after {
    background-image: url(../images/sliderArrowLeft.png);
  }

  .blogListingRow .slick-arrow.slick-next::after {
    background-image: url(../images/sliderArrowRight.png);
  }

  .blogListingRow .slick-arrow.slick-prev {
    position: absolute;
    right: 70px;
    bottom: 0px;
    top: unset;
    left: unset;
  }

  .blogListingRow .slick-arrow.slick-next {
    position: absolute;
    right: 18px;
    bottom: 0px;
    top: unset;
    left: unset;
  }

  /* Temp font size */
  .blogListingSec .headingXL {
    font-size: 36px;
    line-height: 46px;
  }
}
