@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("/content/design/1mice/fonts/Nohemi/Web-PS/Nohemi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #09090a;
  --bg-soft: #0f1013;
  --surface: rgba(20, 21, 23, .94);
  --surface-strong: rgba(14, 15, 18, .98);
  --text: #fff;
  --muted: #a0a0a8;
  --line: rgba(255, 255, 255, .08);
  --accent: #e30613;
  --accent-strong: #ff3c47;
  --container: min(1220px, calc(100vw - 32px));
  --top-strip-height: clamp(72px, 7vw, 112px);
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .34);
  --scrollbar-track: #090a0d;
  --scrollbar-thumb: #525761;
  --scrollbar-thumb-hover: #737984;
  --font-body: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-heading: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Единый тёмный скроллбар для страницы, модальных окон и внутренних областей. */
html,
body,
* {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  border: 3px solid var(--scrollbar-track);
  border-radius: 999px;
  background: var(--scrollbar-thumb);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  min-width: 320px;
  margin: 0;
  background: linear-gradient(180deg, #060607 0%, #0a0a0c 40%, #09090a 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}

.site-header,
.site-header *,
.site-home,
.site-home *,
.site-footer,
.site-footer * {
  font-family: var(--font-body);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, .6), transparent);
  opacity: .24;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Rich-text links need a visible affordance; navigation and button links stay unchanged. */
.site-content-prose a {
  color: #ff6671;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-content-prose a:hover,
.site-content-prose a:focus {
  color: #fff;
}

button,
input,
textarea {
  font: inherit;
}

.site-container,
.site-shell {
  width: var(--container);
  margin: 0 auto;
}

.top-strip {
  position: relative;
  z-index: 120;
  height: var(--top-strip-height);
  margin-bottom: 18px;
  overflow: hidden;
  background: #071426 url("/content/design/1mice/img/top-strip.png") center 38% / cover no-repeat;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .28),
    inset 0 -1px 0 rgba(255, 60, 71, .22);
}

.top-strip::before,
.top-strip::after {
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
  content: "";
}

.top-strip::before {
  bottom: 0;
  z-index: 2;
  height: 32%;
  background: linear-gradient(180deg, rgba(5, 6, 9, 0), rgba(5, 6, 9, .22));
}

.top-strip::after {
  bottom: 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 60, 71, .66), transparent);
  box-shadow: 0 0 22px rgba(227, 6, 19, .28);
}

.top-strip__link,
.top-strip__image {
  display: block;
  width: 100%;
  height: 100%;
}

.top-strip__link {
  position: relative;
  z-index: 1;
  outline-offset: -4px;
}

.top-strip__image {
  object-fit: cover;
  object-position: center 38%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding: 10px 0;
  background: transparent;
}

.cms-has-adminbar .site-header {
  top: 40px;
}

.site-navbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 20, 24, .96), rgba(11, 13, 16, .96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-size: clamp(1.34rem, 1.18rem + .32vw, 1.56rem);
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1;
  text-decoration: none;
}

.site-logo:hover,
.site-logo:focus-visible {
  color: #fff;
  text-decoration: none;
}

.site-logo__mark {
  display: inline;
  color: var(--accent-strong);
  font-size: 1.32em;
  font-weight: 900;
  line-height: 1;
}

.site-logo__text {
  font-size: 1em;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.site-navbar__collapse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0 auto;
}

.site-nav__link {
  position: relative;
  z-index: 0;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  white-space: nowrap;
  transition: color .24s ease, background-color .24s ease;
}

.site-nav__link::before,
.site-nav__link::after {
  position: absolute;
  content: "";
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
}

.site-nav__link::before {
  inset: -4px -6px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(227, 6, 19, .24) 0%, rgba(227, 6, 19, .14) 38%, rgba(227, 6, 19, 0) 72%);
  filter: blur(10px);
  transform: scale(.88);
}

.site-nav__link::after {
  right: 10px;
  bottom: 3px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  transform: scaleX(.35);
  transform-origin: center;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.active {
  color: #fff;
}

.site-nav__link:hover::before,
.site-nav__link:focus-visible::before,
.site-nav__link.active::before,
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.active::after {
  opacity: 1;
  transform: scale(1);
}

.site-navbar__toggler {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  color: #fff;
  cursor: pointer;
}

.site-navbar__toggler span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-language-selector {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
}

.site-language-selector__button {
  margin: 0;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.site-language-selector__button:hover,
.site-language-selector__button:focus-visible,
.site-language-selector__button--active {
  color: #fff;
}

.site-language-selector__button--active {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
}

.header-button:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-button {
  min-height: 38px;
  padding: 0 16px;
  font-size: .88rem;
  white-space: nowrap;
}

.button {
  min-height: 48px;
  padding: 0 22px;
}

.button--disabled {
  cursor: default;
}

.button--disabled:hover {
  transform: none;
}

.header-button--ghost,
.button--secondary {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .02);
  color: #fff;
}

.header-button--ghost:hover,
.header-button--ghost:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 10px 24px rgba(227, 6, 19, .3);
  color: #fff;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 10px 24px rgba(227, 6, 19, .3);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible,
.marketplace-gateway__cta:hover,
.marketplace-gateway__cta:focus-visible,
.marketplace-gateway__cta:focus,
.marketplace-gateway__cta:active,
.marketplace-gateway__cta:visited,
.site-footer__actions .button--primary:hover,
.site-footer__actions .button--primary:focus-visible {
  background: linear-gradient(135deg, #d70a15, #9f040d);
  box-shadow: 0 10px 24px rgba(120, 0, 8, .36);
  color: #fff;
}

.site-home {
  color: var(--text);
}

.site-fa {
  display: inline-block;
  width: 1.25em;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-fa::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.site-fa-location-dot::before { content: "\f3c5"; }
.site-fa-calendar-days::before { content: "\f073"; }
.site-fa-user-group::before { content: "\f500"; }
.site-fa-magnifying-glass::before { content: "\f002"; }
.site-fa-hotel::before { content: "\f594"; }
.site-fa-handshake-angle::before { content: "\f4c4"; }
.site-fa-building::before { content: "\f1ad"; }
.site-fa-microchip::before { content: "\f2db"; }
.site-fa-map-location-dot::before { content: "\f5a0"; }
.site-fa-pencil::before { content: "\f303"; }
.site-fa-trash::before { content: "\f1f8"; }
.site-fa-heart::before { content: "\f004"; }
.site-fa-bullhorn::before { content: "\f0a1"; }
.site-fa-envelope::before { content: "\f0e0"; }
.site-fa-arrow-up-right-from-square::before { content: "\f35d"; }
.site-fa-circle-info::before { content: "\f05a"; }
.site-fa-share-nodes::before { content: "\f1e0"; }

.site-icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 72vh, 760px);
  padding: 32px 0 56px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, .12), rgba(7, 9, 13, .3)),
    url("/content/design/1mice/img/hero.png") center center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -40px;
  content: "";
  pointer-events: none;
  background: url("/content/design/1mice/img/hero.png") center center / cover no-repeat;
  filter: blur(34px);
  opacity: .95;
  transform: scale(1.08);
  mask-image: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, .82) 76%, #000 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, .74) 0%, rgba(5, 6, 9, .18) 24%, rgba(5, 6, 9, .14) 62%, rgba(5, 6, 9, .96) 100%),
    linear-gradient(90deg, rgba(5, 6, 9, .98) 0%, rgba(5, 6, 9, .42) 14%, rgba(5, 6, 9, .1) 30%, rgba(5, 6, 9, .1) 70%, rgba(5, 6, 9, .42) 86%, rgba(5, 6, 9, .98) 100%),
    radial-gradient(circle at center, transparent 56%, rgba(5, 6, 9, .18) 100%);
}

.hero .site-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel {
  width: min(100%, 1000px);
  padding: 65px 40px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(16, 18, 24, .34), rgba(9, 11, 15, .58)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .08), transparent 26%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  backdrop-filter: blur(7px);
  text-align: center;
}

.hero-panel__content {
  max-width: 850px;
  margin: 0 auto;
}

.hero-panel__content h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: .98;
  text-transform: uppercase;
}

.hero-panel__content h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 5vw, 4rem);
  text-shadow: 0 10px 32px rgba(0, 0, 0, .34);
}

.hero-panel__subtitle {
  max-width: 720px;
  margin: 16px auto 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .28);
}

.hero-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.hero--slider {
  background: #050609;
}

.hero--slider::before {
  content: none;
}

.hero--slider::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, .98) 0%, rgba(5, 6, 9, .64) 10%, rgba(5, 6, 9, .18) 28%, rgba(5, 6, 9, .14) 62%, rgba(5, 6, 9, .96) 100%),
    linear-gradient(90deg, rgba(5, 6, 9, .98) 0%, rgba(5, 6, 9, .42) 14%, rgba(5, 6, 9, .1) 30%, rgba(5, 6, 9, .1) 70%, rgba(5, 6, 9, .42) 86%, rgba(5, 6, 9, .98) 100%),
    radial-gradient(circle at center, transparent 56%, rgba(5, 6, 9, .18) 100%);
}

.home-hero-slider__track {
  position: absolute;
  inset: 0;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 32px 0 56px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease;
}

.home-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-hero-slide__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero-slide::before {
  position: absolute;
  inset: -40px;
  content: "";
  pointer-events: none;
  background: inherit;
  filter: blur(34px);
  opacity: .95;
  transform: scale(1.08);
  mask-image: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, .82) 76%, #000 100%);
}

.home-hero-slide .site-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-slider__dots {
  position: absolute;
  right: 0;
  bottom: 48px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
}

.home-hero-slider__dot {
  appearance: none;
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
}

.home-hero-slider__dot.is-active {
  background: linear-gradient(90deg, #ff3c47, #e30613);
  box-shadow: 0 0 18px rgba(227, 6, 19, .36);
}

.section {
  padding: 0 0 56px;
}

.section--event-pair {
  margin-top: -28px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-link,
.content-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.section-link::after,
.content-link::after {
  color: var(--accent-strong);
  content: "→";
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--events,
.grid--media {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.event-mini {
  position: relative;
  aspect-ratio: 30 / 13;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.event-placeholder {
  background: #f00;
  box-shadow: none;
}

.event-placeholder--mini {
  aspect-ratio: 30 / 13;
  min-height: 0;
}

.site-br-slot {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
}

.site-br-slot:hover,
.site-br-slot:focus {
  color: inherit;
  text-decoration: none;
}

.site-br-slot picture,
.site-br-slot img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-br-slot img {
  object-fit: cover;
  object-position: center;
}

.site-br-slot--top-wide {
  width: 100%;
  aspect-ratio: 40 / 3;
  height: auto;
  min-height: 0;
  background: #050609;
}

.site-br-slot--top-wide img {
  object-fit: cover;
}

.site-br-slot--mobile-creative {
  display: none;
}

.site-br-slot--home-event {
  aspect-ratio: 30 / 13;
  min-height: 0;
  border-radius: var(--radius-lg);
}

.site-br-slot--sidebar-square {
  aspect-ratio: 1 / 1;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.marketplace-heading {
  margin-bottom: 18px;
}

#marketplace {
  position: relative;
  z-index: 20;
}

.marketplace-strip {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(23, 24, 29, .9), rgba(15, 16, 20, .94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.marketplace-strip::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 50%, rgba(227, 6, 19, .12), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
}

.marketplace-control,
.marketplace-searchbox {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.marketplace-control {
  flex: 0 1 auto;
}

.marketplace-control.is-open,
.marketplace-searchbox:focus-within {
  z-index: 40;
}

.marketplace-searchbox {
  flex: 1 1 420px;
  min-width: 360px;
  padding-left: 8px;
}

.marketplace-strip--search-only {
  justify-content: stretch;
}

.marketplace-strip--search-only .marketplace-searchbox {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding-left: 0;
}

.marketplace-strip__divider {
  flex: 0 0 1px;
  width: 1px;
  height: 22px;
  margin: 0 8px;
  background: rgba(255, 255, 255, .1);
}

.marketplace-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 10px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background-color .24s ease, box-shadow .24s ease;
}

.marketplace-trigger:hover,
.marketplace-control.is-open .marketplace-trigger {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.marketplace-trigger__icon,
.marketplace-gateway__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marketplace-trigger__icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    radial-gradient(circle at top, rgba(227, 6, 19, .2), transparent 72%);
  color: rgba(255, 255, 255, .84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 10px 20px rgba(227, 6, 19, .08);
  transition: border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.marketplace-trigger:hover .marketplace-trigger__icon,
.marketplace-control.is-open .marketplace-trigger__icon {
  border-color: rgba(255, 67, 77, .28);
  color: #fff;
  transform: translateY(-1px);
}

.marketplace-trigger__text {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}

.marketplace-trigger__name {
  display: inline;
  color: rgba(255, 255, 255, .5);
  font-size: .92rem;
  font-weight: 600;
}

.marketplace-trigger__value {
  display: inline-block;
  overflow: hidden;
  color: #fff;
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketplace-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  width: max(100%, 320px);
  min-width: 240px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 22, 27, .98), rgba(13, 15, 20, .98));
  box-shadow: 0 20px 44px rgba(0, 0, 0, .34);
}

.marketplace-popover[hidden] {
  display: none !important;
}

.marketplace-popover--list,
.marketplace-calendar,
.marketplace-options {
  display: grid;
}

.marketplace-popover--list {
  gap: 8px;
}

.marketplace-popover__search {
  padding: 2px 0 4px;
}

.marketplace-popover__search-input {
  appearance: none;
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  color: #fff;
  font-size: .94rem;
  font-weight: 600;
  outline: none;
}

.marketplace-popover__search-input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.marketplace-popover__search-input:focus {
  border-color: rgba(227, 6, 19, .22);
  background: rgba(255, 255, 255, .05);
}

.marketplace-options {
  gap: 6px;
  max-height: 248px;
  overflow-y: auto;
  padding-right: 2px;
}

.marketplace-option {
  appearance: none;
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.marketplace-option:hover,
.marketplace-option.is-selected {
  border-color: rgba(227, 6, 19, .24);
  background: rgba(255, 255, 255, .05);
}

.marketplace-option__title {
  font-size: .95rem;
  font-weight: 700;
}

.marketplace-option__meta {
  color: rgba(255, 255, 255, .54);
  font-size: .8rem;
}

.marketplace-option--empty {
  cursor: default;
  opacity: .72;
}

.marketplace-popover--calendar {
  width: max(100%, 320px);
}

.marketplace-calendar {
  gap: 12px;
  padding: 2px;
}

.marketplace-calendar__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.marketplace-calendar__nav {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.marketplace-calendar__nav:hover {
  border-color: rgba(227, 6, 19, .22);
  background: rgba(227, 6, 19, .1);
}

.marketplace-calendar__title {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

.marketplace-calendar__weekdays,
.marketplace-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.marketplace-calendar__weekdays span {
  color: rgba(255, 255, 255, .45);
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.marketplace-calendar__weekdays span.is-weekend {
  color: rgba(255, 126, 126, .78);
}

.marketplace-calendar__empty,
.marketplace-calendar__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 12px;
}

.marketplace-calendar__day {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .02);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
}

.marketplace-calendar__day:hover,
.marketplace-calendar__day:focus-visible {
  border-color: rgba(227, 6, 19, .2);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(227, 6, 19, .08));
}

.marketplace-calendar__day.is-today {
  border-color: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 0 0 1px rgba(255, 255, 255, .04);
}

.marketplace-calendar__day.is-weekend,
.marketplace-calendar__day.is-holiday {
  color: rgba(255, 132, 132, .92);
}

.marketplace-calendar__day.is-selected {
  border-color: rgba(227, 6, 19, .4);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 118, 118, .12), transparent 70%),
    linear-gradient(180deg, rgba(227, 6, 19, .2), rgba(122, 14, 20, .26));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 22px rgba(227, 6, 19, .18);
}

.marketplace-searchbox__field {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) max-content;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 54px;
}

.marketplace-searchbox__input {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  outline: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .038), rgba(255, 255, 255, .014));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 12px 26px rgba(227, 6, 19, .08);
  color: #fff;
  font-size: .96rem;
  font-weight: 600;
}

.marketplace-searchbox input.marketplace-searchbox__input[type="search"] {
  box-sizing: border-box;
}

.marketplace-searchbox__input::placeholder {
  color: rgba(255, 255, 255, .36);
}

.marketplace-searchbox__button {
  appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 132px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 67, 77, .18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 67, 77, .22), rgba(227, 6, 19, .1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 14px 28px rgba(227, 6, 19, .18);
  color: #fff;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}

.marketplace-searchbox__button:hover,
.marketplace-searchbox__button:focus-visible {
  border-color: rgba(255, 67, 77, .34);
  background: linear-gradient(135deg, rgba(215, 10, 21, .42), rgba(159, 4, 13, .3));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 14px 28px rgba(120, 0, 8, .28);
  color: rgba(255, 255, 255, .82);
  transform: translateY(-1px);
}

.marketplace-searchbox__button-label {
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

.marketplace-gateway {
  width: 100%;
  margin: 16px auto 0;
}

.marketplace-gateway__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.marketplace-gateway__tile {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 138px;
  padding: 18px 12px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(28, 30, 36, .9), rgba(18, 20, 25, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 10px 24px rgba(0, 0, 0, .18);
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.marketplace-gateway__tile::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 34%),
    radial-gradient(circle at top, rgba(227, 6, 19, .16), transparent 62%);
}

.marketplace-gateway__tile:hover {
  border-color: rgba(255, 67, 77, .32);
  transform: translateY(-2px);
}

.marketplace-gateway__icon {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 67, 77, .24), rgba(227, 6, 19, .08)),
    radial-gradient(circle at top, rgba(255, 255, 255, .1), transparent 70%);
  color: #fff;
  filter: drop-shadow(0 10px 18px rgba(227, 6, 19, .2));
}

.marketplace-gateway__icon .site-fa {
  font-size: 1.55rem;
}

.marketplace-gateway__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.marketplace-gateway__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 30px rgba(227, 6, 19, .24);
  color: #fff !important;
  font-size: .92rem;
  font-weight: 800;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
  text-decoration: none;
}

.marketplace-gateway__cta:link,
.marketplace-gateway__cta:visited,
.marketplace-gateway__cta:hover,
.marketplace-gateway__cta:focus,
.marketplace-gateway__cta:focus-visible,
.marketplace-gateway__cta:active {
  color: #fff !important;
  text-decoration: none;
}

.event-card,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(18, 20, 24, .96), rgba(11, 12, 15, .98));
  box-shadow: var(--shadow);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.event-card::before,
.article-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(227, 6, 19, .02)),
    radial-gradient(circle at 85% 15%, rgba(227, 6, 19, .12), transparent 18%);
}

.event-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.event-card:hover,
.article-card:hover {
  border-color: rgba(227, 6, 19, .28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .46), 0 0 0 1px rgba(227, 6, 19, .12);
  transform: translateY(-4px);
}

.event-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #0d1118;
  isolation: isolate;
}

.event-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.event-card__media::after,
.article-card__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, .18) 0%, rgba(6, 8, 11, .08) 30%, rgba(6, 8, 11, .88) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 85, 97, .22), transparent 24%);
}

.event-card__image,
.article-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card--tech .event-card__image {
  object-position: 86% 50%;
  filter: saturate(1.06) hue-rotate(14deg);
}

.event-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 1.9vw, 1.62rem);
  line-height: 1;
  text-transform: uppercase;
}

