/* LTE compatibility for the legacy Feed component used on /activity. */

/* Some migrated avatars are returned in their original size, even for the micro preset. */
.activity-list .item > .icon {
    box-sizing: border-box;
    width: 38px;
    height: 38px;
}

.activity-list .item > .icon > a {
    display: block;
    width: 32px;
    height: 32px;
    overflow: hidden;
}

.activity-list .item > .icon > a > img {
    display: block;
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    object-fit: cover;
}

/* Keep user supplied media inside the activity card at every LTE breakpoint. */
.activity-list .item .is_feed_content,
.activity-list .item .feed_imgs_print,
.activity-list .item .feed_videos_print,
.activity-list .item .images {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

.activity-list .item .is_feed_content img,
.activity-list .item .feed_imgs_print img,
.activity-list .item .images img,
.activity-list .item .is_feed_content video,
.activity-list .item .is_feed_content iframe {
    max-width: 100% !important;
}

.activity-list .item .is_feed_content {
    overflow-wrap: anywhere;
}
