:root {
	--bo-ink: #17191f;
	--bo-muted: #667085;
	--bo-line: #d9dee7;
	--bo-soft: #f3f6fa;
	--bo-paper: #ffffff;
	--bo-red: #c41f2f;
	--bo-blue: #1f5f99;
	--bo-green: #1f7a5a;
	--bo-body-bg: #f7f8fa;
	--bo-max: 1200px;
	--bo-gutter: 16px;
	--bo-gap: 16px;
	--bo-header-grid: 14% 34% 24% 18% 10%;
	--bo-showcase-grid: 25% 25% 25% 25%;
	--bo-cards-grid: repeat(3, minmax(0, 1fr));
	--bo-banner-grid: 18% 64% 18%;
	--bo-content-top-grid: 25% 25% 25% 25%;
	--bo-main-grid: 0% 1fr 28%;
	--bo-content-bottom-grid: 25% 25% 25% 25%;
	--bo-footer-grid: 25% 25% 25% 25%;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--bo-ink);
	background: var(--bo-body-bg);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.55;
}

a {
	color: var(--bo-blue);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--bo-red);
	text-decoration: underline;
}

img,
iframe,
video {
	max-width: 100%;
}

img {
	height: auto;
}

.visually-hidden {
	width: 1px !important;
	height: 1px !important;
	position: absolute !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	padding: 0 !important;
	margin: -1px !important;
}

input,
select,
textarea,
button {
	font: inherit;
}

.container {
	width: min(calc(100% - (var(--bo-gutter) * 2)), var(--bo-max));
	margin-inline: auto;
}

.site-header,
.layout-band,
.site-main,
.ad-band,
.site-footer {
	width: 100%;
}

.topbar {
	background: var(--bo-ink);
	color: #fff;
	font-size: 0.875rem;
}

.topbar-grid {
	min-height: 34px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, auto);
	align-items: center;
	gap: var(--bo-gap);
}

.topbar-right {
	justify-self: end;
}

.masthead {
	background: var(--bo-paper);
	border-bottom: 1px solid var(--bo-line);
}

.header-grid {
	min-height: 92px;
	padding-block: 12px;
	display: grid;
	grid-template-columns: var(--bo-header-grid);
	align-items: center;
	gap: var(--bo-gap);
}

.is-compact-header .header-grid {
	min-height: 68px;
	padding-block: 8px;
}

.header-logo,
.header-menu,
.header-search,
.header-social,
.header-extra,
.content-column,
.sidebar-left,
.sidebar-right {
	min-width: 0;
}

.header-social,
.header-extra {
	justify-self: end;
}

.mobile-menu-toggle {
	display: none;
}