.event-card__body,
.article-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.event-card__body {
  gap: 10px;
  padding: 16px 18px 18px;
}

.event-card__meta,
.event-card__meta-line,
.event-card__text {
  margin: 0;
}

.event-card__meta {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 500;
}

.event-card__meta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-card__meta-icon {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  color: rgba(255, 60, 71, .8);
  font-size: 10px;
  line-height: 1;
}

.event-card__text,
.article-card p,
.cta-panel__text,
.site-footer__text {
  color: var(--muted);
}

.event-card__text {
  font-size: .92rem;
  line-height: 1.45;
}

.event-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
}

.article-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0d1118;
}

.site-news-video-preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  background: #05070b;
}

.site-news-video-preview__embed,
.site-news-video-preview__embed > div,
.site-news-video-preview__embed iframe,
.site-news-video-preview__embed video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.site-news-video-preview__embed iframe,
.site-news-video-preview__embed video {
  border: 0;
  pointer-events: none;
}

.site-news-video-preview__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, .16), rgba(5, 7, 10, .48)),
    radial-gradient(circle at 50% 50%, rgba(227, 6, 19, .18), transparent 34%);
}

.article-card__body {
  gap: 12px;
  padding: 18px 18px 20px;
}

.article-card__meta {
  margin: 0;
  color: var(--accent-strong);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.14;
}

.article-card h3 a {
  color: inherit;
}

.article-card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.48;
}

.article-card .article-card__meta {
  color: var(--accent-strong);
}

.section--community .site-container {
  display: grid;
  gap: 24px;
}

.section--partners .site-container {
  display: grid;
  gap: 24px;
}

.community-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.site-home .section--community .community-strip:not(.site-speakers-strip) {
  width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.community-member {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
}

.community-member.site-speaker-trigger {
  cursor: pointer;
}

.community-member.site-speaker-trigger:focus {
  outline: none;
}

.community-member.site-speaker-trigger:focus-visible .community-member__avatar {
  border-color: rgba(227, 6, 19, .98);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .18), 0 18px 34px rgba(0, 0, 0, .34);
}

.community-member__avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 8px;
  overflow: hidden;
  border: 2px solid rgba(120, 18, 24, .92);
  border-radius: 50%;
  background: #1b1d24;
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .08), 0 14px 28px rgba(0, 0, 0, .28);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
  isolation: isolate;
}

.community-member__avatar::after {
  position: absolute;
  inset: 8px;
  z-index: 1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05));
  opacity: 0;
  transition: opacity .28s ease;
}

.community-member__avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.community-member__placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 60, 71, .32), transparent 34%),
    radial-gradient(circle at 78% 76%, rgba(227, 6, 19, .24), transparent 42%),
    linear-gradient(135deg, #141720, #08090d 54%, #26080d);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.community-member__placeholder::before {
  display: none;
}

.community-member:hover .community-member__avatar {
  border-color: rgba(227, 6, 19, .98);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .14), 0 18px 34px rgba(0, 0, 0, .34), 0 0 22px rgba(227, 6, 19, .16);
  transform: translateY(-4px);
}

.community-member:hover .community-member__avatar::after {
  opacity: 1;
}

.community-member__avatar:has(.community-member__placeholder)::after {
  display: none;
}

.community-member:hover .community-member__avatar-image {
  filter: contrast(1.04) brightness(1.03);
  transform: scale(1.08);
}

.community-member__name,
.community-member__role,
.community-member__company {
  margin: 0;
}

.community-member__name {
  font-size: 1.05rem;
  line-height: 1.05;
}

.community-member__role {
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
  line-height: 1.15;
}

.community-member__compy {
    position: relative;
    top: -8px;
}

.community-member__company {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.15;
}

.partners-carousel-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.partners-carousel {
  align-items: start;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.partners-carousel:not(.owl-loaded) {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.partners-carousel.owl-loaded {
  display: block;
}

.partners-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.partners-carousel--centered .owl-stage {
  margin-left: auto;
  margin-right: auto;
}

.partners-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.partner-logo {
  display: grid;
  align-items: center;
  align-content: start;
  justify-content: center;
  justify-items: center;
  gap: 8px;
  width: 100%;
  min-height: 96px;
  padding: 18px 20px;
  opacity: 1;
  filter: grayscale(1) brightness(1);
  text-align: center;
  transition: opacity .24s ease, transform .24s ease, filter .55s cubic-bezier(.22, 1, .36, 1);
}

.partner-logo:hover,
.partner-logo:focus-visible {
  color: #fff;
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: translateY(-2px);
}

.partner-logo__wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  color: #fff;
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-logo__image {
  display: block;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 24px 32px;
  width: 100%;
  padding: 28px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 24%, rgba(227, 6, 19, .14), transparent 18%),
    linear-gradient(180deg, rgba(20, 21, 24, .96), rgba(11, 12, 15, .98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 18px 48px rgba(0, 0, 0, .28);
  text-align: left;
}

.cta-panel::before {
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0), rgba(227, 6, 19, .46), rgba(227, 6, 19, 0));
  content: "";
}

.cta-panel__content {
  display: grid;
  gap: 10px;
}

.cta-panel h2 {
  line-height: 1.02;
  text-transform: none;
}

.cta-panel__text {
  max-width: 50ch;
  margin: 0;
  font-size: .96rem;
  line-height: 1.45;
}

.cta-panel__actions {
  display: grid;
  gap: 10px;
  min-width: 228px;
}

.cta-panel__button {
  min-width: 228px;
  min-height: 46px;
  padding: 0 20px;
  font-size: .88rem;
}

.site-footer {
  padding: 0 0 24px;
}

.site-footer__panel {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
}

.site-footer__brand,
.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__navigation {
  display: contents;
}

.site-footer .site-logo {
  font-size: 1.12rem;
  letter-spacing: .06em;
}

.site-footer__text {
  max-width: 52ch;
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
}

.site-footer__lead {
  max-width: 38ch;
  margin: 0;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer__meta {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px 56px;
}

.site-footer__link,
.site-footer__contact-link,
.site-footer__external-link {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
  font-weight: 600;
  transition: color .24s ease;
}

.site-footer__link:hover,
.site-footer__contact-link:hover,
.site-footer__external-link:hover,
.site-footer__link:focus-visible,
.site-footer__contact-link:focus-visible,
.site-footer__external-link:focus-visible {
  color: #fff;
}

.site-footer__contact-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: .94rem;
  font-weight: 700;
}

.site-footer__contact-link .site-fa {
  flex: 0 0 auto;
  font-size: .9em;
}

.site-footer__external-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .8);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__external-link .site-fa {
  flex: 0 0 auto;
  font-size: .9em;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.site-footer__badge-link,
.cms-has-adminbar .site-footer__badge-link,
.cms-has-adminbar .site-footer__badge-link:visited {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  color: var(--muted) !important;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.site-footer__badge-link:hover,
.site-footer__badge-link:focus-visible,
.cms-has-adminbar .site-footer__badge-link:hover,
.cms-has-adminbar .site-footer__badge-link:focus {
  border-color: rgba(255, 60, 71, .35);
  background: rgba(227, 6, 19, .08);
  color: #fff !important;
  outline: none;
}

@media (min-width: 992px) {
  .site-footer__inner {
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    gap: 0;
  }

  .site-footer__ecosystem-line {
    display: block;
  }

  .site-footer__column--cta {
    justify-self: end;
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    margin-right: 33px;
    text-align: left;
  }
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__actions .button {
  min-height: 40px;
  padding: 0 16px;
  font-size: .84rem;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  font-size: .82rem;
}

.site-footer__advertising-link,
.site-content-dark .site-footer__advertising-link,
.site-content-dark .site-footer__advertising-link:visited,
.cms-has-adminbar .site-footer__advertising-link,
.cms-has-adminbar .site-footer__advertising-link:visited {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  max-width: 100%;
  gap: 7px;
  color: #ef3945 !important;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer__advertising-link .site-fa {
  flex: 0 0 auto;
  font-size: .9em;
}

.site-footer__advertising-link:hover,
.site-footer__advertising-link:focus-visible,
.site-content-dark .site-footer__advertising-link:hover,
.site-content-dark .site-footer__advertising-link:focus,
.cms-has-adminbar .site-footer__advertising-link:hover,
.cms-has-adminbar .site-footer__advertising-link:focus {
  color: #ff5963 !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer__advertising-link:focus-visible {
  outline: none;
}

.advertising-shop.modal {
  --advertising-modal-top-gap: 16px;
  --advertising-modal-bottom-gap: 16px;
  z-index: 65050;
  height: 100vh;
  height: 100dvh;
  padding: var(--advertising-modal-top-gap) 0 var(--advertising-modal-bottom-gap);
  overflow: hidden;
  box-sizing: border-box;
  color: #f5f5f5;
}

.cms-has-adminbar .advertising-shop.modal {
  --advertising-modal-top-gap: 54px;
  --advertising-modal-bottom-gap: 14px;
}

.advertising-shop .advertising-shop__dialog {
  width: 1020px !important;
  height: calc(100vh - var(--advertising-modal-top-gap) - var(--advertising-modal-bottom-gap));
  height: calc(100dvh - var(--advertising-modal-top-gap) - var(--advertising-modal-bottom-gap));
  max-width: calc(100vw - 32px) !important;
  margin: 0 auto;
}

.advertising-shop .advertising-shop__content {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 60, 71, .28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 4% 0%, rgba(227, 6, 19, .12), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(227, 6, 19, .07), transparent 40%),
    linear-gradient(145deg, rgba(16, 18, 23, .995), rgba(5, 6, 9, .995) 64%, rgba(15, 5, 8, .99));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .68), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.advertising-shop .advertising-shop__content::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 64%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #ff3c47, rgba(227, 6, 19, .28) 36%, transparent);
  pointer-events: none;
}

.advertising-shop .advertising-shop__header {
  position: relative;
  flex: 0 0 auto;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: transparent;
}

.advertising-shop .advertising-shop__form {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.advertising-shop__eyebrow {
  display: block;
  margin: 0 0 7px;
  color: #ff4a54;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.advertising-shop .advertising-shop__title {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.15;
}

.advertising-shop__intro {
  max-width: 680px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: .94rem;
  line-height: 1.5;
}

.advertising-shop .advertising-shop__close {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 2;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 34px;
  text-shadow: none;
  opacity: .82;
}

.advertising-shop .advertising-shop__close:hover,
.advertising-shop .advertising-shop__close:focus {
  border: 0;
  background: transparent;
  color: #ff4a54;
  box-shadow: none;
  opacity: 1;
  outline: none;
}

.advertising-shop .advertising-shop__body {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: 24px 28px 28px;
  overflow-x: hidden;
  overflow-y: auto;
  background: transparent;
}

.advertising-shop__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: start;
  gap: 22px;
}

.advertising-shop__main {
  min-width: 0;
}

.advertising-shop__section + .advertising-shop__section {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.advertising-shop__section-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 16px;
}

.advertising-shop__step {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 60, 71, .42);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(227, 6, 19, .22), rgba(227, 6, 19, .08));
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(227, 6, 19, .1);
}

.advertising-shop__section-head h3 {
  margin: 1px 0 3px;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.2;
}

.advertising-shop__section-head p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
  line-height: 1.4;
}

.advertising-shop__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.advertising-product {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
  cursor: pointer;
}

.advertising-product > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.advertising-product__card {
  display: flex;
  min-height: 190px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  color: #fff;
  flex-direction: column;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.advertising-product:hover .advertising-product__card {
  border-color: rgba(255, 255, 255, .22);
  transform: translateY(-2px);
}

.advertising-product > input:focus-visible + .advertising-product__card,
.advertising-product > input:checked + .advertising-product__card {
  border-color: rgba(255, 60, 71, .72);
  background:
    radial-gradient(circle at 0 0, rgba(255, 60, 71, .15), transparent 48%),
    linear-gradient(160deg, rgba(227, 6, 19, .095), rgba(255, 255, 255, .025));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 60, 71, .12);
}

.advertising-product__visual {
  position: relative;
  display: block;
  height: 56px;
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 7px;
  background: #090a0d;
}

.advertising-product__visual i {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 60, 71, .48);
  border-radius: 3px;
  background: linear-gradient(120deg, rgba(255, 60, 71, .82), rgba(121, 2, 10, .42));
  box-shadow: 0 0 14px rgba(227, 6, 19, .18);
}

.advertising-product__visual--top i {
  top: 10px;
  right: 8px;
  left: 8px;
  height: 12px;
}

.advertising-product__visual--lower i {
  top: 25px;
  width: calc(50% - 11px);
  height: 24px;
}

.advertising-product__visual--lower i:first-child { left: 8px; }
.advertising-product__visual--lower i:last-child { right: 8px; }

.advertising-product__visual--side i {
  right: 9px;
  width: 18px;
  height: 22px;
}

.advertising-product__visual--side i:first-child { top: 8px; }
.advertising-product__visual--side i:last-child { bottom: 8px; }

.advertising-product__card > strong {
  color: #fff;
  font-size: .94rem;
  font-weight: 850;
}

.advertising-product__card > small {
  min-height: 36px;
  margin: 4px 0 10px;
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
  line-height: 1.35;
}

.advertising-product__card > b {
  margin-top: auto;
  color: #ff4a54;
  font-size: 1rem;
  font-weight: 900;
}

.advertising-product__card > b em {
  color: rgba(255, 255, 255, .42);
  font-size: .65rem;
  font-style: normal;
  font-weight: 650;
}

.advertising-shop__slot-selector {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 60, 71, .2);
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(227, 6, 19, .065), rgba(255, 255, 255, .025));
}

.advertising-shop__slot-selector[hidden],
.advertising-shop__slot-note[hidden] {
  display: none !important;
}

.advertising-shop__slot-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.advertising-shop__slot-head strong {
  color: #fff;
  font-size: .8rem;
  font-weight: 850;
}

.advertising-shop__slot-head span {
  color: rgba(255, 255, 255, .42);
  font-size: .68rem;
  font-weight: 650;
}

.advertising-shop__slot-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.advertising-slot {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
  cursor: pointer;
}

.advertising-slot > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.advertising-slot > span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 1px 8px;
  min-height: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  background: rgba(7, 9, 12, .58);
  box-sizing: border-box;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.advertising-slot > span > i {
  display: inline-flex;
  grid-row: 1 / 3;
  align-self: center;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 60, 71, .34);
  border-radius: 7px;
  background: rgba(227, 6, 19, .1);
  color: #ff5962;
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
}

.advertising-slot > span > b {
  align-self: end;
  color: rgba(255, 255, 255, .86);
  font-size: .76rem;
  font-weight: 820;
}

.advertising-slot > span > small {
  align-self: start;
  overflow: hidden;
  color: rgba(255, 255, 255, .4);
  font-size: .62rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.advertising-slot:hover > span {
  border-color: rgba(255, 255, 255, .2);
}

.advertising-slot > input:focus-visible + span,
.advertising-slot > input:checked + span {
  border-color: rgba(255, 60, 71, .65);
  background: rgba(227, 6, 19, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 60, 71, .08);
}

.advertising-slot > input:checked + span > i {
  background: linear-gradient(145deg, #ff3c47, #b4050e);
  color: #fff;
}

.advertising-shop__slot-note {
  margin: 7px 2px 0;
  color: rgba(255, 255, 255, .43);
  font-size: .65rem;
  line-height: 1.35;
}

.advertising-shop__period,
.advertising-shop__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.advertising-shop__field {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  gap: 7px;
}

.advertising-shop__field--wide {
  grid-column: 1 / -1;
}

.advertising-shop__field > span,
.advertising-shop__field > label {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  font-weight: 750;
}

.advertising-shop__field > span small {
  color: rgba(255, 255, 255, .36);
  font-weight: 600;
}

.advertising-shop__required {
  color: #ff5963;
  font-style: normal;
}

.site-required-mark {
  color: #ff5963;
  font-style: normal;
  font-weight: 900;
}

.site-validation-anchor {
  position: relative;
}

.site-validation-control.is-invalid {
  border-color: rgba(255, 74, 84, .82) !important;
  box-shadow: 0 0 0 3px rgba(255, 74, 84, .12) !important;
}

.site-dark-validation-hint {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 65100;
  width: max-content;
  max-width: min(300px, calc(100vw - 40px));
  padding: 9px 11px;
  border: 1px solid rgba(255, 74, 84, .5);
  border-radius: 7px;
  background: #141820;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
  color: #f2f4f8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.site-dark-validation-hint::before {
  position: absolute;
  top: -6px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(255, 74, 84, .5);
  border-left: 1px solid rgba(255, 74, 84, .5);
  background: #141820;
  content: "";
  transform: rotate(45deg);
}

.advertising-date-picker {
  position: relative;
}

.advertising-date-picker__control {
  position: relative;
  display: block;
}

.advertising-date-picker__control input {
  padding-right: 46px;
}

.advertising-date-picker__trigger {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  transform: translateY(-50%);
}

.advertising-date-picker__trigger:hover,
.advertising-date-picker__trigger:focus {
  background: transparent;
  color: #fff;
  outline: none;
}

.advertising-date-picker__popup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 65060;
  width: min(340px, calc(100vw - 56px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 9px;
  background: #151922;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .52);
  color: #eef1f7;
  box-sizing: border-box;
}

.advertising-date-picker__popup[hidden] {
  display: none;
}

.advertising-date-picker__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 8px;
  margin-bottom: 9px;
}

.advertising-date-picker__head select {
  min-width: 0;
  width: 100%;
  height: 38px;
  padding: 0 30px 0 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 7px;
  background: #111620;
  color: #eef1f7;
  font: inherit;
  font-size: .84rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  outline: none;
}

.advertising-date-picker__head select:focus {
  border-color: rgba(255, 74, 84, .65);
  box-shadow: 0 0 0 2px rgba(255, 74, 84, .12);
}

.advertising-date-picker__weekdays,
.advertising-date-picker__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.advertising-date-picker__weekdays {
  margin-bottom: 4px;
  border-radius: 7px;
  background: #1d2330;
}

.advertising-date-picker__weekdays span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  color: #eef1f7;
  font-size: .78rem;
  font-weight: 800;
}

.advertising-date-picker__days button {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #eef1f7;
  font-size: .82rem;
  font-weight: 750;
}

.advertising-date-picker__days button:hover,
.advertising-date-picker__days button:focus {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  outline: none;
}

.advertising-date-picker__days button.is-muted {
  color: rgba(238, 241, 247, .34);
}

.advertising-date-picker__days button.is-today {
  box-shadow: inset 0 0 0 1px rgba(255, 74, 84, .48);
}

.advertising-date-picker__days button.is-selected {
  background: #d92d39;
  box-shadow: none;
  color: #fff;
}

.advertising-date-picker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}

.advertising-date-picker__footer button {
  width: auto;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7ec4ff;
  font-size: .78rem;
  font-weight: 700;
}

.advertising-date-picker__footer button:hover,
.advertising-date-picker__footer button:focus {
  background: transparent;
  color: #fff;
  outline: none;
}

.advertising-shop__field input {
  width: 100%;
  min-width: 0;
  height: 43px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: #12151b;
  box-sizing: border-box;
  color: #fff;
  color-scheme: dark;
  font-family: inherit;
  font-size: .82rem;
  outline: none;
}

.advertising-shop__field input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.advertising-shop__field input:focus {
  border-color: rgba(255, 60, 71, .68);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .1);
}

