.author-info {
    background: white;
    padding: 0 20px;
    border-left: solid 3px #003399;
    max-width: 600px;
    position: relative;
}
.author-info::after {
    content: "Autore";
    position: absolute;
    left: -44px;
    top: 50%;
    transform: rotate(-90deg);
    color: #003399;
    font-weight: bold;
}
.author-info>.head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.author-info>.head>img {
    border-radius: 64px;
}
.author-info>.head>h2 {
    font-family: 'Plus Jakarta Sans', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #003399;
}
.author-info>h3, .author-info>p {
    color: black;
    font-weight: bold;
}
.author-info>.social {
    display: flex;
    margin-top: 24px;
}
.author-info>.social a {
    border-radius: 32px;
    content: "\e052";
    font-family: ETmodules;
    font-size: 1.2em;
    color: white;
    position: relative;
    margin-right: 6px;
    background: red;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}
.author-info>.social a.linkedin::before {
    content: "\E09D";
}
.author-info>.social a.linkedin {
    background: #007bb6;
}
.author-info>.social a.facebook::before {
    content: "\e093";
}
.author-info>.social a.facebook {
    background: #3b5998;
}
.author-info>.social a.instagram::before {
    content: "\e09a";
}
.author-info>.social a.instagram {
    background: #ea2c59;
}
.author-info>.social a.x::before {
    content: "\e094";
}
.author-info>.social a.x {
    background: #000000;
}
.author-info>a {
    display: inline-block;
    color: white;
    background: #003399;
    padding: 12px 24px;
    border-radius: 32px;
    margin-top: 24px;
}
