.product-dyna {
  padding-bottom: 1rem;
  padding-top: 3rem;
}

.product-card {
  background: #fff;
  border-radius: 24px;
  /* overflow: hidden; */
  height: 100%;
  transition: .3s;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.product-image {
  text-align: center;
  height: 230px;
  background-color: #F6F7F6;
}

.product-image img {
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 20px;
  text-align: start;
  flex: 1 0 auto;
}
.product-content a{
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}
.product-content a > .product-btn{
  margin-top: auto;
}
.product-content h4 {
  color: var(--bs-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--bs-primary);
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.product-btn:hover {
  background: var(--bs-primary);
  color: #fff;
}