html{
    background-color: white;
}
body{
    font-family: sans-serif;

    display: flex;
    flex-direction: row;
    column-gap: 40px;

    margin: 25px;
    /* background-color: antiquewhite; */
}
body div{
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
body div * {
    width: 100%;
}

div.row{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

body>div:first-child{
    max-height: 90vh;
}


div.header,
div.date{
    text-align: left;
}
.header {
    font-size: 24px;
    font-weight: bold;
}
.date {
    font-size: 18px;
    margin-top: 5px;
}

div.titleRow{
    font-family: serif;

    margin: 20px auto;
    align-items: center;
}
.title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
.actions {
    width: auto;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-weight: bold;
}


div.imgsRow{
    align-items: flex-end;
}
.image {
    max-width: 840px;
    position: relative;
}
.image::after {
    content: "";
    width: 33%;
    height: 14%;
    background: #ffffff;
    right: 0;
    left: auto;
    position: absolute;
    top: auto;
    bottom: 0;
}
.footer{
    width: auto;
    align-self: self-end;
}
.footer img {
    width: 200px;
}


section {
    margin-bottom: 20px;
}
section ul {
    width: auto;
    margin: 0;
}
.highlight {
    font-weight: bold;
}

section>*{
    margin: 1em 0px;
}
div.infoColumn > div{
    line-height: 1.4em;
}

div.infoColumn>section{
    margin: 0;
}

@media (max-width: 1300px) {
    body{
        display: flex;
        flex-direction: column;
        row-gap: 40px;
    }
    body div{
        width: 100%;
    }
    div.titleRow{
        max-width: 500px;
    }
    /* .image{
        max-width: 600px;
    } */
}
@media (max-width: 500px){
    body{
        margin: 5.1%;
    }

    .title {
        font-size: 30px;
    }
}


.marginTop{
    margin-top: 0;
}
.marginButton{
    margin-bottom: 0;
}


span.btn{
    margin: 15px 0;
    background-color: #ab3884;
    padding: 15px 20px;
    border-radius: 15px 0 0 0;
    width: fit-content;
}
span.btn a {
    color: white;
    text-decoration: none;
}