.tdb-related-wrap {
    margin: 28px 0;
    max-width: 100%;
}

.tdb-related-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 10px;
    color: #151922;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.tdb-related-kicker__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e50923;
    border-radius: 999px;
    color: #e50923;
    font-size: 17px;
    line-height: 1;
    flex: 0 0 28px;
}

.tdb-related-card {
    display: grid;
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    border: 2px solid #ed1b2f;
    border-radius: 16px;
    padding: 12px;
    background: #fff;
    color: inherit;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(229, 9, 35, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tdb-related-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(229, 9, 35, .14);
    border-color: #d8001b;
}

.tdb-related-card__media {
    min-height: 118px;
    border-radius: 11px;
    overflow: hidden;
    background: #f5f5f7;
}

.tdb-related-card__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 118px;
    object-fit: cover;
}

.tdb-related-card__placeholder {
    width: 100%;
    min-height: 118px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #ff334b, #d9001b);
}

.tdb-related-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3px 4px 3px 0;
}

.tdb-related-card__title {
    margin: 0;
    color: #101523;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tdb-related-card__excerpt {
    margin: 7px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tdb-related-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    color: #7b8290;
    font-size: 13px;
}

.tdb-related-card__cta {
    margin-left: auto;
    color: #e50923;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .tdb-related-wrap {
        margin: 22px 0;
    }

    .tdb-related-kicker {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .tdb-related-card {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 12px;
        padding: 9px;
        border-radius: 14px;
    }

    .tdb-related-card__media,
    .tdb-related-card__img,
    .tdb-related-card__placeholder {
        min-height: 98px;
    }

    .tdb-related-card__title {
        font-size: 15px;
        line-height: 1.28;
        -webkit-line-clamp: 3;
    }

    .tdb-related-card__excerpt {
        display: none;
    }

    .tdb-related-card__meta {
        margin-top: 7px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .tdb-related-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .tdb-related-card__title {
        font-size: 14px;
    }
}