.mobile-menu-tags {
	display: none;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.site-logo:hover,
.site-logo:focus {
	text-decoration: none;
}

.site-logo img {
	display: block;
	width: min(100%, 132px);
	max-height: 76px;
	object-fit: contain;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: 100%;
	color: var(--bo-ink);
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.brand:hover,
.brand:focus {
	color: var(--bo-ink);
	text-decoration: none;
}

.brand-mark {
	width: 54px;
	height: 54px;
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	background: var(--bo-red);
	color: #fff;
	font-size: 1.2rem;
	border-radius: 6px;
}

.brand-text {
	min-width: 0;
	font-size: clamp(0.95rem, 1.1vw, 1.25rem);
	line-height: 1.1;
	overflow-wrap: anywhere;
}

.header-menu ul,
.primary-nav ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
}

.header-menu ul {
	flex-wrap: wrap;
}

.header-menu a {
	display: block;
	padding: 10px 11px;
	color: var(--bo-ink);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0;
	white-space: nowrap;
	text-transform: uppercase;
}

.header-menu a:hover,
.header-menu a:focus,
.header-menu .active > a,
.header-menu .current > a {
	color: var(--bo-red);
	text-decoration: none;
}

.header-search form,
.header-search .search {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.header-search input[type="search"],
.header-search input[type="text"] {
	width: 100%;
	min-height: 38px;
	border: 1px solid var(--bo-line);
	border-radius: 4px 0 0 4px;
	padding: 0 10px;
}

.header-search button,
.header-search .btn {
	min-height: 38px;
	border: 0;
	border-radius: 0 4px 4px 0;
	padding-inline: 12px;
	background: var(--bo-blue);
	color: #fff;
	cursor: pointer;
}

.header-search .mod-finder,
.header-search .finder {
	width: 100%;
}

.header-search .awesomplete {
	flex: 1 1 auto;
	width: 100%;
}

.header-search .mod-finder__search,
.header-search .js-finder-searchform {
	display: flex;
	width: 100%;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
}

.social-icons a {
	width: 28px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--bo-line);
	border-radius: 4px;
	background: #fff;
	color: var(--bo-blue);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.social-icons a:hover,
.social-icons a:focus {
	background: #f7f8fa;
	border-color: #b8c1cf;
	text-decoration: none;
	transform: translateY(-1px);
}

.social-icons img {
	width: 18px;
	height: 18px;
	display: block;
}

.header-social .moduletable,
.header-extra .moduletable {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.primary-nav {
	background: var(--bo-red);
	color: #fff;
}

.nav-scroll {
	overflow-x: auto;
}

.primary-nav a {
	display: block;
	padding: 13px 15px;
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav .current > a,
.primary-nav .active > a {
	background: rgba(0, 0, 0, 0.18);
	text-decoration: none;
}

.ad-band {
	background: var(--bo-paper);
}

.ad-band .container {
	padding-block: 12px;
}

.ad-band-top .moduletable,
.ad-band-after-header .moduletable,
.ad-band-cards .moduletable,
.ad-band-before-footer .moduletable,
.banner-main .moduletable {
	min-height: 80px;
	display: grid;
	place-items: center;
	background: var(--bo-soft);
	border: 1px dashed #b8c1cf;
}

.ad-band-top .moduletable,
.banner-main .moduletable {
	min-height: 112px;
}

.breaking-band {
	background: #fff8e6;
	border-block: 1px solid #ead9a9;
}

.breaking-band .container {
	padding-block: 10px;
}

.layout-band {
	background: var(--bo-paper);
	border-bottom: 1px solid var(--bo-line);
}

.layout-band .container {
	padding-block: 18px;
}

.flexible-grid {
	display: grid;
	gap: var(--bo-gap);
	align-items: stretch;
}

.showcase-grid {
	grid-template-columns: var(--bo-showcase-grid);
}

.cards-grid {
	grid-template-columns: var(--bo-cards-grid);
}

.showcase-headlines .mod-articleslatest,
.showcase-grid .mod-articleslatest {
	margin-block: 0;
	padding-left: 1.15rem;
}

.showcase-headlines .mod-articleslatest li,
.showcase-grid .mod-articleslatest li {
	margin-bottom: 7px;
}

.showcase-headlines .mod-articleslatest a,
.showcase-grid .mod-articleslatest a {
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.4;
}

.banner-grid {
	grid-template-columns: var(--bo-banner-grid);
}

.content-top-grid {
	grid-template-columns: var(--bo-content-top-grid);
}

.content-bottom-grid {
	grid-template-columns: var(--bo-content-bottom-grid);
}

.footer-grid {
	grid-template-columns: var(--bo-footer-grid);
}

.site-main {
	padding-block: 24px 36px;
}

.breadcrumbs {
	margin-bottom: 16px;
}

.content-strip {
	margin-bottom: 20px;
}

.content-bottom-grid {
	margin-top: 22px;
	margin-bottom: 0;
}

.main-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--bo-gap);
	align-items: start;
}

.main-grid.has-left.has-right {
	grid-template-columns: var(--bo-main-grid);
}

.main-grid.has-left:not(.has-right) {
	grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
}

.main-grid.has-right:not(.has-left) {
	grid-template-columns: minmax(0, 1fr) minmax(240px, 28%);
}

.blog-items,
.items-row,
.item-page,
.com-content-article,
.com-content-category-blog,
.com-content-featured {
	background: var(--bo-paper);
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	padding: 20px;
}

.blog-item,
.item {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--bo-line);
}

.blog-item:last-child,
.item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

h1,
h2,
h3 {
	line-height: 1.2;
	letter-spacing: 0;
}

h1 {
	font-size: 2rem;
}

h2 {
	font-size: 1.45rem;
}

.moduletable {
	min-width: 0;
	margin-bottom: var(--bo-gap);
}

.moduletable:last-child {
	margin-bottom: 0;
}

.sidebar-left .moduletable,
.sidebar-right .moduletable,
.content-strip .moduletable,
.showcase-grid .moduletable,
.cards-grid .moduletable,
.footer-grid .moduletable {
	background: var(--bo-paper);
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	padding: 16px;
}

.moduletable > h3,
.moduletable .module-title {
	margin: 0 0 12px;
	padding-bottom: 9px;
	border-bottom: 3px solid var(--bo-red);
	font-size: 1rem;
	text-transform: uppercase;
}

.span-full {
	grid-column: 1 / -1;
}

.span-2 {
	grid-column: span 2;
}

.span-3 {
	grid-column: span 3;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.no-box {
	background: transparent !important;
	border: 0 !important;
	/*padding: 0 !important;*/
}

.site-footer {
	background: #20242c;
	color: #e8edf5;
}

.site-footer a {
	color: #fff;
}

.site-footer .container {
	padding-block: 30px;
}

.canal-page {
	background: var(--bo-paper);
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	padding: 20px;
}

.canal-header h1,
.canal-page .bo-news-list__heading h1 {
	margin: 0 0 24px;
	color: var(--bo-red);
	font-size: clamp(2.2rem, 6vw, 3.5rem);
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 2px 3px 0 rgba(23, 25, 31, .18);
}

.canal-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.canal-card {
	min-width: 0;
	background: #fff;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	overflow: hidden;
}

.canal-list {
	display: grid;
	gap: 24px;
}

.canal-list .canal-card {
	border-radius: 6px;
}

.canal-embed {
	aspect-ratio: 16 / 9;
	background: #111;
}

.canal-embed iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.canal-card-body {
	padding: 14px;
}

.canal-card-body h2 {
	margin: 0 0 8px;
	font-size: 1.45rem;
	line-height: 1.2;
}

.canal-card-body h2 a {
	color: var(--bo-ink);
}

.canal-card-body h2 a:hover,
.canal-card-body h2 a:focus {
	color: var(--bo-red);
	text-decoration: none;
}

.canal-share {
	min-height: 38px;
	margin-top: 10px;
	padding: 8px 13px;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #fff;
	color: #344054;
	font-weight: 900;
	cursor: pointer;
}

.canal-share:hover,
.canal-share:focus {
	border-color: var(--bo-blue);
	background: #edf5fc;
	color: var(--bo-blue);
}

.canal-card-body p {
	margin: 0;
	color: var(--bo-muted);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: #c7cfda;
	font-size: 0.875rem;
}

.footer-bottom .container {
	padding-block: 13px;
}

.bo-site-footer {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) auto;
	gap: 14px 28px;
	align-items: center;
}

.bo-site-footer__brand {
	display: grid;
	gap: 2px;
}

.bo-site-footer__brand strong {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 900;
	line-height: 1.1;
}

.bo-site-footer__brand span,
.bo-site-footer__contact,
.bo-site-footer__copy {
	color: #c7cfda;
	font-size: .9rem;
	line-height: 1.35;
}

.bo-site-footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 16px;
}

