.tml-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;

    height: auto;
    min-height: 0;

    margin: 0;
    padding: 0;

    background: #fff;

    border: 1px solid #edf0f3;
    border-radius: 14px;

    overflow: hidden;

    box-sizing: border-box;
}

.tml-card-image,
.tml-card-no-image {
    display: block;

    width: 100%;
    height: 145px;

    overflow: hidden;

    background: #f3f4f6;

    flex-shrink: 0;
}

.tml-card-image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover;
}

.tml-card-body {
    display: flex;
    flex-direction: column;

    width: 100%;

    padding: 16px;

    box-sizing: border-box;
}

.tml-badge {
    display: inline-flex;

    align-self: flex-start;

    width: fit-content;

    margin-bottom: 10px;
    padding: 5px 10px;

    border-radius: 50px;

    background: #ff5a16;

    color: #fff !important;

    font-size: 9px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    text-decoration: none !important;
}

.tml-card-title {
    margin: 0 0 9px !important;

    font-size: 17px !important;
    line-height: 1.35 !important;

    font-weight: 700 !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;

    overflow: hidden !important;
}

.tml-card-title a {
    color: #13294b !important;
    text-decoration: none !important;
}

.tml-card-excerpt {
    margin: 0 !important;

    color: #667085 !important;

    font-size: 12px !important;
    line-height: 1.6 !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;

    overflow: hidden !important;
}

.tml-card-meta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-top: 15px;
    padding-top: 12px;

    color: #98a2b3 !important;

    font-size: 10px !important;
}

.tml-card-date,
.tml-card-read {
    white-space: nowrap;
}

.tml-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}


/* MOBILE */

@media (max-width: 650px) {

    .tml-card-image,
    .tml-card-no-image {
        height: 180px;
    }

}