.acpb-three-column-image-element .tci-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 888px) {
    .acpb-three-column-image-element .tci-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.acpb-three-column-image-element .tci-card {
    color: black;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.acpb-three-column-image-element .tci-card:hover {
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
}

.acpb-three-column-image-element .tci-card-image {
    margin: 0;
    height: 25rem;
    overflow: hidden;
    flex-shrink: 0;
}

.acpb-three-column-image-element .tci-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.acpb-three-column-image-element .tci-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.acpb-three-column-image-element .tci-text {
    padding: 20px;
}

.acpb-three-column-image-element .tci-text h4 {
    font-size: 24px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin: 0 0 6px;
    padding-bottom: 6px;
    line-height: 38px;
}

.acpb-three-column-image-element .tci-text p {
    margin: 10px 0 0;
}

.acpb-three-column-image-element .tci-button-wrap {
    padding: 0 20px 20px;
}

.acpb-three-column-image-element .tci-button-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: black;
}

.acpb-three-column-image-element .tci-button-row p {
    color: black;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    margin: 0 !important;
}

.acpb-three-column-image-element .tci-button-row img {
    border-radius: 0 !important;
    height: 2rem;
    width: 2rem;
}
