.author-box {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px;
    margin: 40px 0;
    border: 1px solid var(--silo-accent-500);
}

.author-box__image {
    flex-shrink: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
}

.author-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-box__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.author-box__badge {
    align-self: flex-start;
    min-width: 125px;
    padding: 8px 16px;
    background-color: var(--silo-accent-600);
    color: var(--color-alabaster-gray-200);
    font-family: var(--font-family-body);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.author-box__name {
    margin: 0;
    font-family: var(--font-family-display);
    font-size: 25px;
    font-weight: 400;
    color: var(--silo-accent-600);
}

.author-box__bio {
    margin: 0;
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-vintage-grape-800);
    line-height: 1.5;
}

.author-box__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-box__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.author-box__social .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

@media (max-width: 700px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-box__badge {
        align-self: center;
    }
}
