.blog-card {
  display: flex;
  flex-direction: column;

  position: relative;

  padding-bottom: 48px;
  border-bottom: 1px solid #BABACE;
}

.blog-card-cover {
  width: 100%;
  height: 164px;
}

.blog-card-tag {

  
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;

  border-radius: 0px 600px 600px 0px;
  background: #94E5FF;

  color: var(--blue-600);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;

  position: absolute;
  top: 17px;
  left: 0;

  a {
    text-decoration: none;
    color: var(--blue-600);
  }
}

.blog-card-title {
  color: var(--blue-600);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
text-decoration: none;
  margin-top: 32px;
  min-height: 79px;
}
.blog-card-title:hover {
  text-decoration: underline;
}

.blog-card-text-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;

  .icon {
    width: 24px;
    height: 24px;
  }

}

.blog-card-text-separator {
  width: 1px;
  height: 13px;
  background: #33A3FF;

  margin: 0 12px;
}

.blog-card-text {
  color: var(--blue-500);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 23px;
  border-radius: 16px;
  border: 1px solid var(--blue-100);
}

.product-card-image {
  width: 100%;
  max-height: 213px;

  border-radius: 16px;

  object-fit: cover;
}

.product-card-title {
  color: #2D2869;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
}

.product-card-text {
  color: var(--blue-300);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;

  margin-top: -15px;
}

.product-card-see-more-wrapper {
  flex: 1;

  display: flex;
  align-items: flex-end;

  a:hover {
    color: #33A3FF;
  }
}

.product-card-see-more {
  color: #33A3FF;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  cursor: pointer;
}