/*TitleBox*/
div.titleBox{
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

/*TitleBox Sport*/
div.titleBox > .sportRow{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
div.titleBox > .sportRow span{
    color: var(--primary-color);
    margin: 0;
    font-size: 70px !important;
}
div.titleBox > .sportRow p {
    color: var(--text-color-grey);
    margin: 0;
    font-size: 13px;
    display: none;
}
@media screen and (max-width: 750px) {
    div.titleBox > .sportRow {
        display: none;
    }
}




/*TitleBox Author*/
div.titleBox .author{

    margin-left: auto;

    padding-left: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
div.titleBox .author p{
    margin: 5px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;

    font-size: 15px;
    color: var(--text-color);
}
div.titleBox .author p span{
    font-size: 19px !important;
    margin-left: 2px;
    color: var(--primary-color);
}
div.titleBox .author img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;

    box-sizing: border-box;
    border: 2px solid var(--body-color-dark);
}
@media screen and (max-width: 750px) {
    div.titleBox .author img{
        width: 60px;
        height: 60px;
    }
}

div.titleBox .author.explorer img{
    border: 2px solid var(--primary-color);
}
/*TitleBox Title*/
div.titleBox .title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 5px 0 7px 0;
}
div.titleBox h1{
    margin: 0;
    font-size: 36px;
}
@media screen and (max-width: 750px) {
    div.titleBox h1{
        font-size: 29px;
    }
}
div.titleBox .title .buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;

    margin: 5px 5px 0 10px;
    gap: 15px;

}
div.titleBox .title .buttons .row{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    height: 100%;
    margin-bottom: auto;
}
@media screen and (min-width: 750px) {
    div.titleBox .title .buttons .row.sportRow{
        display: none;
    }
}


div.titleBox .title .buttons a{

    --font-size: 27px;

    font-size: var(--font-size);

    margin: 0;
    padding: 0;
}
div.titleBox .title .buttons a span{
    font-size: var(--font-size);
    height: var(--font-size);
    width: var(--font-size);
}

div.titleBox .title .buttons a:active span, div.titleBox .title .buttons a:focus span {
    color: var(--primary-color) !important;
}
div.titleBox .title .buttons a:hover span {
    color: var(--primary-color-dark) !important;
}
div.titleBox .title .buttons a:has(span){
    height: var(--font-size);
}
div.titleBox .title .buttons .row.disabled a{
    color: var(--text-color-grey);
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    div.titleBox .title .buttons a{
        --font-size: 25px;
    }
    div.titleBox .title .buttons a:has(span){
        --font-size: 25px;
    }
}


div.titleBox .title .buttons p{
    color: var(--text-color-grey);
    margin: 0;
    font-size: 11px;
}
@media screen and (max-width: 750px) {
    div.titleBox .title .buttons p{
        font-size: 10px;
    }
}