.custom-post-type-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.custom-post-type-item {
    /* border: 1px solid #ccc; */
    /* border-radius: 8px; */
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    /* padding: 0px 0px 20px 0px; */
    margin-bottom: 50px;
}

.custom-post-type-item .featured-image {
    margin-bottom: 50px;
}

.custom-post-type-item .featured-image img {
    display: block;
    border: 10px solid white;
    border-radius: 30px;
    margin: auto;
    width: calc(100% - 60px);
    box-shadow: 0px 0px 0px 30px #ebebeb;
}

.custom-post-type-item .service-title {
    font-family: 'Belleza', Helvetica, Arial, Lucida, sans-serif;
    font-size: 25px;
    line-height: 1.4em;
    margin-top: 0;
    padding: 0px 20px;
}

.custom-post-type-item .service-price {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    padding: 0px 20px;
    text-transform: uppercase;
}

.custom-post-type-item .service-price span {
    color: #f00; /* Example color */
}

.custom-post-type-item .service-excerpt {
    font-family: Montserrat, Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 0px 20px;
}

.custom-post-type-item .view-service-button {
    display: inline-block;
    background-color: transparent;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    margin-left: 20px;
/*    background: linear-gradient(to bottom right, #a82b22, #ff0000, #000000);*/
    border-radius: 50px;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: uppercase;
/*    font-weight: 800;*/
    font-size: 14px;
    border: 1px solid #000;
}

.custom-post-type-item .view-service-button:hover {
    background-color: #000;
    color: #fff;
/*    background: linear-gradient(to top left, #a82b22, #ff0000, #000000);*/
}

