section.content
{
    display: flex;
    gap: 2rem;
}




section.content > div.infos
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}




section.content > div.infos > h1
{
    font-size: calc(var(--smallFontSize) + 0.7rem);
    line-height: 1.5;
}



section.content > div.infos > a
{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-bottom: 1px solid var(--orange);
    padding-bottom: 0.5rem;
}

section.content > div.infos > a,
section.content > div.infos > a > p
{
    font-size: calc(var(--smallFontSize) + 0.3rem);
    line-height: 1.5;
}

section.content > div.infos > a > img
{
    width: 26px;
}

section.content > div.infos > a.map
{
    display: flex;
}


section.content > iframe
{
    border: none;
    outline: none;
    width: 100%;
    height: 50vh;
}

@media only screen and (max-width: 500px)
{
    section.content
    {
        flex-direction: column;
    }

    section.content > div.infos > h1
    {
        font-size: calc(var(--smallFontSize) + 0.3rem);
    }
    
    section.content > div.infos > a,
    section.content > div.infos > a > p
    {
        font-size: var(--smallFontSize);
    }

    section.content > iframe
    {
        height: 100vw;
    }
}
