.redazione-row
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 100px;
}

.author-container
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% * (1/2) - 10px - 1px);
  margin: 0px;
  padding: 50px 250px;
}

.section-title-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.section-title
{
    font-family: 'Roboto serif';
    font-size: 60px;
    line-height: 1.1;
    font-weight: 600;
    color: #fa6600;
} 

@media (max-width: 576px)
{ 
    .author-container
    {
        width: 80%;
        padding: 50px 10px;
    }

    .section-title
    {
        font-size: 40px;
    } 
}