.advertising-shop__counter {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: #12151b;
}

.advertising-shop__counter input {
  height: 41px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  appearance: textfield;
}

.advertising-shop__counter input::-webkit-inner-spin-button,
.advertising-shop__counter input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.advertising-shop__counter button {
  border: 0;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .74);
  font-size: 1.2rem;
  font-weight: 500;
}

.advertising-shop__counter button:first-child { border-right: 1px solid rgba(255, 255, 255, .1); }
.advertising-shop__counter button:last-child { border-left: 1px solid rgba(255, 255, 255, .1); }

.advertising-shop__counter button:hover,
.advertising-shop__counter button:focus {
  background: rgba(227, 6, 19, .12);
  color: #fff;
  outline: none;
}

.advertising-shop__summary {
  position: sticky;
  top: 0;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 60, 71, .27);
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(255, 60, 71, .16), transparent 5px),
    linear-gradient(145deg, rgba(227, 6, 19, .09), rgba(255, 255, 255, .035));
  box-shadow: 0 20px 46px rgba(0, 0, 0, .28);
}

.advertising-shop__summary::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, #ff3c47, rgba(227, 6, 19, .26));
}

.advertising-shop__summary-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .43);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.advertising-shop__summary-title {
  display: block;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
}

.advertising-shop__summary dl {
  margin: 18px 0 0;
}

.advertising-shop__summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.advertising-shop__summary dt,
.advertising-shop__summary dd {
  margin: 0;
  font-size: .74rem;
  line-height: 1.35;
}

.advertising-shop__summary dt {
  color: rgba(255, 255, 255, .43);
  font-weight: 650;
}

.advertising-shop__summary dd {
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
  text-align: right;
}

.advertising-shop__promo {
  margin-top: 17px;
}

.advertising-shop__promo > label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .7);
  font-size: .74rem;
  font-weight: 800;
}

.advertising-shop__promo > label small {
  color: rgba(255, 255, 255, .36);
  font-size: .64rem;
  font-weight: 600;
}

.advertising-shop__promo > input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: #12151b;
  box-sizing: border-box;
  color: #fff;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .03em;
  outline: none;
  text-transform: uppercase;
}

.advertising-shop__promo > input::placeholder {
  color: rgba(255, 255, 255, .3);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.advertising-shop__promo > input:focus,
.advertising-shop__promo > input.is-checking {
  border-color: rgba(126, 196, 255, .6);
  box-shadow: 0 0 0 3px rgba(126, 196, 255, .1);
}

.advertising-shop__promo > input.is-valid {
  border-color: rgba(84, 208, 139, .7);
  box-shadow: 0 0 0 3px rgba(84, 208, 139, .1);
}

.advertising-shop__promo > input.is-error {
  border-color: rgba(255, 74, 84, .75);
  box-shadow: 0 0 0 3px rgba(255, 74, 84, .1);
}

.advertising-shop__promo-status {
  position: relative;
  margin: 8px 0 0;
  padding-left: 15px;
  color: rgba(255, 255, 255, .55);
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.4;
}

.advertising-shop__promo-status::before {
  position: absolute;
  top: .42em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.advertising-shop__promo-status.is-checking { color: #7ec4ff; }
.advertising-shop__promo-status.is-success { color: #8ee6b5; }
.advertising-shop__promo-status.is-error { color: #ffabab; }

.advertising-shop__price-breakdown {
  margin-top: 14px;
}

.advertising-shop__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
  line-height: 1.35;
}

.advertising-shop__price-row[hidden] {
  display: none;
}

.advertising-shop__price-row s,
.advertising-shop__price-row strong {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .68);
  font-weight: 800;
  text-align: right;
}

.advertising-shop__price-row--discount,
.advertising-shop__price-row--discount strong {
  color: #8ee6b5;
}

.advertising-shop__total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 20px;
}

.advertising-shop__total > span {
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  font-weight: 750;
}

.advertising-shop__total > strong {
  color: #ff4a54;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
  text-align: right;
}

.advertising-shop .advertising-shop__submit {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: .72rem;
  text-transform: uppercase;
}

.advertising-shop .advertising-shop__submit[disabled] {
  cursor: not-allowed;
  filter: grayscale(.35);
  opacity: .5;
  transform: none;
}

.advertising-shop__offer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 12px;
  font-size: 13px;
  line-height: 1.45;
}

.advertising-shop__offer input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.advertising-shop__offer a {
  color: inherit;
  text-decoration: underline;
}

.advertising-shop__document-note[hidden] {
  display: none;
}

.advertising-shop__document-note.is-success {
  color: #8ee6b5;
}

.advertising-shop__document-note.is-error {
  color: #ffabab;
}

.cms-br-requests-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#brRequests .cms-br-list-title {
  margin-top: 0;
}

.cms-br-request-views {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(14, 16, 21, .82);
}

.cms-br-request-views__link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 7px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cms-br-request-views__link:hover,
.cms-br-request-views__link:focus,
.cms-br-request-views__link.is-active {
  background: rgba(255, 255, 255, .09);
  color: #fff;
  text-decoration: none;
}

.cms-br-request-views__link.is-active {
  box-shadow: inset 0 0 0 1px rgba(227, 6, 19, .55);
}

.cms-br-request-views__link span {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 11px;
}

.cms-br-request-controls {
  display: grid;
  min-width: 145px;
  gap: 8px;
}

.cms-br-request-action-form {
  margin: 0;
}

.cms-br-request-action {
  display: inline-flex;
  width: 100%;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 5px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.cms-br-request-action:hover,
.cms-br-request-action:focus {
  border-color: rgba(255, 60, 71, .52);
  background: rgba(227, 6, 19, .09);
  color: #ff5964;
  outline: none;
}

.cms-br-request-action--archive {
  color: rgba(255, 255, 255, .64);
}

.cms-br-request-controls small {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, .46);
  line-height: 1.35;
  text-align: center;
}

.cms-br-request-status-label {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 750;
}

.cms-br-requests-table {
  min-width: 1080px !important;
  table-layout: fixed;
}

.cms-br-requests-table th:nth-child(1) { width: 11%; }
.cms-br-requests-table th:nth-child(2) { width: 18%; }
.cms-br-requests-table th:nth-child(3) { width: 24%; }
.cms-br-requests-table th:nth-child(4) { width: 19%; }
.cms-br-requests-table th:nth-child(5) { width: 13%; }
.cms-br-requests-table th:nth-child(6) { width: 15%; }

.cms-br-requests-table td {
  min-width: 130px;
  line-height: 1.45;
}

.cms-br-requests-table td:nth-child(2),
.cms-br-requests-table td:nth-child(3) {
  min-width: 210px;
}

.cms-br-requests-table td:nth-child(3),
.cms-br-requests-table td:nth-child(4) {
  overflow-wrap: anywhere;
}

.cms-br-requests-table td:nth-child(4) a[href^="tel:"] {
  white-space: nowrap;
}

.cms-br-requests-table small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.35;
}

.cms-br-request-promo {
  display: block;
  margin-top: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9be9bd;
  font-size: 11px;
  line-height: 1.35;
}

.cms-br-page .cms-br-requests-table .cms-br-request-promo b {
  color: #fff;
  font-size: 11px;
  line-height: inherit;
  letter-spacing: .03em;
}

.cms-br-request-promo strong {
  color: #9be9bd;
  font-weight: 800;
  white-space: nowrap;
}

.cms-br-request-price {
  display: grid;
  justify-items: start;
  gap: 2px;
  margin-top: 6px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
}

.cms-br-request-price s,
.cms-br-request-price b {
  display: block;
  white-space: nowrap;
}

.cms-br-request-price b {
  color: #fff;
  font-size: 12px;
}

.cms-br-requests-table a {
  overflow-wrap: anywhere;
}

.cms-br-request-status {
  display: grid;
  min-width: 145px;
  gap: 7px;
}

.cms-br-request-status .form-control,
.cms-br-request-status .btn {
  width: 100%;
}

@media (max-width: 560px) {
  .cms-br-requests-head {
    align-items: stretch;
    flex-direction: column;
  }

  .cms-br-request-views {
    display: flex;
  }

  .cms-br-request-views__link {
    flex: 1 1 50%;
    justify-content: center;
  }
}

.advertising-shop__document-note {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 7px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, .42);
  font-size: .66rem;
  line-height: 1.45;
}

body.advertising-shop-open .modal-backdrop {
  z-index: 65040;
  background: rgba(3, 4, 6, .78);
  opacity: 1 !important;
  backdrop-filter: blur(6px) saturate(.72);
}

@media (max-width: 900px) {
  .advertising-shop__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .advertising-shop__summary {
    position: relative;
  }
}

@media (max-width: 680px) {
  .advertising-shop.modal {
    --advertising-modal-top-gap: 8px;
    --advertising-modal-bottom-gap: 8px;
  }

  .cms-has-adminbar .advertising-shop.modal {
    --advertising-modal-top-gap: 48px;
    --advertising-modal-bottom-gap: 8px;
  }

  .advertising-shop .advertising-shop__dialog {
    max-width: calc(100vw - 16px) !important;
  }

  .advertising-shop .advertising-shop__header {
    padding: 23px 20px 18px;
  }

  .advertising-shop .advertising-shop__title {
    max-width: calc(100% - 42px);
    font-size: 1.3rem;
  }

  .advertising-shop .advertising-shop__close {
    top: 17px;
    right: 16px;
  }

  .advertising-shop .advertising-shop__body {
    padding: 20px;
  }

  .advertising-shop__products,
  .advertising-shop__slot-options,
  .advertising-shop__period,
  .advertising-shop__fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .advertising-shop__field--wide {
    grid-column: auto;
  }

  .advertising-product__card {
    min-height: 0;
  }

  .advertising-product__card > small {
    min-height: 0;
  }
}

.site-content-page {
  color: var(--text);
  background: transparent;
}

.site-content-dark {
  position: relative;
  min-height: 420px;
  padding: 72px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(227, 6, 19, .12), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 60, 71, .08), transparent 24%),
    linear-gradient(180deg, #060607 0%, #0a0b0e 46%, #070708 100%) !important;
  color: rgba(255, 255, 255, .9);
}

.site-content-dark::before {
  content: none;
}

.site-content-dark::after {
  content: none;
}

.site-content-dark.content > br {
  display: none;
}

.site-content-dark .container,
.site-content-dark .container-fluid {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: min(1220px, calc(100vw - 32px));
  padding-right: 0;
  padding-left: 0;
}

.site-content-dark > .container-fluid > .row:first-child {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.site-content-dark > .container-fluid > .row:first-child > [class*="col-"] {
  float: none;
  width: min(100%, 1080px);
  padding-right: 0;
  padding-left: 0;
}

.site-content-dark > .container-fluid > .row:first-child > [class*="col-"]:has(.site-news-share) {
  width: 100%;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
  margin-right: 0;
  margin-left: 0;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > [class*="col-"] {
  float: none;
  width: auto;
  min-width: 0;
  padding-right: 0;
  padding-left: 0;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-mobile-menu {
  display: none !important;
  grid-column: 1 / -1;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-main-column {
  grid-column: 1;
  grid-row: 1;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column {
  grid-column: 2;
  grid-row: 1;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > [class*="col-"] > br:first-child {
  display: none;
}

.site-content-dark .page-title {
  position: relative;
  max-width: 1080px;
  margin: 0 0 18px !important;
  padding-bottom: 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .42);
}

.site-content-dark .page-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(128px, 28vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent), transparent);
  box-shadow: 0 0 22px rgba(227, 6, 19, .34);
  content: "";
}

.site-content-dark h1,
.site-content-dark h2,
.site-content-dark h3,
.site-content-dark h4,
.site-content-dark h5,
.site-content-dark h6 {
  color: #fff !important;
  font-family: var(--font-heading);
}

.site-content-dark p,
.site-content-dark li,
.site-content-dark td,
.site-content-dark th,
.site-content-dark .media-body {
  color: rgba(255, 255, 255, .78);
}

.media {
  display: flex;
  align-items: center;
  gap: 25px;
}

.media-left {
  flex: 0 0 auto;
}

.media-body {
  flex: 1 1 auto;
}

.media-left img {
  display: block;
  width: 150px;
  height: 100px;
  object-fit: cover;
}


.site-content-dark .bvi-speech {
  display: block;
}

.site-content-dark .bvi-speech p,
.site-content-dark .bvi-speech li,
.site-content-dark .panel-collapse p,
.site-content-dark .panel-collapse li {
  font-size: clamp(1rem, .95rem + .18vw, 1.08rem);
  line-height: 1.72;
}

.site-content-dark .bvi-speech p,
.site-content-dark .panel-collapse p {
  margin: 0 0 20px;
}

.site-content-dark .bvi-speech b,
.site-content-dark .bvi-speech strong,
.site-content-dark .panel-collapse b,
.site-content-dark .panel-collapse strong {
  color: rgba(255, 255, 255, .94);
  font-weight: 800;
}

.site-content-dark .bvi-speech > .panel > .row > .col-xs-12 > div {
  padding: 0 !important;
}

.site-content-dark a {
  color: #fff;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.site-content-dark a:hover,
.site-content-dark a:focus {
  color: var(--accent-strong);
}

.site-content-dark .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 !important;
  padding: 0;
  background: transparent;
  color: var(--muted);
  list-style: none;
}

.site-content-dark .breadcrumb > li {
  padding-left: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .95rem;
  font-weight: 700;
}

.site-content-dark .breadcrumb > li::before {
  content: none;
}

.site-content-dark .breadcrumb > li + li::before {
  display: inline-block;
  padding-right: 12px;
  color: rgba(255, 60, 71, .82);
  content: "/";
}

.site-content-dark .breadcrumb > .active {
  color: rgba(255, 255, 255, .72);
}

.site-content-dark .breadcrumb a {
  color: rgba(255, 255, 255, .9);
}

.site-content-dark .breadcrumb a:hover,
.site-content-dark .breadcrumb a:focus {
  color: var(--accent-strong);
}

.site-page-tags .site-page-tag-link,
.kl-blog-post-details .site-page-tag-link {
  display: inline-block;
  text-transform: lowercase;
}

.site-page-tags .site-page-tag-link::first-letter,
.kl-blog-post-details .site-page-tag-link::first-letter {
  text-transform: uppercase;
}

.site-error-page {
  min-height: 640px;
}

.site-error {
  position: relative;
  display: block;
  max-width: 1080px;
  padding: 8px 0 92px;
}

.site-error__hero {
  max-width: 900px;
  padding: 0;
}

.site-error__hero::before {
  display: none;
}

.site-error__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .62);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.site-error__hero .page-title {
  max-width: 850px;
  margin-bottom: 22px !important;
  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
  line-height: .98;
}

.site-error__lead {
  max-width: 700px;
  margin: 26px 0 16px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.98rem, .9rem + .25vw, 1.12rem);
  font-weight: 600;
  line-height: 1.45;
}

.site-error__home {
  margin-top: 6px;
}

.site-error__map {
  margin-top: 56px;
  padding: 0;
}

.site-error__map h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.site-error__map ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-error__map ul ul {
  grid-template-columns: 1fr;
  margin: 10px 0 4px 18px;
}

.site-error__map li {
  margin: 0;
  padding: 0 !important;
}

.site-error__map li::before {
  display: none !important;
  content: none !important;
}

.site-error__map a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.site-error__map a::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(255, 60, 71, .72);
  box-shadow: 0 0 16px rgba(227, 6, 19, .22);
  content: "";
}

.site-error__map a:hover,
.site-error__map a:focus {
  color: var(--accent-strong);
}

@media (max-width: 991px) {
  .site-error {
    padding-bottom: 58px;
  }

  .site-error__map ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-error {
    padding-top: 0;
  }

  .site-error__hero .page-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .site-error__lead {
    margin-top: 22px;
  }

  .site-error__map {
    margin-top: 40px;
  }

  .site-error__map ul {
    grid-template-columns: 1fr;
  }
}

.site-content-dark .alert {
  border-radius: 10px;
  font-size: 1rem;
}

.site-content-dark .alert-danger {
  border: 1px solid rgba(255, 72, 84, .32);
  background: rgba(227, 6, 19, .14);
  color: rgba(255, 185, 191, .96);
}

.site-content-dark .panel,
.site-content-dark .panel-body,
.site-content-dark .panel-collapse,
.site-content-dark .well,
.site-content-dark .thumbnail,
.site-content-dark .list-group-item {
  border-color: rgba(255, 255, 255, .11) !important;
  background: rgba(15, 17, 22, .72);
  color: rgba(255, 255, 255, .86) !important;
  box-shadow: none;
}

.site-content-dark .panel[style*="border: 0px solid transparent"] {
  border-color: rgba(255, 255, 255, .1) !important;
  background: linear-gradient(180deg, rgba(20, 22, 27, .78), rgba(10, 12, 16, .82)) !important;
}

.site-content-dark .panel {
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 22px 60px rgba(0, 0, 0, .28);
}

.site-content-dark .panel-body {
  border-radius: 18px;
}

.site-content-dark .bvi-speech > .panel {
  position: relative;
  margin-bottom: 0;
  padding: clamp(24px, 3vw, 42px);
  border-color: rgba(255, 255, 255, .12) !important;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(227, 6, 19, .12), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(227, 6, 19, .1), transparent 32%),
    linear-gradient(180deg, rgba(22, 24, 29, .92), rgba(9, 11, 15, .96)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 28px 78px rgba(0, 0, 0, .38);
}

.site-content-dark .bvi-speech > .panel::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 60, 71, .64), rgba(227, 6, 19, .5), transparent);
  box-shadow: 0 0 18px rgba(227, 6, 19, .22);
  content: "";
}

.site-content-dark .bvi-speech > .panel > .row,
.site-content-dark .bvi-speech > .panel > .row > .col-xs-12 {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.site-content-dark .bvi-speech > .panel > .row > .col-xs-12 > br:first-child {
  display: none;
}

.site-content-dark .table,
.site-content-dark .table > tbody > tr > td,
.site-content-dark .table > tbody > tr > th,
.site-content-dark .table > thead > tr > td,
.site-content-dark .table > thead > tr > th {
  border-color: rgba(255, 255, 255, .1);
}

.site-content-dark .table {
  width: 100%;
  margin: 24px 0 30px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, .055), transparent 28%),
    rgba(255, 255, 255, .025);
  font-size: .95rem !important;
}

.site-content-dark .table > thead > tr > th {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 60, 71, .2);
  background:
    linear-gradient(180deg, rgba(255, 60, 71, .08), rgba(255, 255, 255, .025));
  color: rgba(255, 255, 255, .9);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-content-dark .table > tbody > tr > td,
.site-content-dark .table > tbody > tr > th {
  padding: 15px 16px;
  vertical-align: middle;
}

.site-content-dark .site-files-table {
  table-layout: fixed;
}

.site-content-dark .site-files-table th,
.site-content-dark .site-files-table td {
  vertical-align: middle !important;
}

.site-content-dark .site-files-table th:first-child,
.site-content-dark .site-files-table td:first-child {
  width: 48%;
  padding-left: 28px;
}

.site-content-dark .site-files-table th:nth-child(2),
.site-content-dark .site-files-table td:nth-child(2) {
  width: 26%;
  text-align: center;
}

.site-content-dark .site-files-table th:nth-child(3),
.site-content-dark .site-files-table td:nth-child(3) {
  width: 26%;
  padding-right: 28px;
  text-align: center;
}

