/**
 * ==========================================
 * TelecomRoute Card Components
 * ==========================================
 */

.tr-card {

    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;

    height: 100%;

    background: var(--tr-white);

    border: 1px solid var(--tr-border);

    border-radius: var(--tr-radius-md);

    box-shadow: var(--tr-shadow);

    transition: all var(--tr-transition);

    overflow: hidden;

}


/* ==========================================
   Card Hover
========================================== */

.tr-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--tr-shadow-lg);

}


/* ==========================================
   Card Body
========================================== */

.tr-card-body {

    display: flex;

    flex-direction: column;

    flex: 1;

    width: 100%;

    padding: 30px;

}


/* ==========================================
   Card Icon
========================================== */

.tr-card-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 56px;

    height: 56px;

    margin-bottom: 20px;

    border-radius: var(--tr-radius-sm);

    background: rgba(10, 46, 115, .08);

}


/* ==========================================
   Card Icon Image
========================================== */

.tr-card-icon img {

    display: block;

    width: 28px;

    height: 28px;

}


/* ==========================================
   Card Title
========================================== */

.tr-card-title {

    margin: 0;

    color: var(--tr-text);

    font-size: 22px;

    font-weight: 700;

    line-height: 1.35;

}


/* ==========================================
   Card Text
========================================== */

.tr-card-text {

    margin-top: 12px;

    margin-bottom: 0;

    color: var(--tr-muted);

    line-height: 1.8;

}


/* ==========================================
   Card Button
========================================== */

.tr-card .tr-btn {

    margin-top: auto;

}


/* ==========================================
   Responsive
========================================== */

@media (max-width: 767px) {

    .tr-card-body {

        padding: 28px;

    }

    .tr-card-title {

        font-size: 20px;

    }

}