.section.news .content .heading.main {
	overflow: hidden;
}

.aside_switcher-eoa {
	width: 200px;
	margin-right: -145px;
	background-color: #F0BE36;
	background-image: url("../img/icons/eoa.png");
	top: 260px
}

@media (max-width: 767px) {
	.aside_switcher-eoa {
		top: 126px;
		margin-right: -165px;
	}
}

/* === Sticky new-web banner === */
.new-web-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 40px;
    background: #1a1a2e;
    color: #fff;
    font-size: 13px;
    font-family: 'Noto Sans', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* container-xl equivalent — matches the new website exactly */
.new-web-banner__inner {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .new-web-banner__inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .new-web-banner__inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.new-web-banner__switch {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
}

.new-web-banner__switch:hover,
.new-web-banner__switch:focus {
    color: #fff;
    text-decoration: none;
}

.new-web-banner__switch-track {
    display: inline-block;
    width: 36px;
    height: 20px;
    background: #555;
    border-radius: 10px;
    position: relative;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    vertical-align: middle;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.new-web-banner__switch:hover .new-web-banner__switch-track {
    background: #2c8ecd;
}

.new-web-banner__switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: left 0.2s;
    transition: left 0.2s;
}

.new-web-banner__switch:hover .new-web-banner__switch-thumb {
    left: 18px;
}

.new-web-banner__switch-text {
    font-size: 13px;
    color: #fff;
}

/* Odsadit obsah stránky o výšku sticky banneru — jen když je lišta viditelná */
body.has-banner {
    padding-top: 40px;
}
/* === /Sticky new-web banner === */