.site-content-dark .site-files-table td:first-child {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, .92rem + .32vw, 1.18rem);
  line-height: 1.25;
}

.site-content-dark .site-files-table td:nth-child(2) {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.95rem, .9rem + .2vw, 1.04rem);
  font-weight: 600;
}

.site-content-dark .site-files-table td:nth-child(3) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(255, 60, 71, .24);
  border-radius: 999px;
  background: rgba(227, 6, 19, .08);
  color: #fff;
  font-size: clamp(.9rem, .86rem + .16vw, .98rem);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.site-content-dark .site-files-table td:nth-child(3) a:hover,
.site-content-dark .site-files-table td:nth-child(3) a:focus {
  border-color: rgba(255, 60, 71, .4);
  background: rgba(227, 6, 19, .16);
  color: #fff;
}

.site-content-dark .site-files-table .fa-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fff;
  font-size: .76rem;
  line-height: 1;
}

.site-content-dark .site-files-table .fa-download::before {
  content: "\f019";
}

.site-content-dark .site-params-table {
  margin: 20px 0 28px;
  table-layout: fixed;
}

.site-content-dark .site-params-table > tbody > tr > td:first-child {
  width: 32%;
  color: rgba(255, 255, 255, .88);
}

.site-content-dark .site-params-table > tbody > tr > td:first-child b {
  font-weight: 650;
}

.site-content-dark .site-params-table > tbody > tr > td:last-child {
  color: rgba(255, 255, 255, .78);
  font-weight: 400;
}

.site-content-dark .site-params-table p.visible-xs {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 400;
  line-height: 1.45;
}

.site-content-dark .site-speakers-block,
.site-home .site-speakers-block {
  position: relative;
  margin: 18px 0 22px;
  padding: clamp(16px, 1.8vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(227, 6, 19, .2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 9% 12%, rgba(227, 6, 19, .2), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(227, 6, 19, .15), transparent 38%),
    linear-gradient(135deg, rgba(27, 28, 34, .94), rgba(8, 9, 12, .96) 58%, rgba(54, 13, 18, .66));
  box-shadow: 0 22px 58px rgba(0, 0, 0, .3);
}

.site-content-dark .site-speakers-block::before,
.site-home .site-speakers-block::before {
  position: absolute;
  inset: 0;
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 60, 71, .38), transparent 38%);
}

.site-content-dark .site-speakers-block__head,
.site-home .site-speakers-block__head {
  position: relative;
  margin-bottom: 14px;
}

.site-content-dark .site-speakers-block__eyebrow,
.site-home .site-speakers-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1;
}

.site-content-dark .site-speakers-block__eyebrow::before,
.site-home .site-speakers-block__eyebrow::before {
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent-strong);
  content: "";
  box-shadow: 0 0 24px rgba(227, 6, 19, .35);
}

.site-content-dark .site-speakers-block__list,
.site-home .site-speakers-block__list {
  position: relative;
  display: grid;
  gap: 16px;
}

.site-content-dark .site-speakers-block--compact,
.site-home .site-speakers-block--compact {
  margin: 24px 0 28px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-content-dark .site-speakers-block--compact::before,
.site-home .site-speakers-block--compact::before {
  display: none;
}

.site-content-dark .site-speakers-block--compact .site-speakers-block__head,
.site-home .site-speakers-block--compact .site-speakers-block__head {
  margin-bottom: 20px;
  text-align: center;
}

.site-content-dark .site-speakers-block--compact .site-speakers-block__eyebrow,
.site-home .site-speakers-block--compact .site-speakers-block__eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
}

.site-content-dark .site-speakers-block--compact .site-speakers-block__eyebrow::before,
.site-home .site-speakers-block--compact .site-speakers-block__eyebrow::before {
  display: none;
}

.site-content-dark .site-speakers-strip,
.site-home .site-speakers-strip {
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  justify-content: center;
  gap: 22px 28px;
}

.site-content-dark .site-speakers-strip .community-member,
.site-home .site-speakers-strip .community-member {
  max-width: 196px;
  justify-self: center;
}

.site-content-dark .site-speakers-strip .community-member__placeholder::before,
.site-home .site-speakers-strip .community-member__placeholder::before {
  display: none;
}

.site-content-dark .site-speakers-strip .community-member__avatar-image,
.site-home .site-speakers-strip .community-member__avatar-image {
  border-radius: 50%;
}

.site-content-dark .site-speakers-strip .community-member__name,
.site-home .site-speakers-strip .community-member__name {
  color: #fff;
  font-size: .96rem;
  font-weight: 800;
}

.site-content-dark .site-speakers-strip .community-member__role,
.site-home .site-speakers-strip .community-member__role {
  font-size: .84rem;
}

.site-content-dark .site-speaker-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(96px, 12vw, 126px);
  align-items: center;
  gap: clamp(16px, 2.4vw, 26px);
}

.site-content-dark .site-speaker-card + .site-speaker-card {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-content-dark .site-speaker-card__name {
  margin: 0 0 4px !important;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-content-dark .site-speaker-card__position {
  margin: 0 0 6px !important;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.2;
}

.site-content-dark .site-speaker-card__text {
  max-width: 640px;
  margin: 0 !important;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 400;
  line-height: 1.42;
}

.site-content-dark .site-speaker-card__content {
  display: grid;
  gap: 0;
  align-content: center;
}

.site-content-dark .site-speaker-card__photo {
  position: relative;
  width: min(100%, 126px);
  aspect-ratio: 1;
  justify-self: center;
  padding: 4px;
  border: 1px solid rgba(255, 60, 71, .36);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28), 0 0 0 4px rgba(227, 6, 19, .04);
}

.site-content-dark .site-speaker-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.site-content-dark .site-speaker-card__placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 60, 71, .32), transparent 34%),
    radial-gradient(circle at 78% 76%, rgba(227, 6, 19, .24), transparent 42%),
    linear-gradient(135deg, #141720, #08090d 54%, #26080d);
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), inset 0 -18px 34px rgba(227, 6, 19, .14);
}

.site-content-dark .site-speaker-card__placeholder::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 60, 71, .38);
  border-radius: 50%;
  content: "";
  opacity: .72;
}

.site-companies-block {
  position: relative;
  margin: 24px 0 32px;
  padding: clamp(18px, 2vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .055), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(227, 6, 19, .06), transparent 36%),
    linear-gradient(135deg, rgba(15, 18, 24, .96), rgba(6, 8, 12, .98));
  box-shadow: 0 22px 64px rgba(0, 0, 0, .32);
}

.marketplace-event__company-roles {
  padding: clamp(18px, 2.4vw, 30px);
}

.marketplace-event__company-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.marketplace-event__company-role {
  min-width: 0;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
}

.marketplace-event__company-role-title {
  margin: 0 0 16px !important;
  color: #fff;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}

.marketplace-event__company-role-list {
  display: grid;
  gap: 10px;
}

.marketplace-event__company-role-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  color: inherit;
  background: rgba(8, 11, 16, .48);
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

a.marketplace-event__company-role-card:hover,
a.marketplace-event__company-role-card:focus {
  border-color: rgba(227, 6, 19, .58);
  background: rgba(255, 255, 255, .07);
  color: inherit;
  text-decoration: none;
  transform: translateY(-1px);
}

.marketplace-event__company-role-card--application {
  grid-template-columns: 76px minmax(0, 1fr);
}

.marketplace-event__company-role-media {
  display: grid;
  place-items: center;
  width: 76px;
  height: 64px;
  overflow: hidden;
  border-radius: 9px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  background: linear-gradient(135deg, #202733, #0c0e13 62%, #430a13);
}

.marketplace-event__company-role-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketplace-event__company-role-content {
  min-width: 0;
}

.marketplace-event__company-role-content h3 {
  margin: 0 0 5px !important;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.marketplace-event__company-role-content p {
  display: -webkit-box;
  margin: 0 !important;
  overflow: hidden;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.marketplace-event__company-role-site {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.marketplace-event__company-role-site a {
  color: #ff6671;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.marketplace-event__company-role-arrow {
  color: rgba(255, 255, 255, .72);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 780px) {
  .marketplace-event__company-roles-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.site-companies-block::before {
  display: none;
}

.site-companies-block__head {
  position: relative;
  margin-bottom: 22px;
}

.site-companies-block__eyebrow {
  display: block;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-companies-block__eyebrow::before {
  display: none;
}

.site-companies-block__subtitle {
  margin: 6px 0 0 !important;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.site-companies-block__viewport {
  position: relative;
  max-height: 492px;
  padding-top: 2px;
  overflow: hidden;
  transition: max-height .45s ease;
}

.site-companies-block__viewport::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(6, 8, 12, 0) 0%, rgba(6, 8, 12, .72) 48%, rgba(6, 8, 12, .96) 78%, rgba(6, 8, 12, 1) 100%);
  opacity: 1;
  transition: opacity .25s ease;
}

.site-companies-block.is-open .site-companies-block__viewport::after {
  opacity: 0;
}

.site-companies-block__list {
  display: grid;
  gap: 10px;
}

.site-company-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) max-content 22px;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  min-height: 112px;
  padding: 14px 20px 14px 14px;
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 6px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .05), transparent 35%),
    linear-gradient(135deg, rgba(22, 25, 32, .86), rgba(11, 13, 18, .92));
  color: inherit;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 12px 28px rgba(0, 0, 0, .16);
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.site-company-row:hover,
.site-company-row:focus {
  border-color: rgba(227, 6, 19, .44);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .065), transparent 35%),
    linear-gradient(135deg, rgba(25, 28, 36, .94), rgba(12, 14, 19, .96));
  color: inherit;
  outline: none;
  transform: translateY(-1px);
}

.site-company-row__media {
  display: grid;
  place-items: center;
  width: 104px;
  height: 84px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: #0d0f14;
}

.site-company-row__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-company-row__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #1f242d, #0a0b0f 60%, #3a0810);
}

.site-company-row__content {
  min-width: 0;
}

.site-company-row__name {
  min-width: 0;
  margin: 0 0 8px !important;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.site-company-row__description {
  display: -webkit-box;
  max-width: none;
  margin: 0 !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 450;
  line-height: 1.45;
}

.site-company-row__stats {
  display: grid;
  grid-template-columns: 1px minmax(124px, 1fr) 1px minmax(132px, 1fr);
  align-items: center;
  gap: clamp(14px, 1.7vw, 24px);
  min-width: 0;
}

.site-company-row__divider {
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .13);
}

.site-company-row__metric {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-company-row__metric-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025) 58%, rgba(255, 255, 255, .015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.site-company-row__metric-icon .site-fa {
  color: #ff2938;
  font-size: 21px;
}

.site-company-row__metric-text {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.site-company-row__metric-text strong {
  color: #fff;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 900;
  line-height: 1;
}

.site-company-row__metric-text small {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.site-company-row__arrow {
  justify-self: end;
  color: rgba(255, 255, 255, .72);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transition: color .18s ease, transform .18s ease;
}

.site-company-row:hover .site-company-row__arrow,
.site-company-row:focus .site-company-row__arrow {
  color: #fff;
  transform: translateX(3px);
}

.site-companies-block__toggle {
  display: block;
  min-width: 280px;
  margin: 12px auto 0;
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #f1192b, #b90018);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 14px 32px rgba(227, 6, 19, .2);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.site-companies-block__toggle:hover,
.site-companies-block__toggle:focus {
  border-color: #e30613;
  background: linear-gradient(180deg, #ff2335, #c9001b);
  color: #fff;
  outline: none;
}

@media (max-width: 1180px) {
  .site-company-row {
    grid-template-columns: 92px minmax(0, 1fr) 22px;
  }

  .site-company-row__media {
    width: 92px;
    height: 76px;
  }

  .site-company-row__stats {
    grid-column: 2 / span 2;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
  }

  .site-company-row__divider {
    display: none;
  }

  .site-company-row__metric {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .site-company-row__metric-icon {
    width: 44px;
    height: 44px;
  }

  .site-company-row__metric-icon .site-fa {
    font-size: 18px;
  }
}

@media (max-width: 1180px) {
  .site-companies-block {
    padding: 14px;
  }

  .site-company-row {
    grid-template-columns: 76px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 92px;
    padding: 10px;
  }

  .site-company-row__media {
    width: 76px;
    height: 70px;
  }

  .site-company-row__name {
    margin-bottom: 6px !important;
    font-size: 17px;
  }

  .site-company-row__description {
    font-size: 13px;
    line-height: 1.35;
  }

  .site-company-row__stats {
    display: none;
  }

  .site-company-row__arrow {
    font-size: 30px;
  }

  .site-companies-block__toggle {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }
}

.site-content-dark .table-striped > tbody > tr:nth-of-type(odd),
.site-content-dark .table-hover > tbody > tr:hover {
  background: rgba(255, 255, 255, .04);
}

.site-content-dark hr {
  border-color: rgba(255, 255, 255, .12);
}

.site-content-dark .form-control,
.site-content-dark input,
.site-content-dark textarea,
.site-content-dark select {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(10, 12, 16, .92);
  color: #fff;
}

.site-content-dark .form-control::placeholder,
.site-content-dark input::placeholder,
.site-content-dark textarea::placeholder {
  color: rgba(255, 255, 255, .42);
}

.site-content-dark form.form-horizontal[id^="sendForm_"] {
  position: relative;
  isolation: isolate;
  margin: 34px auto 0;
  padding: clamp(24px, 3.4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 60, 71, .1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 60, 71, .055), transparent 32%),
    linear-gradient(315deg, rgba(227, 6, 19, .045), transparent 38%),
    linear-gradient(180deg, rgba(17, 19, 24, .64), rgba(7, 9, 13, .82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .055),
    inset 0 0 0 1px rgba(255, 255, 255, .025),
    0 28px 72px rgba(0, 0, 0, .34),
    0 0 42px rgba(227, 6, 19, .045);
}

.site-content-dark form.form-horizontal[id^="sendForm_"]::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 60, 71, .42), rgba(227, 6, 19, .3), transparent);
  box-shadow: 0 0 24px rgba(227, 6, 19, .14);
  content: "";
}

.site-content-dark form.form-horizontal[id^="sendForm_"]::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(227, 6, 19, .055), transparent);
  pointer-events: none;
  content: "";
}

.site-content-dark form.form-horizontal[id^="sendForm_"] > * {
  position: relative;
  z-index: 1;
}

.site-content-dark .btn-default {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.site-content-dark .btn-default:hover,
.site-content-dark .btn-default:focus {
  border-color: rgba(227, 6, 19, .48);
  background: rgba(227, 6, 19, .16);
  color: #fff;
}

.site-content-dark img {
  border-radius: 10px;
}

.site-content-dark .bvi-speech > .panel img {
  max-width: 100%;
  height: auto;
}

.site-content-dark .bvi-speech > .panel .hidden-xs[align="center"] {
  margin: 0 0 22px !important;
}

.site-content-dark .bvi-speech > .panel .hidden-xs[align="center"] a {
  display: block;
  width: min(100%, 640px);
  margin: 0 auto;
}

.site-content-dark .bvi-speech > .panel .hidden-xs[align="center"] img {
  display: block;
  width: 100% !important;
  max-width: 640px !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .34);
}

.site-content-dark .bvi-speech > .panel img.visible-xs {
  display: block;
  width: 100% !important;
  max-width: none !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .34);
}

.site-content-dark .bvi-speech h1:not(.page-title):not(.list-group-item) {
  margin-top: 14px;
  margin-bottom: 12px;
  line-height: 1.16;
}

.site-content-dark .bvi-speech h2:not(.list-group-item),
.site-content-dark .bvi-speech h3:not(.list-group-item),
.site-content-dark .bvi-speech h4:not(.list-group-item) {
  position: relative;
  margin-top: 20px;
  margin-bottom: 12px;
  padding-left: 16px;
  line-height: 1.18;
}

.site-content-dark .bvi-speech h2:not(.list-group-item)::before,
.site-content-dark .bvi-speech h3:not(.list-group-item)::before,
.site-content-dark .bvi-speech h4:not(.list-group-item)::before {
  position: absolute;
  top: .15em;
  bottom: .12em;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 14px rgba(227, 6, 19, .28);
  content: "";
}

.site-content-dark .bvi-speech ul,
.site-content-dark .bvi-speech ol {
  margin: 0 0 22px;
}

.site-content-dark .bvi-speech ul li {
  margin-bottom: 8px;
}

.site-content-dark .bvi-speech blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--accent-strong);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, .04);
}

.site-content-dark .bvi-speech .table a,
.site-content-dark .panel-collapse .table a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 700;
}

.site-content-dark .bvi-speech .table a:hover,
.site-content-dark .panel-collapse .table a:hover {
  color: var(--accent-strong);
}

.site-content-dark .catalogMenu {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
}

.site-content-dark .catalogMenu .panel {
  position: relative;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  border-color: transparent !important;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 20, 25, .82), rgba(10, 12, 16, .9)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 60, 71, .1), 0 16px 36px rgba(0, 0, 0, .18);
}

.site-content-dark .catalogMenu .panel::before {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 3px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, var(--accent-strong), rgba(227, 6, 19, .12));
  opacity: .78;
  content: "";
}

.site-content-dark .catalogMenu .panel > .row {
  margin-right: 0;
  margin-left: 0;
}

.site-content-dark .catalogMenu .panel > .row > [class*="col-"] {
  float: none;
  width: 100% !important;
  padding-right: 0;
  padding-left: 0;
}

.site-content-dark .catalogMenu .list-group-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  margin: 0 !important;
  padding: 15px 58px 15px 18px !important;
  border: 0 !important;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 60, 71, .08), rgba(255, 255, 255, .018)),
    linear-gradient(180deg, rgba(255, 255, 255, .032), rgba(255, 255, 255, .01)) !important;
  color: #fff !important;
  font-size: clamp(.98rem, .92rem + .18vw, 1.12rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: left !important;
  cursor: pointer;
}

.site-content-dark .catalogMenu .list-group-item:hover,
.site-content-dark .catalogMenu .list-group-item:focus {
  background:
    linear-gradient(90deg, rgba(255, 60, 71, .14), rgba(255, 255, 255, .028)),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)) !important;
  color: #fff !important;
}

.site-content-dark .catalogMenu .site-catalog-title {
  min-width: 0;
}

.site-content-dark .catalogMenu .list-group-item::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: rgba(255, 255, 255, .42);
  font-size: 1rem;
  transform: translateY(-50%);
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.site-content-dark .catalogMenu .site-catalog-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .52);
  font-size: .78rem;
  line-height: 1;
  opacity: .58 !important;
  transform: none;
}

.site-content-dark .catalogMenu .site-catalog-open-link:hover,
.site-content-dark .catalogMenu .site-catalog-open-link:focus {
  border-color: rgba(255, 60, 71, .32);
  background: rgba(227, 6, 19, .12);
  color: #fff;
  opacity: .9 !important;
}

