/* ---------- Card shell ---------- */
.integration-card {
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    /* keeps every card in a row the same height */
}

/* ---------- Top row: icon on the left, link on the right ---------- */
.integration-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

/* ---------- Coloured icon tile ---------- */
.integration-icon {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-icon img {
    height: 44px;
    width: auto;
    border-radius: 10px !important;
}

/* the SVG inside the tile */
.integration-icon svg {
    width: 20px;
    height: 20px;
}

/* ---------- "Learn more" link ---------- */
.integration-link {
    color: #808080;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.integration-link svg {
    width: 13px;
    height: 13px;
}

.integration-link:hover {
    color: #65CA7B;
}

/* ---------- Text block ---------- */
.integration-title {
    color: #1B1C1F;
    text-transform: unset;
    font-size: 18px;
    margin: 60px 0 6px;
    font-weight: 600;
}

.integration-text {
    font-size: 16px;
    font-weight: 400;
    color: #9D9D9D;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- "View" button ---------- */
.view-link {
    color: #65ca7b;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 8px;
    background: #65ca7b1a;
    transition: background .15s ease, color .15s ease;
}

.view-link svg {
    width: 14px;
    height: 14px;
}

.view-link:hover {
    color: #fff;
    background: #65ca7b;
}

/* modifier: no pill background, just the blue text + arrow */
.view-link-plain {
    background: transparent;
    padding: 0;
}

.view-link-plain:hover {
    background: transparent;
}

@media (max-width: 1199.98px) {
    section.pricing_main_sec .integration-title {
        font-size: 18px !important;
    }
}