/* Khối thông tin tác giả trên trang chi tiết bài viết */
.dt-article-author {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    margin: 20px 0 23px !important;
    padding: 11px 15px 11px 11px !important;
    overflow: hidden;
    border: 1px solid #dcecf4 !important;
    border-radius: 18px;
    background: linear-gradient(105deg, #f4fbff 0%, #eef7ff 72%);
}

    .dt-article-author::after {
        position: absolute;
        right: -18px;
        bottom: -35px;
        width: 90px;
        height: 90px;
        content: "";
        border: 15px solid rgba(255, 193, 91, .16);
        border-radius: 50%;
        pointer-events: none;
    }

    .dt-article-author .author-img {
        position: relative;
        z-index: 1;
        display: grid;
        place-items: center;
        width: 46px !important;
        height: 46px !important;
        flex: 0 0 46px;
        border: 4px solid #fff;
        border-radius: 15px !important;
        background: linear-gradient(145deg, #ffe08a, #ffb45e) !important;
        box-shadow: 0 5px 12px rgba(246, 169, 74, .22);
    }

        .dt-article-author .author-img::after {
            position: absolute;
            right: -5px;
            bottom: -4px;
            width: 13px;
            height: 13px;
            content: "\f00c";
            color: #fff;
            font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
            font-size: 7px;
            font-weight: 900;
            line-height: 13px;
            text-align: center;
            border: 2px solid #fff;
            border-radius: 50%;
            background: #22ad91;
        }

        .dt-article-author .author-img img {
            width: 33px !important;
            height: 33px !important;
            object-fit: contain;
            border-radius: 50px;
        }

    .dt-article-author .author-content {
        position: relative;
        z-index: 1;
        display: grid;
        gap: 6px;
        min-width: 0;
        padding-left: 0 !important;
    }

        .dt-article-author .author-content h3,
        .dt-article-author .author-content .author-time {
            display: flex;
            align-items: center;
            min-width: 0;
            margin: 0 !important;
            line-height: 1.35;
        }

        .dt-article-author .author-content h3 {
            gap: 7px;
            color: #1e4770 !important;
            font-family: 'Inter_24pt-SemiBold' !important;
            font-size: 13px !important;
        }

            .dt-article-author .author-content h3 > i {
                width: 17px;
                color: #e78b4f;
                font-size: 13px;
                text-align: center;
            }

        .dt-article-author .author-content strong {
            overflow: hidden;
            color: #0d8494;
            font-family: 'Montserrat-Bold';
            font-weight: 700;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .dt-article-author .author-content .author-time {
            gap: 7px;
            color: #7993a3;
            font-family: 'Inter_24pt-Regular';
            font-size: 13px;
        }

            .dt-article-author .author-content .author-time > i {
                width: 17px;
                color: #4db3b0;
                font-size: 12px;
                text-align: center;
            }

    .dt-article-author .author-label {
        white-space: nowrap;
    }

    .dt-article-author time {
        color: #557587;
        white-space: nowrap;
    }

@media (max-width: 739px) {
    .dt-article-author {
        gap: 11px;
        min-height: 58px;
        margin: 15px 0 19px !important;
        padding: 9px 11px 9px 9px !important;
        border-radius: 15px;
    }

        .dt-article-author .author-img {
            width: 40px !important;
            height: 40px !important;
            flex-basis: 40px;
            border-radius: 12px !important;
        }

            .dt-article-author .author-img img {
                width: 24px !important;
                height: 24px !important;
            }

        .dt-article-author .author-content {
            gap: 5px;
        }

            .dt-article-author .author-content h3 {
                gap: 5px;
                font-size: 12px !important;
            }

            .dt-article-author .author-content .author-time {
                gap: 5px;
                font-size: 10px;
            }

                .dt-article-author .author-content h3 > i,
                .dt-article-author .author-content .author-time > i {
                    width: 14px;
                    font-size: 11px;
                }
}