.site-content-dark .site-child-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 22px 0 6px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  box-shadow: 0 14px 34px rgba(227, 6, 19, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-content-dark .site-child-form-button::after {
  margin-left: 10px;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: .84em;
  font-weight: 900;
}

.site-content-dark .site-child-form-button:hover,
.site-content-dark .site-child-form-button:focus {
  border-color: rgba(255, 255, 255, .28);
  background: linear-gradient(135deg, #ff3c47, #d70a15);
  color: #fff;
  box-shadow: 0 18px 42px rgba(227, 6, 19, .26), inset 0 1px 0 rgba(255, 255, 255, .2);
  transform: translateY(-1px);
}

.site-content-dark .catalogMenu .panel:has(.panel-collapse.in) > .row .list-group-item::after {
  color: var(--accent-strong);
  content: "\f077";
}

.site-content-dark .catalogMenu .panel-collapse {
  padding: clamp(20px, 2.5vw, 34px) !important;
  border-top: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0 0 18px 18px;
  background:
    radial-gradient(ellipse at 92% 10%, rgba(227, 6, 19, .085), transparent 58%),
    radial-gradient(ellipse at 6% 92%, rgba(227, 6, 19, .06), transparent 62%),
    rgba(8, 10, 14, .58) !important;
  box-shadow: inset 0 42px 90px rgba(227, 6, 19, .014), inset 0 -54px 110px rgba(227, 6, 19, .018);
}

.site-content-dark .catalogMenu .panel-collapse > br:first-child {
  display: none;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column {
  position: sticky;
  top: 112px;
}

.site-content-dark:has(.site-content-side-column__br) {
  overflow: visible;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2):has(.site-content-side-column__br) {
  align-items: stretch;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2):has(.site-content-side-column__br) > .site-content-side-column {
  position: static;
  top: auto;
  align-self: stretch;
  align-content: start;
  display: grid;
  gap: 18px;
}

.site-content-side-column__br {
  position: sticky;
  top: 102px;
  align-self: start;
  display: grid;
}

.cms-has-adminbar .site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column {
  top: 152px;
}

.cms-has-adminbar .site-content-side-column__br {
  top: 102px;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column--company {
  position: static;
  top: auto;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column .panel {
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .1) !important;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 24, 29, .86), rgba(11, 13, 17, .9)) !important;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column .panel::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 60, 71, .46), transparent);
  content: "";
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column .panel-body {
  padding: 18px !important;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column h4,
.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column h5 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.25;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column hr {
  margin: 16px 0 !important;
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column a {
  display: block;
  padding: 4px 0;
  color: rgba(255, 255, 255, .86);
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column a:hover {
  color: var(--accent-strong);
}

.site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column .site-br-slot,
.site-news-page .site-news-sidebar .site-br-slot {
  padding: 0;
}

.site-content-dark #imagesPage {
  width: 100%;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 60, 71, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28), 0 0 0 1px rgba(227, 6, 19, .06);
}

.site-content-dark #imagesPage .tile,
.site-content-dark #imagesPage a {
  overflow: hidden;
}

.site-content-dark #imagesPage.site-balanced-gallery {
  align-items: stretch;
}

.site-content-dark #imagesPage.site-balanced-gallery a {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
}

.site-content-dark #imagesPage.site-balanced-gallery img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-content-dark #imagesPage img {
  border-radius: 0;
}

.site-content-dark .site-child-gallery {
  position: relative;
  width: 100%;
  margin: 22px 0 8px;
}

.site-content-dark .site-child-gallery .owl-stage {
  display: flex;
  align-items: stretch;
}

.site-content-dark .site-child-gallery .owl-item {
  display: flex;
}

.site-content-dark .site-child-gallery a {
  display: block;
  width: 100%;
  height: clamp(190px, 22vw, 300px);
  overflow: hidden;
  border: 1px solid rgba(255, 60, 71, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.site-content-dark .site-child-gallery img {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  border-radius: 0;
  object-fit: cover;
}

.site-content-dark .site-child-gallery .owl-nav {
  position: absolute;
  top: 50%;
  right: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.site-content-dark .site-child-gallery .owl-nav button.owl-prev,
.site-content-dark .site-child-gallery .owl-nav button.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 50% !important;
  background: rgba(227, 6, 19, .88) !important;
  color: #fff !important;
  font-size: 1.85rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .4), 0 0 22px rgba(227, 6, 19, .28);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.site-content-dark .site-child-gallery .owl-nav button.owl-prev:hover,
.site-content-dark .site-child-gallery .owl-nav button.owl-next:hover {
  border-color: rgba(255, 255, 255, .34) !important;
  background: rgba(255, 60, 71, .94) !important;
}

.site-content-dark .site-child-gallery .owl-nav button.owl-prev span,
.site-content-dark .site-child-gallery .owl-nav button.owl-next span {
  display: block;
  margin-top: -2px;
}

.site-content-dark .site-child-gallery .owl-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 0;
  pointer-events: none;
}

.site-content-dark .site-child-gallery .owl-dot {
  pointer-events: auto;
}

.site-content-dark .site-child-gallery .owl-dot span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .26);
}

.site-content-dark .site-child-gallery .owl-dot.active span {
  background: var(--accent-strong);
}

.site-content-dark.bannerHead {
  background-color: #070708;
  background-blend-mode: multiply;
}

.site-content-hero {
  padding: 58px 0 42px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 20, 24, .68), rgba(11, 12, 15, .78));
}

.site-content-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 22px !important;
  padding: 0;
  background: transparent;
  list-style: none;
}

.site-content-hero .breadcrumb li {
  color: var(--muted);
  font-size: 13px;
}

.site-content-hero .breadcrumb li + li::before {
  padding-right: 12px;
  color: rgba(255, 255, 255, .32);
  content: "/";
}

.site-content-hero .breadcrumb a {
  color: rgba(255, 255, 255, .76);
}

.site-content-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1.12;
}

.site-content-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.site-content-body {
  padding: 58px 0 76px;
}

.site-account {
  padding: 64px 0 90px;
}

.site-account h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(2.2rem, 1.75rem + 1.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.06;
}

.site-account__caption {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .42em;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .82);
  font-size: 22px;
  line-height: 1.35;
}

.site-account__separator {
  color: rgba(255, 255, 255, .48);
}

.site-account .site-account__logout {
  color: #ff5d66 !important;
  font-weight: inherit;
  text-decoration: none;
}

.site-account .site-account__logout:hover,
.site-account .site-account__logout:focus-visible {
  color: #ff7b82;
  text-decoration: underline;
}

.site-account .catalogMenu {
  display: block;
  width: auto;
  max-width: 1100px;
  margin: 0 auto;
}

.site-account .panel {
  margin: 0;
  border: 0 !important;
  background: transparent;
  box-shadow: none;
}

.site-account .panel-group .panel,
.site-account .catalogMenu .panel {
  margin-bottom: 28px;
}

.site-account .list-group-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  margin: 0;
  padding: 26px 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(23, 24, 29, .96), rgba(13, 15, 20, .98));
  color: #f5f6fb;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  transition: border-color .24s ease, background .24s ease, color .24s ease;
}

.site-account .list-group-item:hover,
.site-account .list-group-item:focus {
  border-color: rgba(227, 6, 19, .54);
  background: linear-gradient(180deg, rgba(30, 24, 28, .98), rgba(14, 15, 19, .98));
  color: #fff;
  text-decoration: none;
}

.site-account .panel-collapse {
  width: auto;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(18, 20, 24, .96), rgba(10, 12, 16, .98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
  text-align: center;
}

.site-account .panel-collapse hr {
  display: none;
}

.site-account .panel-collapse > form,
.site-account .panel-collapse > .row {
  padding: 30px;
}

.site-account .panel-collapse > form {
  max-width: none;
  margin: 0;
}

.site-account .panel-collapse > form > .inputGroup,
.site-account .panel-collapse > form > .form-group,
.site-account .panel-collapse > form > button {
  max-width: 520px;
}

.site-account .inputGroup {
  max-width: 420px;
  margin: 0 auto 18px;
  text-align: left;
}

.site-account .form-group {
  margin: 14px auto 18px !important;
  text-align: center;
}

.site-account .checkbox-inline {
  display: block;
  max-width: 520px;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.25;
  text-align: center;
}

.site-account .checkbox-inline input[type="checkbox"] {
  position: static;
  margin: 0 8px 0 0;
  vertical-align: middle;
}

.site-account #profil form {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.3;
}

.site-account #profil .inputGroup {
  max-width: 620px;
}

.site-account #profil .site-form-field .site-form-field__label,
.site-account #profil .site-form-field .site-form-field__control {
  max-width: 620px;
}

.site-account .site-form-field .site-form-field__label,
.site-account .checkbox-inline {
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
}

.site-account .form-control {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: #0f131b;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.site-account .form-control:focus {
  border-color: rgba(227, 6, 19, .62);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .14);
  outline: none;
}

.site-account .site-form-field {
  position: relative;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: #0f131b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: border-color .16s ease, box-shadow .16s ease;
}

.site-account .site-form-field .site-form-field__label {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  display: block;
  float: none;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 0 15px;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.2;
  pointer-events: none;
  text-align: left;
}

.site-account .site-form-field .form-control {
  display: block;
  width: 100%;
  height: 54px;
  min-height: 0;
  max-width: 420px;
  margin: 0;
  padding: 25px 15px 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  line-height: 1.35;
  text-align: left;
}

.site-account .site-form-field .form-control:focus {
  border-color: transparent;
  box-shadow: none;
}

.site-account .site-form-field .form-control:-webkit-autofill,
.site-account .site-form-field .form-control:-webkit-autofill:hover,
.site-account .site-form-field .form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 100px #0f131b inset;
  -webkit-text-fill-color: #fff;
}

.site-account .site-form-field:focus-within {
  border-color: rgba(227, 6, 19, .62);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .14);
}

.site-account .site-form-field.is-saving {
  border-color: rgba(255, 198, 92, .55);
}

.site-account .site-form-field.is-saved {
  border-color: rgba(95, 205, 136, .48);
}

.site-account .site-form-field.is-error {
  border-color: rgba(255, 93, 102, .78);
}

.site-account a {
  color: #ff5d66;
}

.site-account .btn-primary {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 12px 26px rgba(227, 6, 19, .22);
  font-weight: 700;
}

.site-account .btn-primary:hover,
.site-account .btn-primary:focus {
  background: linear-gradient(135deg, #d70a15, #9f040d);
  color: #fff;
  box-shadow: 0 12px 26px rgba(120, 0, 8, .32);
}

.modal-backdrop {
  background: rgba(5, 5, 5, 0) !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(0) saturate(1) !important;
  backdrop-filter: blur(0) saturate(1) !important;
  transition: background-color .22s ease, -webkit-backdrop-filter .22s ease, backdrop-filter .22s ease !important;
}

.modal-backdrop.in,
.modal-backdrop.show,
.modal-backdrop.fade.in,
.modal-backdrop.fade.show {
  background: rgba(5, 5, 5, .46) !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(5px) saturate(.85) !important;
  backdrop-filter: blur(5px) saturate(.85) !important;
}

#alertModal .modal-dialog {
  width: min(600px, calc(100vw - 32px)) !important;
  min-width: 0;
  margin: 8vh auto 30px;
}

#alertModal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, #171a21, #0c0f14);
  color: rgba(255, 255, 255, .82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .58), 0 0 0 1px rgba(227, 6, 19, .08);
}

#alertModal .modal-header {
  min-height: 0;
  padding: 20px 24px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

#alertModal .modal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

#alertModal .close {
  margin-top: -6px;
  color: rgba(255, 255, 255, .62);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  opacity: 1;
  text-shadow: none;
  transition: color .2s ease;
}

#alertModal .close:hover,
#alertModal .close:focus {
  color: #fff;
  outline: none;
}

#alertModal .modal-body {
  min-height: 0;
  padding: 18px 24px 20px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.45;
}

#alertModal .modal-body p {
  margin: 0;
}

#alertModal .modal-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  text-align: right;
}

#alertModal .modal-footer .btn-default {
  min-width: 96px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 12px 26px rgba(227, 6, 19, .22);
  font-size: 15px;
  font-weight: 700;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

#alertModal .modal-footer .btn-default:hover,
#alertModal .modal-footer .btn-default:focus {
  background: linear-gradient(135deg, #d70a15, #9f040d);
  color: #fff;
  box-shadow: 0 12px 26px rgba(120, 0, 8, .32);
  outline: none;
}

#speakerModal .modal-dialog {
  width: min(920px, calc(100vw - 72px));
  margin: clamp(86px, 10vh, 128px) auto 42px;
  transform: translateY(-18px);
  transition: transform .28s ease, opacity .28s ease;
}

body:has(#speakerModal.in) .modal-backdrop.in,
body:has(#speakerModal.show) .modal-backdrop.in {
  opacity: .78;
}

#speakerModal.in .modal-dialog,
#speakerModal.show .modal-dialog {
  transform: translateY(0);
}

#speakerModal .modal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(227, 6, 19, .26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(227, 6, 19, .075), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(227, 6, 19, .09), transparent 44%),
    linear-gradient(145deg, rgba(12, 14, 19, .99), rgba(4, 5, 8, .99) 58%, rgba(17, 5, 8, .98));
  color: rgba(255, 255, 255, .82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .64), 0 0 0 1px rgba(255, 255, 255, .035), inset 0 -90px 150px rgba(227, 6, 19, .028);
}

#speakerModal .modal-content::before {
  position: absolute;
  inset: 0;
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 60, 71, .58), transparent 42%);
}

.site-speaker-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .86);
  cursor: pointer;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.site-speaker-modal__close:hover,
.site-speaker-modal__close:focus {
  background: transparent;
  color: #fff;
  outline: none;
  transform: scale(1.04);
}

.site-speaker-modal__close span {
  display: block;
  margin-top: -3px;
  line-height: 1;
}

.site-speaker-modal__grid {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  padding: 38px 64px 38px 42px;
}

.site-speaker-modal__media {
  display: grid;
  place-items: center;
}

.site-speaker-modal__media .community-member__avatar {
  width: 152px;
  height: 152px;
  padding: 7px;
}

.site-speaker-modal__content {
  min-width: 0;
}

.site-speaker-modal__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .64);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-speaker-modal__label::before {
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-strong);
  content: "";
}

.site-speaker-modal__name {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 850;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-speaker-modal__position {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .74);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
}
.site-speaker-modal__company {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, .74);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
}

.site-speaker-modal__text {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.55;
}

.site-speaker-modal__text h1,
.site-speaker-modal__text h2,
.site-speaker-modal__text h3,
.site-speaker-modal__text h4,
.site-speaker-modal__text h5,
.site-speaker-modal__text h6 {
  position: relative;
  margin: 18px 0 10px;
  padding-left: 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 850;
  line-height: 1.18;
}

.site-speaker-modal__text h1:first-child,
.site-speaker-modal__text h2:first-child,
.site-speaker-modal__text h3:first-child,
.site-speaker-modal__text h4:first-child,
.site-speaker-modal__text h5:first-child,
.site-speaker-modal__text h6:first-child {
  margin-top: 0;
}

.site-speaker-modal__text h1 {
  font-size: 1.24rem;
}

.site-speaker-modal__text h2 {
  font-size: 1.16rem;
}

.site-speaker-modal__text h3 {
  font-size: 1.06rem;
}

.site-speaker-modal__text h4 {
  font-size: 1rem;
}

.site-speaker-modal__text h5,
.site-speaker-modal__text h6 {
  font-size: .95rem;
}

.site-speaker-modal__text h1::before,
.site-speaker-modal__text h2::before,
.site-speaker-modal__text h3::before,
.site-speaker-modal__text h4::before,
.site-speaker-modal__text h5::before,
.site-speaker-modal__text h6::before {
  position: absolute;
  top: .15em;
  bottom: .12em;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 14px rgba(227, 6, 19, .28);
  content: "";
}

.site-speaker-modal__text p,
.site-speaker-modal__text ul,
.site-speaker-modal__text ol,
.site-speaker-modal__text blockquote {
  margin: 0 0 12px;
}

.site-speaker-modal__text p:last-child,
.site-speaker-modal__text ul:last-child,
.site-speaker-modal__text ol:last-child,
.site-speaker-modal__text blockquote:last-child {
  margin-bottom: 0;
}

.site-speaker-modal__text ul,
.site-speaker-modal__text ol {
  padding-left: 1.2em;
}

.site-speaker-modal__text li {
  margin: 0 0 6px;
  color: inherit;
}

.site-speaker-modal__text strong,
.site-speaker-modal__text b {
  color: rgba(255, 255, 255, .94);
  font-weight: 800;
}

.site-speaker-modal__text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.site-speaker-modal__text a:hover,
.site-speaker-modal__text a:focus {
  color: var(--accent-strong);
  outline: none;
}

.site-speaker-modal__text blockquote {
  padding: 14px 16px;
  border-left: 3px solid var(--accent-strong);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .78);
}

#alertModal.site-form-modal .modal-dialog {
  width: min(860px, calc(100vw - 72px)) !important;
  margin: clamp(86px, 10vh, 128px) auto 42px;
}

#alertModal.site-form-modal.fade .modal-dialog {
  opacity: 0;
  transform: translateY(-34px);
  transition: transform .34s cubic-bezier(.22, .61, .36, 1), opacity .28s ease;
}

#alertModal.site-form-modal.in .modal-dialog,
#alertModal.site-form-modal.show .modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

#alertModal.site-form-modal .modal-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 3.2vw, 42px) clamp(30px, 4.6vw, 52px);
  border: 1px solid rgba(255, 60, 71, .1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 60, 71, .055), transparent 32%),
    linear-gradient(315deg, rgba(227, 6, 19, .045), transparent 38%),
    linear-gradient(180deg, #0d1016 0%, #07080b 52%, #050506 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .055),
    inset 0 0 0 1px rgba(255, 255, 255, .025),
    0 28px 72px rgba(0, 0, 0, .34),
    0 0 42px rgba(227, 6, 19, .045);
}

#alertModal.site-form-modal .modal-content::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 60, 71, .42), rgba(227, 6, 19, .3), transparent);
  box-shadow: 0 0 24px rgba(227, 6, 19, .14);
  content: "";
}

#alertModal.site-form-modal .modal-content::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(227, 6, 19, .055), transparent);
  pointer-events: none;
  content: "";
}

#alertModal.site-form-modal .modal-header {
  position: absolute;
  top: clamp(18px, 2.3vw, 30px);
  right: clamp(18px, 2.3vw, 30px);
  z-index: 3;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent !important;
  box-shadow: none !important;
}

#alertModal.site-form-modal .modal-title,
#alertModal.site-form-modal .modal-footer {
  display: none;
}

#alertModal.site-form-modal .close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  appearance: none;
  background: transparent !important;
  color: rgba(255, 255, 255, .9) !important;
  cursor: pointer;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
  text-shadow: none;
  box-shadow: none !important;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#alertModal.site-form-modal .close::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

#alertModal.site-form-modal .close:hover,
#alertModal.site-form-modal .close:focus {
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none;
}

#alertModal.site-form-modal .close span {
  display: none;
  background: transparent !important;
  box-shadow: none !important;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

#alertModal.site-form-modal .modal-body {
  position: relative;
  z-index: 2;
  padding: 0;
}

#alertModal.site-form-modal #alertModalIframe {
  display: block;
  width: 100%;
  min-height: 0;
  border-radius: 0;
  background: transparent;
}

.site-onlyform-dark {
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent !important;
}

html:has(.site-onlyform-dark),
body:has(.site-onlyform-dark) {
  background: transparent !important;
}

.site-onlyform-dark > .container-fluid {
  width: 100%;
  max-width: none;
}

.site-onlyform-dark > .container-fluid > .row {
  margin: 0;
}

.site-onlyform-dark > .container-fluid > .row > .col-xs-12 {
  float: none;
  width: 100%;
  max-width: none;
  padding: 0;
}

