body {
    display: flex;
    padding: 42px 0;
    flex-direction: column;
    align-items: center;
    margin: none;
}

.side-ad {
    position: fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.side-ad img {
    width: 22vw;
    height: auto;
    object-fit: contain;
}

#ad-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#ad-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

header {
    display: flex;
    max-width: 1200px;
    width: 100%;
    padding: 10px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

#header-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

#header-logo-last-updated {
    color: #000;
    font-family: Georgia;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#header-cat-bar {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    
    background: #F5F5F5;
    overflow: hidden;
    white-space: nowrap;
}

#header-cat-bar span {
    color: #000;
    font-family: Georgia;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: pointer;
}

#header-cat-bar span.headlines-cat {
    color: #FE006F;
}

#contents {
    display: flex;
    width: 100%;
    padding: 10px 40px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

#headline {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    background: #F5F5F5;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

#headline-title {
    align-self: stretch;
    display: block;
}

#headline-title .headline::after {
    content: " ";
}

#headline img {
    align-self: fill;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: bottom;
}

#articles {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    margin-top: 20px;
    box-sizing: border-box;
}

.article-card {
    flex: 1 1 0;
    height: 450px;
    min-width: 300px;
    padding: 10px;
    background: #F5F5F5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
}

.article-card-text {
    align-self: stretch;
    display: block;
    flex-shrink: 0;
}

.article-card-text .headline {
    display: inline;
    margin: 0;
    padding: 0;
}

.article-card-text .headline::after {
    content: " ";
}

.article-card img {
    align-self: stretch;
    flex: 1 1 0;
    object-fit: cover;
    max-height: 100%;
    overflow: hidden;
}

.ad-space {
    height: 450px;
    padding: 10px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-space img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.headline {
    color: #00F;
    font-family: Georgia;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.category {
    color: #FE006F;
}

.info {
    color: #000;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #F5F5F5;
    padding: 20px 40px;
    box-sizing: border-box;
    text-align: center;
    font-family: Georgia;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

#hide-footer {
    cursor: pointer;
    color: #0000FF;
    text-decoration: underline;
    margin-left: 10px;
}

#popup {
    display: block;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    margin: 0;

    background: rgba(0, 0, 0, 0.4);

    cursor: pointer;
}

#popup img {
    display: block;
    margin: 20px auto;
    width: 400px;
}


@media (pointer: coarse) {
.side-ad {
display: none;
}

body {
zoom: 1.75;
}

#headline img {
    width: 100%;
    height: auto;
}

}