.bo-site-footer__links a,
.bo-site-footer__contact a {
	color: #fff;
	font-weight: 800;
}

.bo-site-footer__links a:hover,
.bo-site-footer__links a:focus,
.bo-site-footer__contact a:hover,
.bo-site-footer__contact a:focus {
	color: #f4c542;
	text-decoration: none;
}

.bo-site-footer__contact {
	grid-column: 1;
}

.bo-site-footer__copy {
	grid-column: 2;
	justify-self: end;
	margin: 0;
	text-align: right;
}

.cookie-consent {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 10050;
	width: min(520px, calc(100% - 36px));
	padding: 15px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background: #17191f;
	color: #fff;
	box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.cookie-consent[hidden] {
	display: none;
}

.cookie-consent__text {
	display: grid;
	gap: 3px;
	font-size: .9rem;
	line-height: 1.35;
}

.cookie-consent__text strong {
	font-size: .98rem;
	font-weight: 900;
}

.cookie-consent__text span {
	color: #d9dee7;
}

.cookie-consent a {
	width: fit-content;
	color: #f4c542;
	font-weight: 900;
}

.cookie-consent a:hover,
.cookie-consent a:focus {
	color: #fff;
	text-decoration: none;
}

.cookie-consent button {
	min-height: 40px;
	padding: 9px 14px;
	border: 0;
	border-radius: 6px;
	background: var(--bo-red);
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

.cookie-consent button:hover,
.cookie-consent button:focus {
	background: #a91927;
}

.bo-news-list {
	background: var(--bo-paper);
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	padding: 22px;
}

.bo-news-list__heading {
	margin-bottom: 26px;
	text-align: center;
}

.bo-news-list__heading h1 {
	margin: 0;
	color: var(--bo-red);
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 1px 2px 0 rgba(0, 0, 0, .16);
}

.bo-news-list__items {
	display: grid;
	gap: 28px;
}

.bo-news-item {
	padding-bottom: 28px;
	border-bottom: 1px solid var(--bo-line);
}

.bo-news-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.bo-news-item__tagline {
	margin-bottom: 8px;
}

.bo-news-item__tag {
	display: inline-block;
	padding: 5px 9px;
	background: var(--bo-red);
	color: #fff;
	font-size: .78rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.bo-news-item__tag:hover,
.bo-news-item__tag:focus {
	color: #fff;
	text-decoration: underline;
}

.bo-news-item__title {
	margin: 0 0 8px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.16;
}

.bo-news-item__title a {
	color: #3f4652;
}

.bo-news-item__title a:hover,
.bo-news-item__title a:focus {
	color: var(--bo-red);
	text-decoration: none;
}

.bo-news-item__subtitle {
	margin: 0 0 12px;
	color: #5e6673;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
}

.bo-news-item__meta {
	margin-bottom: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	color: #333a45;
	font-size: .9rem;
}

.bo-news-item__meta--top {
	margin-bottom: 14px;
}

.bo-news-item__body {
	display: grid;
	grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.bo-news-item__thumb {
	display: block;
	overflow: hidden;
	border: 1px solid var(--bo-line);
	background: var(--bo-soft);
}

.bo-news-item__thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	object-fit: cover;
	transition: transform .18s ease;
}

.bo-news-item__thumb:hover img,
.bo-news-item__thumb:focus img {
	transform: scale(1.04);
}

.bo-news-item__summary p {
	margin: 0 0 14px;
	color: #151922;
	font-size: 1rem;
	line-height: 1.65;
}

.bo-news-item__summary {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.bo-news-item__readmore {
	display: inline-block;
	margin-top: 4px;
	padding: 8px 13px;
	border-radius: 4px;
	background: var(--bo-blue);
	color: #fff;
	font-weight: 700;
	line-height: 1;
}

.bo-news-item__readmore:hover,
.bo-news-item__readmore:focus {
	background: var(--bo-red);
	color: #fff;
	text-decoration: none;
}

.bo-news-list__pagination {
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid var(--bo-line);
	text-align: center;
}

.bo-news-list__pagination .counter {
	margin: 0 0 13px;
	color: var(--bo-muted);
	font-size: .92rem;
	font-weight: 700;
}

.bo-news-list__pagination .pagination__wrapper {
	display: flex;
	justify-content: center;
}

.bo-news-list__pagination .pagination {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	list-style: none;
}

.bo-news-list__pagination .page-item {
	margin: 0;
}

.bo-news-list__pagination .page-link {
	min-width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--bo-line);
	border-radius: 5px;
	background: #fff;
	color: #344054;
	font-size: .95rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .06);
}

.bo-news-list__pagination a.page-link:hover,
.bo-news-list__pagination a.page-link:focus {
	border-color: var(--bo-blue);
	background: #edf5fc;
	color: var(--bo-blue);
	text-decoration: none;
}

.bo-news-list__pagination .active .page-link,
.bo-news-list__pagination .page-link[aria-current="true"] {
	border-color: var(--bo-red);
	background: var(--bo-red);
	color: #fff;
}

.bo-news-list__pagination .disabled .page-link {
	opacity: .46;
	cursor: not-allowed;
	box-shadow: none;
}

.bo-news-list__pagination .icon-angle-double-left::before {
	content: "\00ab";
}

.bo-news-list__pagination .icon-angle-left::before {
	content: "\2039";
}

.bo-news-list__pagination .icon-angle-right::before {
	content: "\203a";
}

.bo-news-list__pagination .icon-angle-double-right::before {
	content: "\00bb";
}

.bo-more-news {
	margin-top: 24px;
	padding: 18px 18px 16px;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #f8fafc;
}

.bo-more-news h2 {
	margin: 0 0 12px;
	color: var(--bo-ink);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1.2;
}

.bo-more-news__list {
	margin: 0;
	padding-left: 1.15rem;
	display: grid;
	gap: 8px;
}

.bo-more-news__list li::marker {
	color: var(--bo-red);
	font-weight: 800;
}

.bo-more-news__list a {
	color: #344054;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.bo-more-news__list a:hover,
.bo-more-news__list a:focus {
	color: var(--bo-red);
	text-decoration: none;
}

.bo-article {
	max-width: 900px;
	margin: 0 auto;
	background: var(--bo-paper);
}

.bo-article__page-heading h1 {
	margin: 0 0 18px;
	color: var(--bo-red);
	font-size: 1.15rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bo-article__header {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--bo-line);
}

.bo-article__tags {
	margin-bottom: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.bo-article__tags a {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 4px 10px;
	border-radius: 3px;
	background: var(--bo-red);
	color: #fff;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .03em;
	line-height: 1;
	text-transform: uppercase;
}

.bo-article__tags a:hover,
.bo-article__tags a:focus {
	background: #a91927;
	color: #fff;
	text-decoration: none;
}

.bo-article__title-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 18px;
}

.bo-article__title {
	margin: 0;
	color: #303846;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 900;
	line-height: 1.05;
}

.bo-article__subtitle {
	max-width: 760px;
	margin: 12px 0 0;
	color: #536173;
	font-size: 1.2rem;
	line-height: 1.45;
}

.bo-article__meta {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	color: var(--bo-muted);
	font-size: .92rem;
	font-weight: 700;
}

.bo-article__meta span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.bo-article__meta span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bo-red);
}

.bo-article__meta a {
	color: var(--bo-blue);
	font-weight: 900;
}

.bo-article__badges {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bo-article__badges span {
	padding: 5px 8px;
	border-radius: 4px;
	background: #fff4cc;
	color: #7a4d00;
	font-size: .82rem;
	font-weight: 800;
}

.bo-share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 9px 13px;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #fff;
	color: #303846;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .06);
}

.bo-share-button:hover,
.bo-share-button:focus {
	border-color: var(--bo-blue);
	background: #edf5fc;
	color: var(--bo-blue);
}

.bo-share-button span {
	font-size: 1.15rem;
	line-height: 1;
}

.bo-share-button--wide {
	min-height: 44px;
	padding-inline: 16px;
	background: var(--bo-red);
	color: #fff;
	border-color: var(--bo-red);
}

.bo-share-button--wide:hover,
.bo-share-button--wide:focus {
	background: #a91927;
	border-color: #a91927;
	color: #fff;
}

.bo-article__body {
	color: #202633;
	font-size: 1.08rem;
	line-height: 1.75;
}

.bo-article__body p {
	margin: 0 0 1.05em;
}

.bo-article__body img {
	border-radius: 6px;
}

.bo-article-image {
	margin: 0 0 1.2em;
	padding: 6px 6px 0;
	border: 1px solid var(--bo-line);
	background: #eef2f6;
}

.bo-article-image img {
	width: 100%;
	display: block;
	border-radius: 0;
}

.bo-article-image figcaption {
	padding: 2px 0 3px;
	color: #111827;
	font-size: .65rem;
	font-weight: 600;
	line-height: 1.1;
	text-align: right;
}

.bo-article__footer-share {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--bo-line);
}

