.meetingDetailPage .mainContent > .Article:first-child,
.meetingDetailPage .mainContent > .Article:first-child .Article__inner {
    padding: 0;
}

.mmt-mdp-header {
    position: relative;
    padding-top: 13vw;
    background-color: #e5f6fd;
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}

.mmt-mdp-headerImage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #e5f6fd;
    background-repeat: no-repeat;
    background-size: cover;
}

.mmt-meeting-detail-page .mmt-mdp-headerImage {/** parent selector because sometimes JS puts the header outside this parent to go above the pageMenu */
    left: -16px;
    right: -16px;
}

@media screen and (min-width: 376px) {
    .mmt-meeting-detail-page .mmt-mdp-headerImage {
        left: -32px;
        right: -32px;
    }
}

@media screen and (min-width: 768px) {
    .mmt-meeting-detail-page .mmt-mdp-headerImage {
        left: -48px;
        right: -48px;
    }
}

.mmt-mdp-headerImage::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 10vw;
    background: rgba(0,0,0,.3);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,.5) 100%);
}

.mmt-mdp-summary {
    position: relative;
    padding: 0 0 16px;
    color: #fff;
}

.mmt-mdp-summary a {
    color: inherit;
}

.mmt-mdp-content {
    padding-top: 64px;
    padding-bottom: 64px;
}

/**
 * sidebar content
 */

.mmt-meeting-detail-page table {
    width: 100%;
}

.mmt-meeting-detail-page th,
.mmt-meeting-detail-page td {
    padding-left: 0;
}

/**
 * buttons
 */

.mmt-mdp-cta,
.mmt-mdp-call-to-action {
    display: inline-block;
    margin-right: .5rem;
    padding: .5em 1.5em;
    border: 1px solid #53a8e0;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background-color: #53a8e0;
    cursor: pointer;
    transition: background-color 0.25s ease-out,color 0.25s ease-out;
}

.mmt-mdp-cta:hover,
.mmt-mdp-call-to-action:hover {
    background-color: #0bf;
}

.mmt-mdp-cta.mmt-mdp-cta-secondary {
    color: #03aceb;
    background-color: transparent;
}

.mmt-mdp-cta.mmt-mdp-cta-secondary:hover {
    color: #fff;
    background-color: #53a8e0;
}

.mmt-mdp-cta + .mmt-mdp-cta {
    margin-top: 1rem;
}
