.wider-container {
    max-width: 1600px !important;
    margin: 0 auto;
}

.main-menu .navigation > li {
    margin-left: 28px;
}

/* Speaker grid: shrink long names so they fit on one line in the pink label band */
.speaker-block-three .info-box .name.name--long {
    font-size: 19px;
    line-height: 1.2em;
    white-space: nowrap;
}

/* /partners hero: show the full photo, never crop with background-size: cover */
.partners-hero {
    position: relative;
    text-align: center;
    background: #231f20;
    overflow: hidden;
}
.partners-hero__photo {
    display: block;
    width: 100%;
    height: auto;
}
.partners-hero__copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: linear-gradient(rgba(35, 31, 32, 0.18), rgba(35, 31, 32, 0.34));
}
.partners-hero__date {
    display: block;
    color: #f20487;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 16px;
}
.partners-hero__logo {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 16px;
}
.partners-hero h1 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1em;
    font-weight: 700;
    margin: 0 0 12px;
    text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}
.partners-hero p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.45;
    margin: 0 auto;
    max-width: 36em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}
@media (max-width: 767px) {
    .partners-hero {
        display: flex;
        flex-direction: column;
    }
    .partners-hero__copy {
        position: relative;
        order: 1;
        background: #231f20;
        padding: 48px 20px 36px;
    }
    .partners-hero__photo {
        order: 2;
    }
    .partners-hero h1 {
        font-size: 34px;
    }
    .partners-hero p {
        font-size: 17px;
    }
}