.site-onlyform-dark form.form-horizontal[id^="sendForm_"] {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 !important;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-onlyform-dark form.form-horizontal[id^="sendForm_"] p[style*="text-align: center"] {
  white-space: nowrap;
}

.site-onlyform-dark form.form-horizontal[id^="sendForm_"] p[style*="text-align: center"] br {
  display: none;
}

.site-onlyform-dark form.form-horizontal[id^="sendForm_"] p[style*="text-align: center"] b {
  margin: 0 6px;
}

.site-onlyform-dark form.form-horizontal[id^="sendForm_"]::before,
.site-onlyform-dark form.form-horizontal[id^="sendForm_"]::after {
  content: none;
}

.site-onlyform-dark .inputGroup {
  max-width: none;
}

.site-onlyform-dark .inputGroup label {
  color: rgba(255, 255, 255, .66);
}

.site-onlyform-dark .inputGroup .form-control,
.site-onlyform-dark .inputGroup input,
.site-onlyform-dark .inputGroup textarea,
.site-onlyform-dark .inputGroup select {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  background: #111722;
  color: rgba(255, 255, 255, .9);
}

.site-onlyform-dark .inputGroup select.form-control,
.site-onlyform-dark .inputGroup select {
  appearance: none;
  padding-right: 44px;
  padding-left: 15px;
  background-color: #111722 !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.5 7 7.5 13 1.5' fill='none' stroke='%23b5bbc8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 18px) 50% !important;
  background-size: 14px 9px !important;
  color: rgba(255, 255, 255, .66) !important;
}

.site-onlyform-dark .inputGroup select.form-control option,
.site-onlyform-dark .inputGroup select option {
  background: #111722;
  color: rgba(255, 255, 255, .9);
}

.site-onlyform-dark .btn-primary {
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #e04750, #c42a34);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(227, 6, 19, .24), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.site-onlyform-dark .btn-primary:hover,
.site-onlyform-dark .btn-primary:focus {
  background: linear-gradient(180deg, #ff4b55, #d62f3a);
  color: #fff;
}

.site-news-page .site-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
  gap: 36px;
}

.site-news-page:has(.site-news-sidebar__br) {
  overflow: visible;
}

.site-news-page .site-news-empty {
  margin: 16px 0 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, .08), transparent 34%),
    linear-gradient(180deg, rgba(18, 20, 25, .92), rgba(9, 11, 15, .96)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 24px 64px rgba(0, 0, 0, .3);
}

.site-news-page .site-news-empty .panel-collapse {
  padding: 24px 28px !important;
  color: rgba(255, 255, 255, .86);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

.site-news-page .site-news-main,
.site-news-page .site-news-sidebar {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

.site-news-page .site-news-main > br:first-child,
.site-news-page .site-news-sidebar > br:first-child {
  display: none !important;
}

.site-news-page .site-news-main {
  grid-column: 1;
}

.site-news-page .site-news-sidebar {
  grid-column: 2;
  align-self: stretch;
  align-content: start;
  display: grid;
  gap: 18px;
}

.site-news-sidebar__br {
  position: sticky;
  top: 102px;
  align-self: start;
  display: grid;
}

.cms-has-adminbar .site-news-sidebar__br {
  top: 102px;
}

.site-news-page .site-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 26px;
}

.site-news-page .site-news-card {
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100%;
  margin: 0 !important;
  border-color: rgba(255, 255, 255, .11);
  background:
    radial-gradient(circle at 85% 15%, rgba(227, 6, 19, .12), transparent 18%),
    linear-gradient(180deg, rgba(18, 20, 24, .96), rgba(11, 12, 15, .98));
}

.site-news-page .site-news-card:hover,
.site-news-page .site-news-card:focus-within {
  border-color: rgba(227, 6, 19, .28) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .46), 0 0 0 1px rgba(227, 6, 19, .12);
  transform: translateY(-4px);
}

.site-news-page .site-news-card__media {
  aspect-ratio: 16 / 9;
  min-height: 0;
  color: inherit;
}

.site-news-page .site-news-card__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 60, 71, .2), transparent 30%),
    linear-gradient(135deg, rgba(227, 6, 19, .18), rgba(13, 17, 24, .98) 52%, rgba(9, 11, 15, .98));
}

.site-news-page .site-news-card__body {
  gap: 12px;
  min-height: 0;
}

.site-news-page .site-news-card__meta {
  color: var(--accent-strong);
}

.site-news-page .site-news-card__title {
  margin: 0;
  font-size: clamp(1.08rem, 1rem + .35vw, 1.28rem);
  line-height: 1.12;
}

.site-news-page .site-news-card__title a {
  color: #fff;
}

.site-news-page .site-news-card__title a:hover,
.site-news-page .site-news-card__title a:focus {
  color: var(--accent-strong);
}

.site-news-page .site-news-card__text {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: .94rem;
  line-height: 1.48;
}

.site-news-page .site-news-card__breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.site-news-page .site-news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.site-news-page .site-news-card__tags a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 60, 71, .24);
  border-radius: 999px;
  background: rgba(227, 6, 19, .08);
  color: rgba(255, 255, 255, .78);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.site-news-page .site-news-card__link {
  margin-top: 4px;
}

.site-news-page .site-news-sidebar > b {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.05rem;
}

.site-news-page .site-news-tags {
  margin: 0 0 22px;
  padding: 18px 18px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 20, 25, .82), rgba(10, 12, 16, .9));
  list-style: none;
}

.site-news-page .site-news-tags li {
  margin: 0 0 10px;
  padding: 0;
}

.site-news-page .site-news-tags li::before {
  display: none !important;
  content: none !important;
}

.site-news-page .site-news-tag-link {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: rgba(255, 255, 255, .72) !important;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.site-news-page .site-news-tag-link__box {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-news-page .site-news-tag-link__box::before {
  position: absolute;
  top: 1px;
  left: 4px;
  display: none;
  width: 8px;
  height: 12px;
  border-right: 3px solid #ff3c47;
  border-bottom: 3px solid #ff3c47;
  content: "";
  transform: rotate(45deg);
}

.site-news-page .site-news-tag-link__count {
  color: rgba(255, 255, 255, .46);
  font-weight: 650;
}

.site-news-page .site-news-tag-link.is-active {
  color: #fff !important;
}

.site-news-page .site-news-tag-link.is-active .site-news-tag-link__box {
  border-color: rgba(255, 60, 71, .52);
  background: rgba(227, 6, 19, .1);
  box-shadow: 0 0 18px rgba(227, 6, 19, .12);
}

.site-news-page .site-news-tag-link.is-active .site-news-tag-link__box::before {
  display: block;
}

.site-news-page .site-news-tag-link:hover,
.site-news-page .site-news-tag-link:focus {
  color: var(--accent-strong) !important;
}

.site-news-page .site-news-tag-link:hover .site-news-tag-link__box,
.site-news-page .site-news-tag-link:focus .site-news-tag-link__box {
  border-color: rgba(255, 60, 71, .52);
  background: rgba(227, 6, 19, .08);
}

.site-news-page .site-news-sidebar .input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(10, 12, 16, .92);
}

.site-news-page .site-news-sidebar .input-group .form-control {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.site-news-page .site-news-sidebar .btn-default {
  border-color: rgba(255, 60, 71, .24);
  background: rgba(227, 6, 19, .12);
  color: #fff;
}

.site-news-page .site-news-sidebar .input-group-btn {
  display: flex;
  width: auto;
}

.site-news-page .site-news-sidebar .input-group-btn .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 60, 71, .32);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 60, 71, .16), transparent 68%),
    rgba(227, 6, 19, .12);
  color: #fff;
  box-shadow: none;
}

.site-news-page .site-news-sidebar .input-group-btn .btn-default .site-fa {
  color: #fff;
  font-size: 1.05rem;
}

.site-news-page .site-news-sidebar .input-group-btn .btn-default:hover,
.site-news-page .site-news-sidebar .input-group-btn .btn-default:focus {
  border-color: rgba(255, 60, 71, .45);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 60, 71, .24), transparent 68%),
    rgba(227, 6, 19, .18);
}

.site-content-dark .site-pagination {
  display: flex;
  justify-content: center;
  margin: 38px 0 8px;
  text-align: center;
}

.site-content-dark .site-pagination__list,
.site-content-dark .pagination.site-pagination__list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, .08), transparent 34%),
    rgba(12, 14, 18, .84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  list-style: none;
}

.site-content-dark .site-pagination__list > li,
.site-content-dark .pagination.site-pagination__list > li {
  margin: 0 !important;
  padding: 0 !important;
}

.site-content-dark .site-pagination__list > li::before,
.site-content-dark .pagination.site-pagination__list > li::before {
  display: none !important;
  content: none !important;
}

.site-content-dark .site-pagination__list > li > a,
.site-content-dark .site-pagination__list > li > span,
.site-content-dark .pagination.site-pagination__list > li > a,
.site-content-dark .pagination.site-pagination__list > li > span {
  float: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 44px;
  margin: 0;
  padding: 0 15px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0 !important;
  background: rgba(12, 14, 18, .58);
  color: rgba(255, 255, 255, .76);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-content-dark .site-pagination__list > li:last-child > a,
.site-content-dark .site-pagination__list > li:last-child > span {
  border-right: 0;
}

.site-content-dark .site-pagination__list > li > a:hover,
.site-content-dark .site-pagination__list > li > a:focus {
  background: rgba(227, 6, 19, .13);
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--accent-strong);
}

.site-content-dark .site-pagination__list > li.active > a,
.site-content-dark .site-pagination__list > li.active > span,
.site-content-dark .pagination.site-pagination__list > li.active > a,
.site-content-dark .pagination.site-pagination__list > li.active > span {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 60, 71, .22), transparent 68%),
    linear-gradient(180deg, rgba(227, 6, 19, .32), rgba(227, 6, 19, .2));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 60, 71, .38), inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 28px rgba(227, 6, 19, .12);
}

.site-content-dark .site-pagination__list > li.disabled > a,
.site-content-dark .site-pagination__list > li.disabled > span,
.site-content-dark .pagination.site-pagination__list > li.disabled > a,
.site-content-dark .pagination.site-pagination__list > li.disabled > span {
  pointer-events: none;
  background: rgba(12, 14, 18, .42);
  color: rgba(255, 255, 255, .32);
  box-shadow: none;
}

.site-content-dark .site-news-aside-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 12%, rgba(227, 6, 19, .1), transparent 24%),
    linear-gradient(180deg, rgba(18, 20, 25, .86), rgba(10, 12, 16, .94)) !important;
}

.site-content-dark .site-news-aside-card .panel-body {
  padding: 18px;
}

.site-content-dark .site-news-aside-card h4 {
  margin: 0 0 26px;
  color: #fff !important;
  font-size: 1.04rem;
  text-align: left;
}

.site-content-dark .site-news-aside-card h4 a {
  display: inline;
  color: #fff;
}

.site-content-dark .site-news-aside-item + .site-news-aside-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.site-content-dark .site-news-aside-item a {
  display: grid !important;
  gap: 10px;
  padding: 0 !important;
}

.site-content-dark .site-news-aside-item__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .04);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-content-dark .site-news-aside-item__date {
  color: var(--accent-strong);
  font-size: .82rem;
  font-weight: 850;
}

.site-content-dark .site-news-aside-item__title {
  color: rgba(255, 255, 255, .88);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.18;
}

.site-content-dark .site-news-aside-item a:hover .site-news-aside-item__title,
.site-content-dark .site-news-aside-item a:focus .site-news-aside-item__title {
  color: var(--accent-strong);
}

@media (max-width: 991px) {
  .site-news-page .site-news-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-news-page .site-news-main,
  .site-news-page .site-news-sidebar {
    grid-column: 1;
  }

  .site-news-page .site-news-sidebar {
    order: -1;
  }

  .site-news-sidebar__br {
    position: static;
  }
}

@media (max-width: 767px) {
  .site-news-page .site-news-grid {
    grid-template-columns: 1fr;
  }

  .site-content-dark .site-pagination {
    margin: 28px 0 4px;
  }

  .site-content-dark .site-pagination__list,
  .site-content-dark .pagination.site-pagination__list {
    width: 100%;
  }

  .site-content-dark .site-pagination__list > li,
  .site-content-dark .pagination.site-pagination__list > li {
    flex: 1 1 auto;
  }

  .site-content-dark .site-pagination__list > li > a,
  .site-content-dark .site-pagination__list > li > span,
  .site-content-dark .pagination.site-pagination__list > li > a,
  .site-content-dark .pagination.site-pagination__list > li > span {
    min-width: 38px;
    min-height: 40px;
    padding: 0 10px;
    font-size: .9rem;
  }
}

.site-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 48px;
}

.site-content-main {
  min-width: 0;
}

.site-content-date {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.site-notice {
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 204, 101, .42);
  border-radius: 10px;
  background: rgba(255, 204, 101, .12);
  color: #ffd68a;
}

.site-prose {
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.72;
}

.site-prose p,
.site-prose ul,
.site-prose ol,
.site-prose table,
.site-prose blockquote {
  margin: 0 0 20px;
}

.site-prose ul,
.site-prose ol {
  padding-left: 24px;
}

.site-prose ul { list-style: disc; }
.site-prose ol { list-style: decimal; }

.site-prose h2,
.site-prose h3,
.site-prose h4 {
  margin: 34px 0 16px;
  color: #fff;
  line-height: 1.22;
}

.site-prose img,
.site-content-media iframe,
.site-content-media video {
  max-width: 100%;
  height: auto;
}

.site-video-embed,
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.cms-br-page {
  padding: 70px 0;
  background: #08090c;
  color: #f5f5f5;
}

.cms-br-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.cms-br-flash {
  transition: opacity .2s ease, transform .2s ease;
}

.cms-br-flash.is-hiding {
  opacity: 0;
  transform: translateY(-4px);
}

.cms-br-head h1 {
  min-width: 0;
}

