* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.title-area {
    background: #ffe547;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.top-bar {
    margin: auto;
    font-size: 14px;
    line-height: 20px;
    max-width: 1600px;
    padding: 16px 16px 8px;
}
a.top-bar-link {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0);
    transition: border-color .2s ease-out;
}
.top-bar-broadcast.mobile {
    display: none;
}
@media screen and (max-width: 767px) {
    .top-bar-broadcast:not(.mobile) {
        display: none;
    }
    .top-bar-broadcast.mobile {
        display: block;
    }
}
@media screen and (min-width: 1023px) {
    .top-bar {
        padding: 16px 30px 8px;
    }
    .top-bar-broadcast:not(.mobile) {
        display: inline;
        margin-left: 16px;
    }
}
body {
    background-color: #fff;
    font-family: Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.main-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    margin-top: 25px;
    width: 100%;
}
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 160px;
    max-width: 900px;
    width: 100%;
}
.text-block {
    flex: 1;
    min-width: 0;
    max-width: 440px;
}
.text-block p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    margin-bottom: 1em;
}
.text-block p:last-of-type {
    margin-bottom: 0;
}
.signature {
    margin-top: 2.5em;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
}
.image-block {
    flex-shrink: 0;
    width: 200px;
    filter: drop-shadow(8px 10px 16px rgba(0,0,0,0.22));
}
.image-block img {
    width: 100%;
    display: block;
    margin-bottom: 2.5em;
}
@media (max-width: 768px) {
    .main-wrapper {
        padding: 110px 24px 40px;
        align-items: flex-start;
    }
    .container {
        flex-direction: column;
        gap: 48px;
        align-items: flex-start;
    }
    .image-block {
        width: 140px;
    }
}
