﻿table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: .5rem !important;
    text-align: left;
    vertical-align: top !important;
    border: 1px solid #ddd;
    line-height: 1.5rem
}
/* CARD */
.probe-card {
    text-align: left; /* important */
    margin-bottom: 70px;
}

    /* HEADING (top title) */
    .probe-card h6 {
        color: #111;
        margin-bottom: 20px;
        min-height: 48px; /* keeps alignment equal */
    }

    /* IMAGE */
    .probe-card img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        margin-bottom: 25px;
    }

/* DIVIDER LINE (thin black line like image) */
.probe-divider {
    width: 20%;
    height: 1px;
    background: #000;
    margin: 10px 0 10px;
}

/* LINK STYLE */
.probe-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #6ba17c;
    text-decoration: none;
}

    /* BLUE CIRCLE ARROW */
    .probe-card a i.fa-chevron-right {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #6ba17c;
        color: #fff;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* HOVER EFFECT */
    .probe-card a:hover {
        color: #1c5ea8;
    }

        .probe-card a:hover i.fa-chevron-right {
            background: #1c5ea8;
        }

/* RESPONSIVE */
@media (max-width: 767px) {
    .probe-card img {
        height: 180px;
    }

    .probe-card h6 {
        min-height: auto;
    }
}