.bo-article .pagenavigation {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--bo-line);
}

.bo-article .pagenavigation .pagination {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.bo-article .pagenavigation a {
	min-height: 64px;
	padding: 13px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #f8fafc;
	color: #303846;
	font-size: 0;
	font-weight: 900;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.bo-article .pagenavigation a.previous {
	grid-column: 1;
}

.bo-article .pagenavigation a.next {
	grid-column: 2;
}

.bo-article .pagenavigation a:hover,
.bo-article .pagenavigation a:focus {
	border-color: var(--bo-blue);
	background: #edf5fc;
	color: var(--bo-blue);
	text-decoration: none;
}

.bo-article .pagenavigation:not(.bo-article-nav) a.previous::before,
.bo-article .pagenavigation:not(.bo-article-nav) a.next::before {
	color: var(--bo-muted);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.bo-article .pagenavigation:not(.bo-article-nav) a.previous::before {
	content: "Artigo anterior";
}

.bo-article .pagenavigation:not(.bo-article-nav) a.next::before {
	content: "Proximo artigo";
}

.bo-article .pagenavigation .icon-chevron-left::before {
	content: "\2039";
	font-size: 1.7rem;
}

.bo-article .pagenavigation .icon-chevron-right::before {
	content: "\203a";
	font-size: 1.7rem;
}

.bo-article-nav__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.bo-article-nav__link {
	min-height: 54px;
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #f8fafc;
	color: #303846;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.bo-article-nav__link--previous {
	align-items: flex-start;
	text-align: left;
}

.bo-article-nav__link--next {
	grid-column: 2;
	align-items: flex-end;
	text-align: right;
}

.bo-article-nav__link:hover,
.bo-article-nav__link:focus {
	border-color: var(--bo-blue);
	background: #edf5fc;
	color: var(--bo-blue);
	text-decoration: none;
}

.bo-article-nav__direction {
	margin-bottom: 3px;
	color: var(--bo-muted);
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.bo-article-nav__link--previous .bo-article-nav__direction::before {
	content: "\2039  ";
	font-size: 1.1rem;
}

.bo-article-nav__link--next .bo-article-nav__direction::after {
	content: "  \203a";
	font-size: 1.1rem;
}

.bo-article-nav__title {
	font-size: .9rem;
	font-weight: 800;
	line-height: 1.25;
}

.bo-share-modal[hidden] {
	display: none;
}

.bo-share-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(17, 24, 39, .56);
}

.bo-share-modal__panel {
	width: min(100%, 520px);
	padding: 18px;
	border-radius: 8px;
	background: #1f2329;
	color: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.bo-share-modal__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.bo-share-modal__top h2 {
	margin: 0;
	font-size: 1rem;
	font-weight: 900;
}

.bo-share-modal__close {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.bo-share-modal__close:hover,
.bo-share-modal__close:focus {
	background: rgba(255, 255, 255, .12);
}

.bo-share-modal__link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	margin-bottom: 18px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 6px;
	background: rgba(255, 255, 255, .06);
}

.bo-share-modal__link input {
	min-width: 0;
	border: 0;
	background: transparent;
	color: #fff;
}

.bo-share-modal__link button,
.bo-share-modal__grid a {
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 6px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-weight: 800;
}

.bo-share-modal__link button {
	padding: 7px 10px;
	cursor: pointer;
}

.bo-share-modal__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.bo-share-modal__grid a {
	min-height: 58px;
	padding: 10px 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: .86rem;
}

.bo-share-modal__grid a:hover,
.bo-share-modal__grid a:focus {
	background: rgba(255, 255, 255, .16);
	text-decoration: none;
}

.bo-share-modal__status {
	min-height: 1.2em;
	margin: 12px 0 0;
	color: #d1fae5;
	font-size: .9rem;
	font-weight: 800;
}

.com-finder.finder {
	max-width: 980px;
	margin: 0 auto;
	padding: 0;
	background: transparent;
}

.com-finder.finder > h1 {
	margin: 0 0 18px;
	color: var(--bo-ink);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	line-height: 1.05;
}

.com-finder__form {
	margin-bottom: 22px;
	padding: 18px;
	border: 1px solid var(--bo-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(16, 24, 40, .06);
}

.com-finder__search {
	margin: 0;
	padding: 0;
	border: 0;
}

.com-finder__search .form-inline {
	display: grid;
	gap: 8px;
}

.com-finder__search label {
	color: #344054;
	font-size: .9rem;
	font-weight: 900;
}

.com-finder__search .input-group {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 8px;
	align-items: stretch;
}

.com-finder__search input[type="text"] {
	width: 100%;
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #fff;
	color: var(--bo-ink);
	font-size: 1rem;
}

.com-finder__search input[type="text"]:focus {
	border-color: var(--bo-blue);
	outline: 3px solid rgba(31, 95, 153, .14);
}

.com-finder__search .btn,
.com-finder__search button {
	min-height: 46px;
	padding: 10px 14px;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #fff;
	color: #344054;
	font-weight: 900;
	cursor: pointer;
}

.com-finder__search .btn-primary,
.com-finder__search button[type="submit"] {
	border-color: var(--bo-red);
	background: var(--bo-red);
	color: #fff;
}

.com-finder__search .btn-secondary {
	background: #f8fafc;
}

.com-finder__search .btn:hover,
.com-finder__search .btn:focus,
.com-finder__search button:hover,
.com-finder__search button:focus {
	border-color: var(--bo-blue);
	background: #edf5fc;
	color: var(--bo-blue);
}

.com-finder__search .btn-primary:hover,
.com-finder__search .btn-primary:focus,
.com-finder__search button[type="submit"]:hover,
.com-finder__search button[type="submit"]:focus {
	border-color: #a91927;
	background: #a91927;
	color: #fff;
}

.com-finder__advanced {
	margin-top: 16px;
	padding-top: 16px;
	border: 0;
	border-top: 1px solid var(--bo-line);
}

.com-finder__advanced:not(.show) {
	display: none;
}

.com-finder__filter {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.com-finder__filter .filter-branch,
.com-finder__filter .control-group {
	min-width: 0;
}

.com-finder__filter .control-label,
.com-finder__filter label {
	display: block;
	margin-bottom: 5px;
	color: #344054;
	font-size: .82rem;
	font-weight: 900;
}

.com-finder__filter select {
	width: 100%;
	min-height: 40px;
	padding: 8px 10px;
	border: 1px solid var(--bo-line);
	border-radius: 6px;
	background: #fff;
	color: var(--bo-ink);
	font-size: .95rem;
}

.com-finder__explained,
.com-finder__empty {
	margin: 18px 0;
	padding: 12px 14px;
	border-left: 4px solid var(--bo-blue);
	border-radius: 6px;
	background: #edf5fc;
	color: #344054;
	font-weight: 700;
}

.com-finder__results-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.result__item {
	padding: 16px 0;
	border-bottom: 1px solid var(--bo-line);
}

.result__title {
	margin: 0 0 6px;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1.25;
}

.result__title-link {
	color: var(--bo-blue);
}

.result__title-link:hover,
.result__title-link:focus {
	color: var(--bo-red);
	text-decoration: none;
}

.result__title-url {
	display: block;
	margin-top: 3px;
	color: var(--bo-muted);
	font-size: .78rem;
	font-style: normal;
	font-weight: 700;
	word-break: break-word;
}

.result__description {
	margin: 0;
	color: #344054;
	font-size: 1rem;
	line-height: 1.55;
}

.result__date {
	display: inline-flex;
	margin-right: 8px;
	color: var(--bo-muted);
	font-size: .9rem;
	font-weight: 900;
}

.result__description mark,
.result__description .highlight {
	padding: 0 2px;
	border-radius: 2px;
	background: #fff2a8;
	color: #111827;
}

.com-finder__navigation {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--bo-line);
}

.com-finder__pagination .pagination {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	list-style: none;
}

.com-finder__pagination .page-link {
	min-width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--bo-line);
	border-radius: 5px;
	background: #fff;
	color: #344054;
	font-weight: 800;
}

.com-finder__pagination .active .page-link,
.com-finder__pagination .page-link[aria-current="true"] {
	border-color: var(--bo-red);
	background: var(--bo-red);
	color: #fff;
}

.com-finder__counter {
	margin-top: 10px;
	color: var(--bo-muted);
	font-size: .9rem;
	font-weight: 800;
}

@media (max-width: 980px) {
	.header-grid,
	.showcase-grid,
	.cards-grid,
	.banner-grid,
	.content-top-grid,
	.content-bottom-grid,
	.footer-grid,
	.canal-grid,
	.main-grid,
	.main-grid.has-left.has-right,
	.main-grid.has-left:not(.has-right),
	.main-grid.has-right:not(.has-left) {
		grid-template-columns: 1fr;
	}

	.has-mobile-menu .header-grid {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		align-items: center;
	}

	.has-mobile-menu .mobile-menu-toggle {
		width: 42px;
		height: 42px;
		display: inline-flex;
		grid-column: 1;
		grid-row: 1;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		border: 1px solid var(--bo-line);
		border-radius: 5px;
		background: #fff;
		color: var(--bo-ink);
		cursor: pointer;
	}

	.has-mobile-menu .mobile-menu-toggle span:not(.visually-hidden) {
		width: 21px;
		height: 2px;
		display: block;
		border-radius: 999px;
		background: currentColor;
		transition: transform .16s ease, opacity .16s ease;
	}

	.has-mobile-menu .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
		transform: translateY(7px) rotate(45deg);
	}

	.has-mobile-menu .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
		opacity: 0;
	}

	.has-mobile-menu .mobile-menu-toggle[aria-expanded="true"] span:nth-child(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.header-social,
	.header-extra {
		justify-self: stretch;
	}

	.has-mobile-menu .header-logo {
		display: flex;
		grid-column: 2;
		grid-row: 1;
		justify-content: center;
	}

	.no-mobile-menu .header-logo {
		display: flex;
		justify-content: center;
	}

	.has-mobile-menu .header-menu {
		display: none;
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		padding-top: 8px;
	}

	.has-mobile-menu.mobile-menu-open .header-menu {
		display: block;
	}

	.site-logo img {
		width: min(120px, 45vw);
		max-height: 86px;
	}

	.header-menu ul,
	.primary-nav ul {
		justify-content: flex-start;
		overflow-x: visible;
		flex-wrap: wrap;
		padding-bottom: 2px;
	}

	.has-mobile-menu .header-menu ul {
		display: grid;
		grid-template-columns: 1fr;
		gap: 4px;
		border-block: 1px solid var(--bo-line);
		padding-block: 8px;
	}

	.has-mobile-menu .header-menu a {
		padding: 10px 12px;
		border-radius: 4px;
		background: #f8fafc;
	}

	.has-mobile-menu.mobile-menu-open .mobile-menu-tags {
		display: block;
		margin-top: 10px;
		padding: 12px;
		border: 1px solid var(--bo-line);
		border-radius: 6px;
		background: linear-gradient(180deg, #fff, #f8fafc);
	}

	.mobile-menu-tags__title {
		margin: 0 0 8px;
		color: var(--bo-muted);
		font-size: .75rem;
		font-weight: 900;
		letter-spacing: .08em;
		text-transform: uppercase;
	}

	.mobile-menu-tags__list {
		display: flex;
		flex-wrap: wrap;
		gap: 7px;
	}

	.mobile-menu-tags__list a {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 7px 10px;
		border: 1px solid #f1bdc5;
		border-radius: 999px;
		background: #fff;
		color: var(--bo-red);
		font-size: .85rem;
		font-weight: 900;
		line-height: 1;
		text-transform: uppercase;
	}

	.mobile-menu-tags__list a:hover,
	.mobile-menu-tags__list a:focus {
		border-color: var(--bo-red);
		background: var(--bo-red);
		color: #fff;
	}

	.no-mobile-menu .header-menu ul {
		justify-content: center;
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.no-mobile-menu .header-menu a {
		padding-inline: 12px;
		background: transparent;
	}

	.header-search {
		grid-column: 1 / -1;
		width: 100%;
	}

	.header-search input[type="search"],
	.header-search input[type="text"] {
		min-height: 42px;
		border-radius: 4px;
		text-align: left;
	}

	.header-social .social-icons {
		justify-content: center;
	}

	.header-social {
		grid-column: 1 / -1;
		padding-top: 2px;
	}

	.bo-news-item__body {
		grid-template-columns: 180px minmax(0, 1fr);
	}

	.bo-article__title-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	:root {
		--bo-gutter: 10px;
		--bo-gap: 12px;
	}

	.brand-mark {
		width: 46px;
		height: 46px;
	}

	.header-grid {
		min-height: 0;
	}

	.primary-nav a,
	.header-menu a {
		padding: 9px 10px;
		font-size: .9rem;
	}

	.header-grid {
		padding-block: 14px 16px;
		gap: 14px;
	}

	.social-icons {
		gap: 8px;
	}

	.social-icons a {
		width: 30px;
		height: 30px;
	}

	.blog-items,
	.items-row,
	.item-page,
	.com-content-article,
	.com-content-category-blog,
	.com-content-featured,
	.bo-news-list,
	.sidebar-left .moduletable,
	.sidebar-right .moduletable,
	.content-strip .moduletable,
	.showcase-grid .moduletable,
	.cards-grid .moduletable,
	.footer-grid .moduletable {
		padding: 14px;
	}

	.bo-news-list__heading h1 {
		font-size: 2rem;
	}

	.bo-news-item__title {
		font-size: 1.35rem;
	}

	.bo-news-item__body {
		grid-template-columns: 1fr;
	}

	.bo-news-item__thumb {
		max-width: none;
	}

	.bo-news-list__pagination .page-link {
		min-width: 34px;
		height: 34px;
		font-size: .88rem;
	}

	.bo-article__title {
		font-size: 2rem;
	}

	.bo-share-button {
		width: 100%;
	}

	.bo-article .pagenavigation .pagination {
		grid-template-columns: 1fr;
	}

	.bo-article .pagenavigation a.previous,
	.bo-article .pagenavigation a.next {
		grid-column: 1;
	}

	.bo-article-nav__grid {
		grid-template-columns: 1fr;
	}

	.bo-article-nav__link--next {
		grid-column: 1;
		align-items: flex-start;
		text-align: left;
	}

	.bo-share-modal__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.com-finder__form {
		padding: 14px;
	}

	.com-finder__search .input-group,
	.com-finder__filter {
		grid-template-columns: 1fr;
	}

	.com-finder__search .btn,
	.com-finder__search button {
		width: 100%;
	}

	.result__title {
		font-size: 1.1rem;
	}

	.bo-site-footer {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bo-site-footer__links {
		justify-content: center;
	}

	.bo-site-footer__contact,
	.bo-site-footer__copy {
		grid-column: 1;
		justify-self: center;
		text-align: center;
	}

	.cookie-consent {
		right: 10px;
		bottom: 10px;
		width: calc(100% - 20px);
		grid-template-columns: 1fr;
	}

	.cookie-consent button {
		width: 100%;
	}
}
