/* Target Tablet and Desktop only */
@media (min-width: 768px) {
    .row.justify-content-center {
        display: flex;
        flex-wrap: wrap;
    }

    /* Force the columns to behave as flex containers */
    .row.justify-content-center > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }

    /* Force the inner card to stretch to 100% of the column height */
    .custom-card-height {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
    }
    
    /* Optional: Ensure the list/text inside stays aligned if one card has less text */
    .custom-card-height > div {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}

/* Mobile: Reset to default auto height */
@media (max-width: 767px) {
    .custom-card-height {
        height: auto !important;
        min-height: unset !important;
    }
}

@media (min-width: 992px) {
    .col-lg-custom {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Card Styling */
.contact-card {
    background: #fff;
    border-radius: 15px; /* Rounded corners for the whole card */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Pink Region Label */
.u-label {
    background-color: #e6007e; /* my.t brand pink */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Badge Icon (Pin) */
.u-label::before {
    content: '\f3c5'; /* FontAwesome Map Marker */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
}

/* Image styling */
.contact-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
    aspect-ratio: 1 / 1; /*