.cms-br-section-nav {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.cms-br-page .cms-br-section-nav__link {
  color: #ff3c47 !important;
  text-decoration: none;
}

.cms-br-page .cms-br-section-nav__link:hover,
.cms-br-page .cms-br-section-nav__link:focus {
  color: #fff;
}

.cms-br-page .cms-br-section-nav__link.is-active {
  color: #fff !important;
  pointer-events: none;
}

.cms-br-section-nav__separator {
  color: rgba(255, 255, 255, .35);
}

.cms-br-mode {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 12px;
  margin-left: auto;
}

.cms-br-mode .btn {
  margin: 0;
}

.cms-br-head h1,
.cms-br-list-title {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.cms-br-preview,
.cms-br-form,
.cms-br-table {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(14, 16, 21, .92);
}

.cms-br-preview {
  display: grid;
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.cms-br-preview__slot {
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #7f2127 0%, #4f1217 52%, #2a0306 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.cms-br-preview__slot.is-active {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.cms-br-preview.is-editing .cms-br-preview__slot {
  opacity: .32;
  filter: saturate(.55);
  pointer-events: none;
}

.cms-br-preview.is-editing .cms-br-preview__slot.is-editing-target {
  opacity: 1;
  filter: none;
  outline: 3px solid #ff4f5a;
  outline-offset: 2px;
  pointer-events: auto;
}

.cms-br-preview__slot.has-image {
  background-color: #0b0e14;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .18)),
    var(--br-preview-desktop-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}

.cms-br-preview__slot.has-desktop-image {
  background-color: #0b0e14;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .18)),
    var(--br-preview-desktop-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__slot.has-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .18)),
    var(--br-preview-mobile-image);
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__slot.has-mobile-image {
  background-color: #0b0e14;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .18)),
    var(--br-preview-mobile-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__slot--top.has-desktop-image:not(.has-mobile-image) {
  background: linear-gradient(135deg, #7f2127 0%, #4f1217 52%, #2a0306 100%);
  text-shadow: none;
}

.cms-br-preview__slot--top {
  aspect-ratio: 40 / 3;
  min-height: 0;
  border-radius: 6px;
}

.cms-br-preview:not([data-mode="mobile"]) > .cms-br-preview__slot--top {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__slot--top {
  aspect-ratio: 43 / 10;
}

.cms-br-preview__content-layout {
  display: grid;
  grid-template-areas: "form sidebar";
  grid-template-columns: minmax(0, 1fr) minmax(250px, .32fr);
  gap: 22px;
  align-items: stretch;
}

.cms-br-preview__content-layout .cms-br-form {
  grid-area: form;
}

.cms-br-preview__content-layout .cms-br-preview__sidebar {
  grid-area: sidebar;
}

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

.cms-br-preview__slot--home {
  aspect-ratio: 30 / 13;
  min-height: 0;
  border-radius: 18px;
  font-size: 15px;
}

.cms-br-preview__sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
}

.cms-br-preview__slot--square {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 12px;
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__slot--top {
  min-height: 0;
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__slot--home {
  min-height: 0;
}

.cms-br-preview[data-mode="mobile"] {
  grid-template-areas:
    "form top"
    "form home"
    "form sidebar";
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  align-items: start;
}

.cms-br-preview[data-mode="mobile"] > .cms-br-preview__slot--top {
  grid-area: top;
}

.cms-br-preview[data-mode="mobile"] > .cms-br-preview__home {
  grid-area: home;
  grid-template-columns: 1fr;
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__content-layout {
  display: contents;
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__content-layout .cms-br-form {
  grid-area: form;
}

.cms-br-preview[data-mode="mobile"] .cms-br-preview__content-layout .cms-br-preview__sidebar {
  grid-area: sidebar;
}

.cms-br-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  position: relative;
}

.cms-br-form__cancel {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255, 255, 255, .68);
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
}

.cms-br-form__cancel:hover,
.cms-br-form__cancel:focus {
  color: #fff;
  background: rgba(255, 60, 71, .2);
  text-decoration: none;
}

.cms-br-form label {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .86);
}

.cms-br-form .cms-br-file-label {
  font-size: 14px;
  line-height: 1.35;
}

.cms-br-form input[type="file"] {
  height: 36px;
  padding: 5px 8px;
  font-size: 14px;
  line-height: 1.4;
}

.cms-br-form input[type="file"]::file-selector-button,
.cms-br-form input[type="file"]::-webkit-file-upload-button {
  font-size: 13px;
}

.cms-br-size-hint {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

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

.cms-br-field {
  position: relative;
  display: grid;
  gap: 6px;
}

.cms-br-field__error {
  position: absolute;
  left: 12px;
  top: calc(100% + 8px);
  z-index: 20;
  width: max-content;
  max-width: calc(100% - 12px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 60, 71, .62);
  border-radius: 7px;
  background: #111620;
  color: #f3f5f9;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .48), 0 0 0 1px rgba(227, 6, 19, .08);
}

.cms-br-field__error::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 100%;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(255, 60, 71, .62);
  border-left: 1px solid rgba(255, 60, 71, .62);
  background: #111620;
  transform: translateY(5px) rotate(45deg);
}

.cms-br-field__error[hidden] {
  display: none;
}

.cms-br-field .form-control.is-invalid {
  border-color: rgba(255, 60, 71, .78);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .16);
}

.cms-br-date-picker {
  display: block;
  min-width: 0;
}

.cms-br-date-picker .cms-publication-datetime__control {
  display: block;
}

.cms-has-adminbar .cms-br-date-picker__popup {
  position: fixed;
  z-index: 65030;
  grid-template-columns: minmax(0, 340px);
  width: min(calc(100vw - 32px), 364px);
}

.cms-br-list-title {
  margin-top: 34px;
  margin-bottom: 16px;
  text-align: center;
}

.cms-br-page .cms-br-requests .cms-br-list-title {
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: -.015em;
  line-height: 1.12;
  text-align: left;
}

.cms-br-page .cms-br-requests-table {
  font-size: 13px !important;
}

.cms-br-page .cms-br-requests-table > thead > tr > th {
  padding: 12px 14px;
  color: rgba(255, 255, 255, .88);
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
}

.cms-br-page .cms-br-requests-table > tbody > tr > td {
  padding: 15px 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42;
}

.cms-br-page .cms-br-requests-table b {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1.28;
}

.cms-br-page .cms-br-requests-table small {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.cms-br-page .cms-br-requests-table time,
.cms-br-page .cms-br-requests-table .cms-br-request-controls {
  font-variant-numeric: tabular-nums;
}

.cms-br-page .cms-br-requests-table time {
  color: rgba(255, 255, 255, .72);
}

.cms-br-page .cms-br-requests-table a {
  color: rgba(255, 255, 255, .84);
  font-weight: 600;
}

.cms-br-page .cms-br-requests-table .cms-br-request-status .form-control,
.cms-br-page .cms-br-requests-table .cms-br-request-status .btn,
.cms-br-page .cms-br-requests-table .cms-br-request-action {
  min-height: 36px;
  font-size: 13px;
}

.cms-br-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cms-br-table-wrap .cms-br-table {
  min-width: 720px;
  margin-bottom: 0;
}

.cms-br-table__campaign-stripe-head,
.cms-br-table__campaign-stripe {
  width: 5px;
  min-width: 5px;
  padding: 0 !important;
  border: 0 !important;
}

.cms-br-table__campaign-stripe {
  border-radius: 0 0 0 4px;
  background: linear-gradient(180deg, rgba(255, 60, 71, .92), rgba(227, 6, 19, .72)) !important;
  box-shadow: 0 0 9px rgba(227, 6, 19, .16);
}

.cms-br-table > tbody > .cms-br-table__campaign-edge > td {
  height: 1px;
  padding: 0 !important;
  border: 0 !important;
  background: #07080b !important;
}

.cms-br-table__campaign-edge span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255, 60, 71, .76) 0%,
    rgba(227, 6, 19, .22) 26%,
    rgba(227, 6, 19, .055) 50%,
    rgba(227, 6, 19, 0) 72%);
  box-shadow: 0 0 7px rgba(227, 6, 19, .1);
}

.cms-br-table > tbody > .cms-br-table__campaign-title > td {
  padding: 10px 14px;
  border-top: 0;
  background: #111620 !important;
  color: #fff;
  letter-spacing: .01em;
}

.cms-br-table__campaign-title strong {
  font-size: 14px;
}

.cms-br-table > tbody > .cms-br-table__campaign-gap > td {
  height: 14px;
  padding: 0 !important;
  border: 0 !important;
  background: #07080b !important;
}

.cms-br-table {
  overflow: hidden;
  color: #222;
}

.cms-br-table th,
.cms-br-table td {
  vertical-align: middle !important;
}

.cms-br-table th {
  text-align: center;
}

.cms-br-table__cell--center {
  text-align: center;
}

.cms-br-table__campaign-row--muted {
  opacity: .38;
}

.cms-br-table__campaign-row--editing {
  box-shadow: inset 4px 0 0 #ff4f5a;
}

.cms-br-table__campaign-row--editing > td {
  background: rgba(227, 6, 19, .16) !important;
}

.cms-br-table__campaign-row--editing > td:first-child {
  box-shadow: inset 4px 0 0 #ff4f5a;
}

.cms-br-table__link {
  max-width: 260px;
  overflow-wrap: anywhere;
}

.cms-br-table__link a {
  color: inherit;
  text-decoration: underline;
}

.cms-br-table__actions > div {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.cms-br-table__edit-link {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.cms-br-table__edit-link:hover,
.cms-br-table__edit-link:focus {
  color: #fff;
}

.cms-br-table__actions .cms-br-table__delete-link {
  background: transparent;
  color: #b96b70;
  text-decoration: none;
  transition: color .16s ease;
}

.cms-br-table__actions .cms-br-table__delete-link:hover,
.cms-br-table__actions .cms-br-table__delete-link:focus {
  color: #ff5d66;
  text-decoration: none;
}

.cms-br-table__thumbs {
  text-align: center;
}

.cms-br-table__thumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cms-br-table__thumbs img {
  width: 76px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
}

.cms-br-device-stats {
  min-width: 132px;
  margin: 0 auto;
  border-collapse: collapse;
  color: #f5f5f5;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.cms-br-device-stats th,
.cms-br-device-stats td {
  padding: 3px 6px;
  border: 0;
  white-space: nowrap;
}

.cms-br-device-stats thead th {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 500;
}

.cms-has-adminbar .cms-br-device-stats thead,
.cms-has-adminbar .cms-br-device-stats thead tr,
.cms-has-adminbar .cms-br-device-stats thead th {
  background: transparent;
}

.cms-br-device-stats thead .fa {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.cms-br-device-stats tbody th {
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  text-align: left;
}

@media (max-width: 767px) {
  .cms-br-preview,
  .cms-br-preview[data-mode="mobile"] {
    grid-template-areas:
      "top"
      "home"
      "content";
    grid-template-columns: minmax(0, 1fr);
  }

  .cms-br-preview:not([data-mode="mobile"]) > .cms-br-preview__slot--top,
  .cms-br-preview[data-mode="mobile"] > .cms-br-preview__slot--top {
    grid-area: top;
    width: 100%;
    margin-left: 0;
    aspect-ratio: 43 / 10;
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-left: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
  }

  .cms-br-preview > .cms-br-preview__home,
  .cms-br-preview[data-mode="mobile"] > .cms-br-preview__home {
    grid-area: home;
  }

  .cms-br-preview > .cms-br-preview__content-layout,
  .cms-br-preview[data-mode="mobile"] > .cms-br-preview__content-layout {
    display: grid;
    grid-area: content;
    grid-template-areas:
      "sidebar"
      "form";
    grid-template-columns: minmax(0, 1fr);
  }

  .cms-br-preview__sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-br-table-wrap--campaigns {
    overflow: visible;
  }

  .cms-br-table-wrap--campaigns .cms-br-table {
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
  }

  .cms-br-table-wrap--campaigns .cms-br-table > thead {
    display: none;
  }

  .cms-br-table-wrap--campaigns .cms-br-table > tbody,
  .cms-br-table-wrap--campaigns .cms-br-table > tbody > tr {
    display: block;
    width: 100%;
  }

  .cms-br-table-wrap--campaigns .cms-br-table__campaign-row {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0 0 8px 8px;
    background: rgba(14, 16, 21, .92);
  }

  .cms-br-table-wrap--campaigns .cms-br-table__campaign-row + .cms-br-table__campaign-row {
    margin-top: 12px;
    border-radius: 8px;
  }

  .cms-br-table-wrap--campaigns .cms-br-table__campaign-stripe {
    display: none;
  }

  .cms-br-table-wrap--campaigns .cms-br-table__campaign-row > td {
    display: grid;
    grid-template-columns: minmax(92px, .34fr) minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    max-width: none;
    padding: 12px 14px !important;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(14, 16, 21, .92) !important;
    color: rgba(255, 255, 255, .9);
    text-align: left;
  }

  .cms-br-table-wrap--campaigns .cms-br-table__campaign-row > td:last-child {
    border-bottom: 0;
  }

  .cms-br-table__campaign-row > td::before {
    content: attr(data-label);
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .cms-br-table__campaign-row .cms-br-table__value {
    min-width: 0;
    text-align: left;
  }

  .cms-br-table__campaign-row .cms-br-table__thumb-list {
    justify-content: flex-start;
  }

  .cms-br-table__campaign-row .cms-br-device-stats {
    margin: 0;
  }

  .cms-br-table__campaign-row .cms-br-table__actions > div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
  }

  .cms-br-table-wrap--campaigns .cms-br-table__campaign-title > td,
  .cms-br-table-wrap--campaigns .cms-br-table__campaign-edge > td,
  .cms-br-table-wrap--campaigns .cms-br-table__campaign-gap > td,
  .cms-br-table-wrap--campaigns .cms-br-table__empty > td {
    display: block;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .cms-br-head {
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }

  .cms-br-mode {
    gap: 10px;
  }
}

.site-video-embed,
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.site-video-embed > iframe,
.site-video-embed > video,
.site-video-embed > object,
.site-video-embed > embed,
.site-video-embed > div,
.embed-responsive > iframe,
.embed-responsive > video,
.embed-responsive > object,
.embed-responsive > embed,
.embed-responsive > div,
.embed-responsive-item {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  border: 0;
}

.site-video-embed > div,
.embed-responsive > div {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.site-video-embed iframe,
.embed-responsive iframe {
  position: absolute !important;
  inset: 0;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  border: 0;
  vertical-align: top;
}

.site-video-embed video,
.site-video-embed img,
.site-video-embed canvas,
.embed-responsive video,
.embed-responsive img,
.embed-responsive canvas {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.site-video-embed > div,
.site-video-embed [style*="background-image"],
.embed-responsive > div,
.embed-responsive [style*="background-image"] {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.site-content-part + .site-content-part {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.site-content-media,
.site-content-info,
.site-content-section {
  margin-top: 34px;
}

.site-content-info,
.site-side-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(23, 24, 29, .8), rgba(15, 16, 20, .88));
}

.site-content-info {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.site-content-info div {
  display: grid;
  gap: 4px;
}

.site-content-info span {
  color: var(--muted);
}

.site-content-section h2,
.site-side-section h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.site-file-list,
.site-side-list {
  display: grid;
  gap: 10px;
}

.site-file-list a,
.site-side-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .88);
}

.site-file-list small {
  color: var(--muted);
  white-space: nowrap;
}

.site-side-list a.is-active {
  border-color: rgba(227, 6, 19, .48);
}

.site-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.site-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
}

.site-content-side {
  display: grid;
  gap: 22px;
}

.site-side-section {
  padding: 22px;
}

@media (max-width: 1180px) {
  .marketplace-strip {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }

  .marketplace-strip__divider--search {
    display: none;
  }

  .marketplace-searchbox {
    flex: 1 1 100%;
    min-width: 0;
    padding-left: 0;
  }

  .grid--events,
  .grid--media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partners-carousel:not(.owl-loaded) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .site-navbar {
    grid-template-columns: auto auto;
    padding: 10px 14px;
  }

  .site-navbar__toggler {
    display: block;
  }

  .site-navbar__collapse {
    display: none;
    grid-column: 1 / -1;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    justify-items: center;
    width: 100%;
    justify-content: stretch;
    grid-template-columns: minmax(0, 1fr);
  }

  .site-navbar__collapse.is-open {
    display: grid;
    gap: 14px;
  }

  .site-nav {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .site-nav__link {
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .site-header__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .site-language-selector {
    margin-bottom: 6px;
  }

  .site-navbar .site-navbar__collapse .site-header__actions {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .header-button {
    width: auto;
    min-width: 210px;
    justify-self: center;
    margin: 0 auto;
    text-align: center;
  }

  .site-navbar .site-navbar__collapse .site-header__actions .header-button {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__navigation {
    display: grid;
    gap: 12px;
  }

  .site-footer__column--nav {
    display: contents;
  }

  .site-footer__column--nav:first-child .site-footer__link:nth-child(1) { order: 1; }
  .site-footer__column--nav:nth-child(2) .site-footer__link:nth-child(1) { order: 2; }
  .site-footer__column--nav:first-child .site-footer__link:nth-child(2) { order: 3; }
  .site-footer__column--nav:nth-child(2) .site-footer__link:nth-child(2) { order: 4; }
  .site-footer__column--nav:first-child .site-footer__link:nth-child(3) { order: 5; }
  .site-footer__column--nav:nth-child(2) .site-footer__link:nth-child(3) { order: 6; }

  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  body {
    padding-bottom: 84px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 460px;
    padding: 24px 0 44px;
  }

  .hero-panel {
    padding: 24px;
  }

  .hero--slider .hero-panel {
    width: min(82vw, 760px);
    height: auto;
    min-height: min(30.37vw, 282px);
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(22px, 4.5vw, 40px) clamp(22px, 5vw, 40px);
  }

  .section--event-pair {
    margin-top: -12px;
  }

  .event-pair {
    grid-template-columns: 1fr;
  }

  .event-mini {
    min-height: 0;
  }

  .site-br-slot--home-event {
    min-height: 0;
  }

  .marketplace-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    position: relative;
  }

  .marketplace-strip__divider {
    display: none;
  }

  .marketplace-control {
    position: static;
  }

  .marketplace-popover {
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: 100%;
    max-width: 100%;
  }

  .marketplace-trigger {
    justify-content: center;
    width: 100%;
    min-height: 50px;
  }

  .marketplace-trigger__name {
    display: none;
  }

  .marketplace-searchbox {
    display: block;
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
  }

  .marketplace-gateway__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid--events,
  .grid--media {
    grid-template-columns: 1fr;
  }

  .community-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-carousel:not(.owl-loaded) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
    padding: 24px 20px;
  }

  .cta-panel__button {
    width: 100%;
    min-width: 0;
  }

  .site-content-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-content-dark {
    padding: 54px 0 66px;
  }

.site-content-dark > .container-fluid > .row:first-child {
  margin-bottom: 0;
}

  .site-content-dark > .container-fluid > .row:nth-of-type(2) {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-mobile-menu {
    display: none !important;
  }

  .site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-main-column,
  .site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column {
    grid-column: 1;
    grid-row: auto;
  }

  .site-content-dark > .container-fluid > .row:nth-of-type(2) > .site-content-side-column {
    position: static;
  }

  .site-content-side-column__br {
    position: static;
  }

  .site-content-dark .bvi-speech > .panel {
    border-radius: 20px;
  }

  .site-content-dark .site-speaker-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-content-dark .site-speaker-card__photo {
    grid-row: 1;
    width: min(118px, 48vw);
  }

  .site-content-dark .site-speaker-card__content {
    text-align: center;
  }

  .site-content-dark .site-speaker-card__text {
    margin-right: auto;
    margin-left: auto;
  }

  .site-content-dark .catalogMenu .panel-collapse {
    padding: 20px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .hero--slider {
    min-height: clamp(540px, 72vw, 620px);
  }
}

@media (max-width: 640px) {
  :root {
    --top-strip-height: 52px;
  }

  html {
    scroll-padding-top: 96px;
  }

  body {
    padding-bottom: 0;
  }

  .top-strip {
    margin-bottom: 10px;
  }

  .top-strip__image {
    object-position: center center;
  }

  .site-br-slot--top-wide {
    aspect-ratio: 43 / 10;
    height: auto;
  }

  .site-br-slot--desktop-creative {
    display: none;
  }

  .site-br-slot--mobile-creative {
    display: block;
  }

  .hero {
    min-height: 420px;
    padding: 20px 0 36px;
    background-position: center center;
  }

  .hero--slider {
    min-height: min(420px, 96vw);
  }

  .hero--slider .home-hero-slide {
    align-items: center;
    padding: 16px 0 46px;
  }

  .hero--slider .hero-panel {
    width: min(88vw, 520px);
    min-height: min(37.45vw, 221px);
    padding: clamp(18px, 5vw, 26px) clamp(18px, 5.8vw, 24px);
  }

  .hero--slider .hero-panel__content h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.25rem);
  }

  .hero--slider .hero-panel__subtitle {
    margin-top: 10px;
    font-size: clamp(.88rem, 3.8vw, 1.02rem);
    line-height: 1.25;
  }

  .hero--slider .hero-panel__actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero--slider .button {
    min-height: 36px;
    padding: 0 13px;
    font-size: .82rem;
  }

  .event-card {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .article-card {
    grid-template-rows: minmax(196px, 210px) minmax(0, 1fr);
  }

  .marketplace-strip {
    gap: 6px;
    padding: 10px;
  }

  .marketplace-trigger {
    min-height: 48px;
    padding: 0 4px;
  }

  .marketplace-trigger__icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
  }

  .marketplace-trigger__value {
    font-size: .8rem;
  }

  .marketplace-searchbox__field {
    grid-template-columns: 1fr;
  }

  .marketplace-searchbox__button {
    width: 100%;
  }

  .marketplace-gateway__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketplace-gateway__tile {
    min-height: 118px;
  }

  .community-member__avatar {
    width: 112px;
    height: 112px;
    padding: 7px;
  }

  .partners-carousel:not(.owl-loaded) {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    padding: 0 12px;
  }

  .partner-logo__wordmark {
    font-size: 1rem;
    white-space: normal;
  }

  .site-content-hero {
    padding: 42px 0 32px;
  }

  .site-content-hero h1 {
    font-size: 34px;
  }

  .site-content-body {
    padding: 40px 0 54px;
  }

  .site-prose {
    font-size: 16px;
  }

  .site-gallery {
    grid-template-columns: 1fr;
  }

  .site-content-dark {
    padding: 38px 0 50px;
  }

  .site-content-dark .container,
  .site-content-dark .container-fluid {
    width: min(100% - 24px, 1220px);
    max-width: calc(100vw - 24px);
  }

  .site-content-dark .page-title {
    font-size: clamp(1.65rem, 7.4vw, 2.1rem);
    line-height: 1.02;
  }

  .site-content-dark .breadcrumb > li {
    font-size: .86rem;
  }

  .site-content-dark .bvi-speech > .panel {
    padding: 18px;
    border-radius: 16px;
  }

  .site-content-dark .site-speakers-block {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .site-content-dark .site-speakers-block__eyebrow {
    font-size: 19px;
  }

  .site-content-dark .site-speakers-block__eyebrow::before {
    height: 20px;
  }

  .site-content-dark .site-speaker-card__name {
    font-size: 20px;
  }

  .site-content-dark .site-speaker-card__position {
    font-size: 13px;
  }

  .site-content-dark .bvi-speech p,
  .site-content-dark .bvi-speech li,
  .site-content-dark .panel-collapse p,
  .site-content-dark .panel-collapse li {
    font-size: .96rem;
    line-height: 1.62;
  }

  .site-content-dark form.form-horizontal[id^="sendForm_"] {
    margin-top: 24px;
    padding: 18px 14px 22px;
    border-radius: 18px;
  }

  .site-content-dark form.form-horizontal[id^="sendForm_"]::before {
    right: 18px;
    left: 18px;
  }

  .site-content-dark .table {
    display: block;
    overflow-x: auto;
    border-radius: 14px;
  }

  .site-content-dark .site-params-table {
    display: block;
    margin: 8px 0 18px;
    padding: 14px 16px 10px;
    overflow: visible;
    border: 1px solid rgba(255, 60, 71, .48);
    border-radius: 14px;
    background: transparent;
    font-size: 1rem !important;
  }

  .site-content-dark .site-params-table > tbody {
    display: block;
  }

  .site-content-dark .site-params-table > tbody > tr {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: transparent;
    line-height: 1.35;
  }

  .site-content-dark .site-params-table > tbody > tr:last-child {
    border-bottom: 0;
  }

  .site-content-dark .site-params-table > tbody > tr > td {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .site-content-dark .site-params-table > tbody > tr > td.hidden-xs {
    display: none !important;
  }

  .site-content-dark .site-params-table > tbody > tr > td:first-child {
    display: block !important;
    min-width: 0;
    line-height: 1.35;
  }

  .site-content-dark .site-params-table > tbody > tr > td:first-child b {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .62);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .site-content-dark .site-params-table p.visible-xs {
    display: block !important;
    min-width: 0;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.35;
  }

  .site-content-dark .catalogMenu .list-group-item {
    min-height: 50px;
    padding: 14px 44px 14px 16px !important;
  }

  .site-content-dark .catalogMenu .list-group-item::after {
    right: 16px;
  }

  .site-content-dark .catalogMenu .panel-collapse {
    padding: 18px !important;
    background:
      radial-gradient(ellipse at 92% 10%, rgba(227, 6, 19, .062), transparent 62%),
      radial-gradient(ellipse at 6% 92%, rgba(227, 6, 19, .045), transparent 66%),
      rgba(8, 10, 14, .58) !important;
    box-shadow: inset 0 34px 72px rgba(227, 6, 19, .012), inset 0 -42px 86px rgba(227, 6, 19, .015);
  }

  .site-content-dark .site-child-form-button {
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
  }

  #alertModal.site-form-modal .modal-dialog {
    width: calc(100vw - 24px) !important;
    margin: 22px auto 14px;
  }

  #alertModal.site-form-modal .modal-header {
    top: 18px;
    right: 18px;
  }

  #alertModal.site-form-modal .close {
    width: 40px;
    height: 40px;
  }

  #alertModal.site-form-modal .close::before {
    font-size: 24px;
  }

  #alertModal.site-form-modal .modal-content {
    overflow-y: hidden;
    padding: 54px 16px 28px;
    border-radius: 20px;
  }

  #alertModal.site-form-modal #alertModalIframe {
    border-radius: 0;
  }

  #speakerModal .modal-dialog {
    width: calc(100vw - 24px);
    margin: 24px auto;
  }

  .site-speaker-modal__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 54px 18px 24px;
    text-align: center;
  }

  .site-speaker-modal__media .community-member__avatar {
    width: 124px;
    height: 124px;
  }

  .site-speaker-modal__label {
    justify-content: center;
  }

  .site-speaker-modal__label::before {
    display: none;
  }

  .site-speaker-modal__name {
    font-size: 1.34rem;
  }

  .site-speaker-modal__position {
    margin-bottom: 12px;
    font-size: .95rem;
  }

  .site-speaker-modal__text {
    font-size: .95rem;
    line-height: 1.5;
  }

  .site-onlyform-dark {
    padding: 0;
  }

  .site-onlyform-dark form.form-horizontal[id^="sendForm_"] {
    padding: 0 !important;
  }

  .site-onlyform-dark form.form-horizontal[id^="sendForm_"] p[style*="text-align: center"] {
    white-space: normal;
    margin-bottom: 12px;
    font-size: .92rem;
    line-height: 1.35;
  }

  .site-onlyform-dark form.form-horizontal[id^="sendForm_"] p[style*="text-align: center"] br {
    display: initial;
  }

  .site-onlyform-dark form.form-horizontal[id^="sendForm_"] p[style*="text-align: center"] b {
    margin: 0;
  }

  .site-onlyform-dark form.form-horizontal[id^="sendForm_"] .row > [class*="col-"] {
    margin-bottom: 10px !important;
  }

  .site-onlyform-dark form.form-horizontal[id^="sendForm_"] br {
    display: none;
  }

  .site-onlyform-dark .inputGroup .form-control,
  .site-onlyform-dark .inputGroup input,
  .site-onlyform-dark .inputGroup textarea,
  .site-onlyform-dark .inputGroup select {
    min-height: 58px;
    font-size: 1rem;
  }

  .site-onlyform-dark form.form-horizontal[id^="sendForm_"] p {
    margin-bottom: 12px;
    font-size: .84rem;
    line-height: 1.35;
  }

  .site-onlyform-dark .btn-primary {
    min-height: 46px;
    padding: 11px 22px;
  }
}

.center{
  text-align: center;
}

body.mymice-body {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(227, 6, 19, .14), transparent 42%),
    linear-gradient(180deg, #11161f 0%, #080b11 100%);
  background-attachment: fixed, fixed;
  background-color: #080b11;
  background-repeat: no-repeat, no-repeat;
  background-size: 100vw 100vh, 100vw 100vh;
}

body.mymice-body .mymice-page {
  min-height: 100vh;
  background: transparent;
  color: #fff;
}

body.mymice-body .site-header {
  background: transparent;
}

body.mymice-body.cms-has-adminbar .site-header {
  top: 40px;
}

.mymice-hero {
  padding: 50px 0 28px;
}

.mymice-hero__inner,
.mymice-form__bar,
.mymice-post__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mymice-hero__content {
  max-width: 720px;
}

.mymice-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mymice-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: .96;
}

.mymice-hero p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  line-height: 1.45;
}

.mymice-add-link {
  flex: 0 0 auto;
}

.mymice-add-link.button {
  min-height: 48px;
  padding: 13px 26px;
  font-size: .96rem;
}

.mymice-feed {
  padding: 24px 0 90px;
}

.mymice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.mymice-feed__inner {
  min-width: 0;
}

.mymice-sidebar {
  align-self: stretch;
  align-content: start;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.mymice-sidebar__ads {
  position: sticky;
  top: 102px;
  align-self: start;
  display: grid;
}

.mymice-sidebar .site-news-aside-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 12%, rgba(227, 6, 19, .1), transparent 24%),
    linear-gradient(180deg, rgba(18, 20, 25, .86), rgba(10, 12, 16, .94)) !important;
}

.mymice-sidebar .site-news-aside-card .panel-body {
  padding: 18px;
}

.mymice-sidebar .site-news-aside-card h4 {
  margin: 0 0 26px;
  color: #fff !important;
  font-size: 1.04rem;
  text-align: left;
}

.mymice-sidebar .site-news-aside-card h4 a {
  color: #fff;
}

.mymice-sidebar .site-news-aside-item + .site-news-aside-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.mymice-sidebar .site-news-aside-item a {
  display: grid !important;
  gap: 10px;
  padding: 0 !important;
}

.mymice-sidebar .site-news-aside-item__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .04);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mymice-sidebar .site-news-aside-item__date {
  color: var(--accent-strong);
  font-size: .82rem;
  font-weight: 850;
}

.mymice-sidebar .site-news-aside-item__title {
  color: rgba(255, 255, 255, .88);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.18;
}

.mymice-sidebar .site-news-aside-item a:hover .site-news-aside-item__title,
.mymice-sidebar .site-news-aside-item a:focus .site-news-aside-item__title {
  color: var(--accent-strong);
}

.mymice-topics {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 12%, rgba(227, 6, 19, .1), transparent 24%),
    linear-gradient(180deg, rgba(18, 20, 25, .86), rgba(10, 12, 16, .94));
}

.mymice-topics h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.04rem;
}

