.article-publisher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;

    width: 100%;
    margin: 0 0 30px;
    padding: 20px 28px;

    background: #ffffff;
    border-top: 1px solid #e4ebf1;
    border-bottom: 1px solid #e4ebf1;

    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.article-publisher-profile {
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
}

.article-publisher-avatar {
    display: grid;
    place-items: center;

    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    border-radius: 50%;
    background: linear-gradient(145deg, #0d4775, #155b91);
    color: #ffffff;

    font-family: "Fraunces", Georgia, serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;

    box-shadow: 0 9px 22px rgba(14, 79, 130, .19);
}

.article-publisher-author {
    min-width: 0;
}

.article-publisher-author strong {
    display: block;
    margin: 0;

    color: #071c31;
    font-family: "Fraunces", Georgia, serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}

.article-publisher-author span {
    display: block;
    margin-top: 5px;

    color: #f36f16;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.article-publisher-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.article-publisher-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 40px;
    padding: 8px 14px;

    border: 1px solid #dbe5ed;
    border-radius: 999px;
    background: #ffffff;
    color: #40556a;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;

    box-shadow: 0 2px 7px rgba(3, 21, 39, .025);
}

.article-publisher-pill svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;

    fill: none;
    stroke: #f36f16;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@media (max-width: 860px) {
    .article-publisher {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        padding: 19px 21px;
    }

    .article-publisher-meta {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 540px) {
    .article-publisher {
        margin-bottom: 24px;
        padding: 17px 16px;
    }

    .article-publisher-avatar {
        width: 47px;
        height: 47px;
        flex-basis: 47px;
    }

    .article-publisher-author strong {
        font-size: 17px;
    }

    .article-publisher-author span {
        font-size: 10px;
    }

    .article-publisher-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .article-publisher-pill {
        justify-content: flex-start;
        width: 100%;
    }
}
