.featured-products-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

/* .featured-products-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
} */

.static-content  {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 640px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    place-content: center;
}

.static-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 64px;
}

.product-box {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #ddd;
    width: 100%;
    background-size: cover;
    background-position: center;
    max-width: 640px;
    min-height: 500px;
    box-sizing: border-box;
}

.product-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.product-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000059;
    z-index: 1;
}

.product-box:hover .product-bg {
    transform: scale(1.1);
}
/* .product-content {
        position: absolute;
        bottom: 3%;
        left: 0;
    width: 95%;
    height: 35%; /* ~175px based on 500px min-height
    background-color: #057a9980;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    padding-left: 1rem;
  } */
.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    justify-self: anchor-center;
    width: -webkit-fill-available;
    width: -webkit-fill-available; 
    width: -moz-available;         
    width: fill-available;   
    height: 206px;
    /* bottom: 3%; */
    background-color: #057a9980;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    z-index: 2;
    margin: 1em;
}

.cta-box {
    flex-basis: 140px;
    min-width: 130px;
    flex-shrink: 1 !important;
    height: 100%;
    background-color: #61aed3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
  }

/* .cta-box {
    width: 140px;
    height: 207px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #61aed3;
    position: relative;
    text-align: center;
    white-space-collapse: break-spaces;
    transition: background-color 0.3s ease;
} */

.cta-box:hover {
    background-color: #62AC45;
}

.cta-box img {
    width: 24px;
    height: 24px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* max-width: calc(100% - 140px); */
    flex-basis: 100%;
    padding: var(--wp--preset--spacing--md);;
}

.product-info h6 {
    font-size: var(--wp--preset--font-size--text-xl) !important;
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #FFFFFF;
}

/* .product-info h6 {
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #FFFFFF;
} */
  
.static-content p.featured-sub-header {
    color: #007da6;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}
  
.static-content h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}
  
.static-content a.btn {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #007da6;
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.125rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    width: fit-content;
    transition: 
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        opacity 0.3s ease-in-out,
        padding 0.3s ease-in-out,
        font-size 0.3s ease-in-out;
    opacity: 1;
}

.static-content a.btn:hover {
    background-color: #62AC45;
    color: #fff;
    opacity: 0.8;
}
  
.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-content h4 {
    margin: 0 0 0.5rem;
}
  
.product-content p {
    margin: 0;
}
  
.cta-link {
    display: inline-block;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.featured-sub-header,
.featured-prod-sub-heading,
.featured-prod-description {
    margin: 0;
}

.featured-prod-sub-heading {
    font-weight: 500;
    font-style: normal;
}

.featured-prod-description {
    color: #63646a;
}

.cta-box a {
    /* position: absolute; */
    /* position: absolute; */
    align-content: center;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;.element {
        align-content: center;
        background-color: rgba(255, 255, 255, 0.5); /* 50% opacity white */
        color: #057A99; /* Text or primary color */
    }
    
}

.product-info .product-info-heading,
.product-info .product-info-paragraph {
	display: -webkit-box;
	-webkit-line-clamp: 4;
    line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
    .featured-products-block {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .product-box {
        width: auto;
    }
}