.mymice-topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mymice-topic {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(237, 27, 36, .28);
  border-radius: 999px;
  background: rgba(237, 27, 36, .1);
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
}

.mymice-topic:hover,
.mymice-topic:focus-visible,
.mymice-topic.is-active {
  border-color: rgba(237, 27, 36, .75);
  background: rgba(237, 27, 36, .2);
  color: #fff;
}

.mymice-flash,
.mymice-empty,
.mymice-form,
.mymice-post {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.mymice-flash,
.mymice-empty {
  margin-bottom: 18px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, .82);
}

.mymice-flash {
  transition: opacity .25s ease, visibility .25s ease;
}

.mymice-flash.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.mymice-form {
  margin-bottom: 26px;
  padding: 22px;
}

.mymice-form__label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.mymice-form textarea {
  display: block;
  width: 100%;
  min-height: 130px;
  margin-bottom: 16px;
  padding: 16px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(0, 0, 0, .2);
  color: #fff;
  line-height: 1.5;
}

.mymice-form textarea:focus {
  outline: 2px solid rgba(237, 27, 36, .5);
  outline-offset: 2px;
}

.mymice-upload {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(0, 0, 0, .14);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.mymice-upload:hover,
.mymice-upload:focus-visible,
.mymice-upload.is-dragover {
  border-color: rgba(237, 27, 36, .72);
  background: rgba(237, 27, 36, .08);
  outline: none;
}

.mymice-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mymice-upload__text {
  display: grid;
  gap: 5px;
}

.mymice-upload__text strong {
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
}

.mymice-upload__text span,
.mymice-upload__status {
  color: rgba(255, 255, 255, .62);
  font-size: .94rem;
  line-height: 1.45;
}

.mymice-upload__status {
  min-height: 1.35em;
}

.mymice-upload__previews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mymice-upload-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.mymice-upload-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mymice-upload-preview button {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 5px 8px;
  border: 0;
  border-radius: 6px;
  background: rgba(8, 10, 14, .78);
  color: #ff6670;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}

.mymice-existing-photos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: -6px 0 18px;
}

.mymice-existing-photos[hidden] {
  display: none;
}

.mymice-existing-photo {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.mymice-existing-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease;
}

.mymice-existing-photo input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mymice-existing-photo span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(8, 10, 14, .78);
  color: #ff6670;
  font-size: .78rem;
  font-weight: 700;
}

.mymice-existing-photo.is-marked-delete img {
  opacity: .36;
}

.mymice-existing-photo.is-marked-delete span {
  background: rgba(237, 27, 36, .9);
  color: #fff;
}

.mymice-posts {
  display: grid;
  gap: 18px;
}

.mymice-post {
  padding: 22px;
  scroll-margin-top: 110px;
}

.mymice-post__head {
  margin-bottom: 16px;
}

.mymice-post__avatar {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e30613, #2a6f8f);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.mymice-post__avatar--image {
  display: block;
  object-fit: cover;
}

.mymice-post__meta {
  flex: 1 1 auto;
  min-width: 0;
}

.mymice-post__meta strong,
.mymice-post__meta time {
  display: block;
}

.mymice-post__meta time {
  margin-top: 2px;
  color: rgba(255, 255, 255, .56);
  font-size: .92rem;
}

.mymice-post__delete {
  margin: 0;
}

.mymice-post__head-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.mymice-action-label {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.mymice-icon-button {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .58);
  font-size: .92rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.mymice-icon-button:hover,
.mymice-icon-button:focus-visible {
  border-color: rgba(255, 51, 66, .45);
  background: rgba(255, 51, 66, .1);
  color: #ff3342;
  transform: translateY(-1px);
  outline: none;
}

.mymice-icon-button--delete {
  color: #ff6670;
}

.mymice-icon-button--comment {
  width: 24px;
  height: 24px;
  border-color: transparent;
  background: transparent;
  font-size: .76rem;
}

.mymice-post__text {
  color: rgba(255, 255, 255, .82);
  font-size: 1.03rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.mymice-post__share-preview {
  position: relative;
  display: grid;
  grid-template-columns: clamp(280px, 34%, 560px) minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(0, 0, 0, .16);
  color: inherit;
  text-decoration: none;
}

.mymice-post__share-preview:hover,
.mymice-post__share-preview:focus-visible {
  border-color: rgba(237, 27, 36, .58);
  outline: none;
}

.mymice-post__share-media {
  grid-column: 1;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

.mymice-post__share-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mymice-post__share-body {
  position: absolute;
  inset: 0;
  grid-column: 2;
  min-width: 0;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px 16px 16px 0;
}

.mymice-post__share-body strong {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.3;
}

.mymice-post__share-body span {
  color: rgba(255, 255, 255, .64);
  font-size: .92rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.mymice-form__link-preview {
  margin: 0 0 12px;
}

.mymice-form__link-preview-card {
  display: grid;
  grid-template-columns: clamp(220px, 30%, 420px) minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(0, 0, 0, .16);
  color: inherit;
  text-decoration: none;
}

.mymice-form__link-preview-card:hover,
.mymice-form__link-preview-card:focus-visible {
  border-color: rgba(237, 27, 36, .58);
  outline: none;
}

.mymice-form__link-preview-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

.mymice-form__link-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mymice-form__link-preview-body {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 13px 13px 13px 0;
}

.mymice-form__link-preview-body strong {
  color: #fff;
  line-height: 1.3;
}

.mymice-form__link-preview-body span {
  color: rgba(255, 255, 255, .64);
  font-size: .9rem;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.site-content-breadcrumb-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 24px;
  padding-right: 190px;
}

.site-content-breadcrumb-row .breadcrumb {
  flex: 1 1 auto;
  min-width: 0;
}

.site-news-share {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: inline-block;
  margin: 0;
}

.site-news-share summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.site-news-share summary::-webkit-details-marker {
  display: none;
}

.site-news-share[open] summary,
.site-news-share summary:hover,
.site-news-share summary:focus-visible {
  color: #fff;
  outline: none;
}

.site-news-share__menu {
  position: absolute;
  z-index: 5;
  right: 0;
  top: calc(100% + 9px);
  display: grid;
  min-width: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #101116;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .38);
}

.site-news-share__menu a,
.site-news-share__menu button {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 11px 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  font: inherit;
  font-size: .95rem;
  font-weight: 650;
  text-align: left;
  text-decoration: none;
}

.site-news-share__menu > :last-child {
  border-bottom: 0;
}

.site-news-share__menu a:hover,
.site-news-share__menu a:focus-visible,
.site-news-share__menu button:hover,
.site-news-share__menu button:focus-visible {
  background: rgba(237, 27, 36, .14);
  color: #fff;
  outline: none;
}

@media (max-width: 640px) {
	.mymice-post__share-preview {
		grid-template-columns: 1fr;
	}

	.mymice-post__share-body {
		position: static;
		grid-column: auto;
		padding: 0 13px 13px;
	}

	.mymice-form__link-preview-card {
		grid-template-columns: 1fr;
	}

	.mymice-form__link-preview-media {
		width: 100%;
	}

	.mymice-form__link-preview-image {
		height: 100%;
	}

	.mymice-form__link-preview-body {
		padding: 0 13px 13px;
	}

  .site-content-breadcrumb-row {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-right: 0;
    row-gap: 10px;
  }

  .site-content-breadcrumb-row .site-news-share {
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
  }

  .mymice-post-share__menu {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    min-width: 0;
    max-width: none;
  }
}

.mymice-post__photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.mymice-post__photos a {
  grid-column: span 2;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.mymice-post__photos--1 a {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.mymice-post__photos--2 a,
.mymice-post__photos--4 a {
  grid-column: span 3;
}

.mymice-post__photos--5 a:first-child,
.mymice-post__photos--5 a:nth-child(2) {
  grid-column: span 3;
}

.mymice-post__photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.mymice-post__photos a:hover img,
.mymice-post__photos a:focus-visible img {
  transform: scale(1.035);
}

.mymice-post__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.mymice-post-share {
  position: relative;
  z-index: 3;
  margin: 0;
}

.mymice-post-share[open] {
  z-index: 20;
}

.mymice-post-share summary {
  list-style: none;
}

.mymice-post-share summary::-webkit-details-marker {
  display: none;
}

.mymice-post-share[open] summary,
.mymice-post-share summary:hover,
.mymice-post-share summary:focus-visible {
  border-color: rgba(255, 51, 66, .45);
  background: rgba(255, 51, 66, .1);
  color: #ff3342;
  transform: translateY(-1px);
  outline: none;
}

.mymice-post-share__menu {
  top: calc(100% + 9px);
  right: 0;
  bottom: auto;
  left: auto;
  min-width: 240px;
}

.mymice-post-share__status {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.mymice-like {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.mymice-like__button,
.mymice-like__login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, .58);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.mymice-like--comment .mymice-like__button,
.mymice-like--comment.mymice-like__login {
  color: rgba(255, 255, 255, .44);
  font-size: .86rem;
}

.mymice-like__count {
  min-width: .7em;
  font-size: .9em;
  font-weight: 850;
}

.mymice-like__button.is-active,
.mymice-like__button:hover,
.mymice-like__button:focus-visible,
.mymice-like__login:hover,
.mymice-like__login:focus-visible {
  color: #ff3342;
  transform: translateY(-1px);
  outline: none;
}

.mymice-like__button:disabled {
  cursor: default;
  opacity: .64;
}

.mymice-comments {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mymice-comments__more,
.mymice-comments__login {
  justify-self: start;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, .54);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.25;
}

.mymice-comments__more {
  cursor: pointer;
}

.mymice-comments__more:hover,
.mymice-comments__more:focus-visible,
.mymice-comments__login:hover,
.mymice-comments__login:focus-visible {
  color: #ff3342;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mymice-comments__list {
  display: grid;
  gap: 8px;
}

.mymice-comment {
  display: grid;
  gap: 3px;
}

.mymice-comment.is-hidden {
  display: none;
}

.mymice-comment__body {
  color: rgba(255, 255, 255, .82);
  font-size: .96rem;
  line-height: 1.45;
}

.mymice-comment__body strong {
  margin-right: 6px;
  color: #fff;
  font-weight: 850;
}

.mymice-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .44);
  font-size: .82rem;
}

.mymice-comment__meta form {
  margin: 0;
}

.mymice-comment__meta button:not(.mymice-like__button):not(.mymice-icon-button) {
  padding: 0;
  border: 0;
  background: none;
  color: #ff3342;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mymice-comment__meta button:not(.mymice-like__button):not(.mymice-icon-button):hover,
.mymice-comment__meta button:not(.mymice-like__button):not(.mymice-icon-button):focus-visible {
  color: #ff6670;
  text-decoration: none;
}

.mymice-comments__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  margin-top: 2px;
}

.mymice-comments__form textarea {
  display: block;
  width: 100%;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  padding: 10px 12px;
  resize: none;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
  color: #fff;
  font-size: .94rem;
  line-height: 1.35;
}

.mymice-comments__form textarea:focus {
  outline: 2px solid rgba(237, 27, 36, .45);
  outline-offset: 2px;
}

.mymice-comments__form button {
  min-height: 54px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #ed1b24;
  color: #fff;
  font-size: .9rem;
  font-weight: 850;
  cursor: pointer;
}

.mymice-comments__form button:hover,
.mymice-comments__form button:focus-visible {
  background: #ff3342;
}

@media (max-width: 767px) {
  .mymice-hero {
    padding: 60px 0 20px;
  }

  .mymice-hero__inner,
  .mymice-form__bar {
    align-items: stretch;
    flex-direction: column;
  }

  .mymice-add-link,
  .mymice-form__bar .button {
    justify-content: center;
    width: 100%;
  }

  .mymice-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .mymice-sidebar {
    position: static;
  }

  .mymice-sidebar__ads {
    position: static;
  }

  .mymice-upload {
    grid-template-columns: minmax(0, 1fr);
  }

  .mymice-upload__previews,
  .mymice-existing-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mymice-form,
  .mymice-post {
    padding: 16px;
  }

  .mymice-post__photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .mymice-post__photos a,
  .mymice-post__photos--1 a,
  .mymice-post__photos--2 a,
  .mymice-post__photos--4 a,
  .mymice-post__photos--5 a:first-child,
  .mymice-post__photos--5 a:nth-child(2) {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .mymice-comments__form {
    grid-template-columns: minmax(0, 1fr);
  }

  .mymice-comments__form button {
    justify-self: stretch;
  }
}

.mymice-post__text {
  position: relative;
  overflow: hidden;
}

.mymice-post__text.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
}

.mymice-post__more:hover {
  color: #000;
}

.mymice-post__more {
  border: 0;
  background: none;
  padding: 0;
  margin-top: 4px;
  color: #8e8e8e;
  font: inherit;
  cursor: pointer;
  transition: color .2s ease;
}

.mymice-post__more:hover {
  color: rgb(255, 61, 71);
}
