:root {
  --dr-font-publik-ascender: 0.91667;
  --dr-font-publik-cap-height: 0.69;
  --dr-font-publik-x-height: 0.5;
  --dr-font-publik-descender: 0.22667;
  --dr-font-publik-line-gap: 0;
  --dr-font-publik-font-variation-settings-italic: "ital" 1;
  --dr-font-publik-font-style-italic: normal;
}
.dre-heading__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dre-breakpoint {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 60rem) and (max-width: 74.999rem) {
  .dre-breakpoint--md {
    display: var(--dre-breakpoint-display, initial);
  }
}
@media (min-width: 75rem) and (max-width: 89.999rem) {
  .dre-breakpoint--lg {
    display: var(--dre-breakpoint-display, initial);
  }
}
@media (min-width: 90rem) {
  .dre-breakpoint--xl {
    display: var(--dre-breakpoint-display, initial);
  }
}
.dre-label-text {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  max-width: inherit;
  display: flex;
  align-items: baseline;
  height: 0.5rem;
  font-size: calc(8 / var(--dre-font-cap-height, 1) / 16 * 1rem);
  line-height: 0.4375rem;
}
@media (min-width: 0) {
  .dre-label-text--xxs-x-small {
    height: 0.5rem;
    font-size: calc(8 / var(--dre-font-cap-height, 1) / 16 * 1rem);
    line-height: 0.4375rem;
  }
  .dre-label-text--xxs-medium {
    height: 0.625rem;
    font-size: calc(10 / var(--dre-font-cap-height, 1) / 16 * 1rem);
    line-height: 0.5625rem;
  }
}
@media (min-width: 45rem) {
  .dre-label-text--sm-medium {
    height: 0.625rem;
    font-size: calc(10 / var(--dre-font-cap-height, 1) / 16 * 1rem);
    line-height: 0.5625rem;
  }
  .dre-label-text--sm-large {
    height: 0.6875rem;
    font-size: calc(11 / var(--dre-font-cap-height, 1) / 16 * 1rem);
    line-height: 0.625rem;
  }
}
@media (min-width: 60rem) {
  .dre-label-text--md-x-large {
    height: 0.75rem;
    font-size: calc(12 / var(--dre-font-cap-height, 1) / 16 * 1rem);
    line-height: 0.6875rem;
  }
}
.dre-label-text:after {
  content: "";
  visibility: hidden;
  font-size: 0;
  height: 100%;
  width: 0;
  display: grid;
  align-items: end;
}
.dre-label-text__text {
  max-width: inherit;
}
.dre-threshold-trigger {
  pointer-events: none;
}
.dre-threshold-trigger--left,
.dre-threshold-trigger--right {
  position: absolute;
  min-width: 1px;
  min-height: 1px;
}
.dre-threshold-trigger--right {
  right: 0;
}
.dre-threshold-trigger--left {
  left: 0;
}
.dre-button {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: initial;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.dre-button:disabled {
  --dre-button__main__text-color: #676767;
  --dre-button__main__background-color: #ccc;
}
.dre-button--tertiary:disabled {
  --dre-button__main__text-color: #b2b2b2;
  --dre-button__main__background-color: #0000;
}
.dre-button__touch-area {
  display: flex;
}
.dre-button__main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dre-button__main__text-color, #fff);
  background-color: var(--dre-button__main__background-color, #ff001e);
  transition:
    background-color 0.3s ease-out,
    border-color 0.1s ease-out;
  flex-grow: 1;
  padding-left: var(--dre-button__main__left-padding);
  padding-right: var(--dre-button__main__right-padding);
}
.dre-button__main--small {
  height: 1.75rem;
  --dre-button__main__left-padding: 0.5rem;
  --dre-button__main__right-padding: 1rem;
}
.dre-button__main--tertiary {
  color: var(--dre-button__main__text-color, #c90219);
  border: 0.0625rem solid #0000;
}
.dre-button__main--tertiary {
  padding-left: calc(var(--dre-button__main__left-padding, 0rem) - 0.0625rem);
  padding-right: calc(var(--dre-button__main__right-padding, 0rem) - 0.0625rem);
  background-color: var(--dre-button__main__background-color, #0000);
}
.dre-button__text--small:not(:first-child) {
  margin-left: 0.25rem;
}
@media (hover: hover) {
  .dre-button:hover:not(:disabled) {
    text-decoration: none;
    --dre-button__main__background-color: #c90219;
  }
  .dre-button--quaternary:hover:not(:disabled) {
    --dre-button__main__text-color: #ff001e;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--quaternary-on-dark:hover:not(:disabled) {
    --dre-button__main__text-color: #c90219;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--tertiary:hover:not(:disabled) {
    --dre-button__main__text-color: #ff001e;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--tertiary-on-dark:hover:not(:disabled) {
    --dre-button__main__text-color: #c90219;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--secondary:hover:not(:disabled) {
    --dre-button__main__background-color: #e5e5e5;
  }
  .dre-button--secondary-on-dark:hover:not(:disabled) {
    --dre-button__main__background-color: #333;
  }
}
@-moz-document url-prefix() {
  .dre-button:hover:not(:disabled) {
    text-decoration: none;
    --dre-button__main__background-color: #c90219;
  }
  .dre-button--quaternary:hover:not(:disabled) {
    --dre-button__main__text-color: #ff001e;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--quaternary-on-dark:hover:not(:disabled) {
    --dre-button__main__text-color: #c90219;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--tertiary:hover:not(:disabled) {
    --dre-button__main__text-color: #ff001e;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--tertiary-on-dark:hover:not(:disabled) {
    --dre-button__main__text-color: #c90219;
    --dre-button__main__background-color: #0000;
  }
  .dre-button--secondary:hover:not(:disabled) {
    --dre-button__main__background-color: #e5e5e5;
  }
  .dre-button--secondary-on-dark:hover:not(:disabled) {
    --dre-button__main__background-color: #333;
  }
}
.dre-icon-wrapper {
  display: inline-flex;
  vertical-align: top;
  text-align: left;
  position: relative;
  width: 1.875rem;
  height: 1.875rem;
}
.dre-icon-wrapper__wrapper {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
.dre-icon-wrapper__wrapper > svg {
  fill: currentColor;
  vertical-align: top;
}
.dre-icon-wrapper--boxed {
  padding: 0.25rem;
}
@media (min-width: 0) {
  .dre-icon-wrapper--xxs-xx-small {
    width: 1.25rem;
    height: 1.25rem;
  }
  .dre-icon-wrapper--xxs-x-small {
    width: 1.5rem;
    height: 1.5rem;
  }
  .dre-icon-wrapper--xxs-medium {
    width: 2rem;
    height: 2rem;
  }
  .dre-icon-wrapper--xxs-medium-boxed {
    padding: 0.25rem;
  }
}
.hydra-card-title:focus-visible {
  outline: none;
}
.hydra-card-title:focus-visible:before {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: var(--_hydra-card-title__outline-offset, 0.5rem);
}
.dre-container__content {
  position: relative;
  box-sizing: initial;
  padding-left: 1rem;
  padding-right: 1rem;
  --dre-container__offset: 1rem;
}
.dre-container__content:after,
.dre-container__content:before {
  content: " ";
  display: table;
}
.dre-container__content:after {
  clear: both;
}
@media (min-width: 45rem) {
  .dre-container__content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    --dre-container__offset: 2.5rem;
  }
}
@media (min-width: 75rem) {
  .dre-container__content {
    padding-left: 4rem;
    padding-right: 4rem;
    --dre-container__offset: 4rem;
  }
}
.dre-container__content {
  margin-left: auto;
  margin-right: auto;
}
.dre-container__content--small {
  max-width: 35rem;
}
@media (min-width: 45rem) {
  .dre-container__content--small {
    max-width: 38.75rem;
  }
}
@media (min-width: 60rem) {
  .dre-container__content--small {
    max-width: 43.75rem;
  }
}
.dre-container__content--large {
  max-width: 75rem;
}
:root {
  --super-grid-layout--gap-default_gg: 1rem;
  --super-grid-layout--gap-small_gg: 1rem;
  --super-grid-layout_gg: var(--super-grid-layout--gap-default_gg);
}
@media (min-width: 45rem) {
  :root {
    --super-grid-layout--gap-default_gg: 1.5rem;
  }
}
@media (min-width: 60rem) {
  :root {
    --super-grid-layout--gap-default_gg: 2.5rem;
    --super-grid-layout--gap-small_gg: 1.5rem;
  }
}
.dre-page {
  position: relative;
  min-height: 12.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 60rem) {
  .dre-page {
    padding-bottom: 2.5rem;
  }
}
.dre-main-skip-to-main-link:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  top: -1000px;
  left: -1000px;
  z-index: -1;
}
.dre-logo {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  background-size: 100% 100%;
}
.dre-logo:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.dre-logo--slug-dr-nyheder_primary {
  background-image: url("");
}
.dre-title-text {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.134;
  --dre-font__left-bearing: 0.064;
  -webkit-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-limit-before: 4;
  -webkit-hyphenate-limit-after: 4;
  hyphenate-limit-chars: 4 4;
  hyphenate-limit-last: none;
  display: block;
  max-height: 99999rem;
}
.dre-title-text:after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.dre-title-text {
  font-weight: 600;
}
.dre-title-text--prefixed {
  font-weight: 400;
}
.dre-section {
  position: relative;
  padding: 0;
}
.dre-section--padded {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 45rem) {
  .dre-section--padded {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 60rem) {
  .dre-section--padded {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.dre-section__header {
  margin-bottom: 1.5rem;
}
@media (min-width: 60rem) {
  .dre-section__header {
    margin-bottom: 2rem;
  }
}
.dre-section__header--padded {
  margin-top: 1rem;
}
@media (min-width: 45rem) {
  .dre-section__header--padded {
    margin-top: 0.5rem;
  }
}
@media (min-width: 60rem) {
  .dre-section__header--padded {
    margin-top: 0;
  }
}
.dre-section__header--sr-only {
  margin-top: 0;
  margin-bottom: 0;
}
@supports (-webkit-touch-callout: none) {
}
@-moz-document url-prefix() {
}
.dre-footer {
  background: #fff;
  position: relative;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  font-size: 0.875rem;
  --dre-line-height: 1;
  line-height: 1em;
  border-top: 0.0625rem solid #0000001a;
}
.dre-footer__inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.dre-footer__menu-link {
  padding: 0.625rem;
  display: inline-block;
  margin: -0.625rem 0 -0.625rem -0.625rem;
  text-decoration: none;
  font-weight: inherit;
}
.dre-footer__menu-link,
.dre-footer__menu-link:link,
.dre-footer__menu-link:visited {
  color: inherit;
}
.dre-footer__menu-link:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .dre-footer__menu-link:hover {
    text-decoration: none;
  }
}
.dre-footer__logo {
  height: 1.5rem;
  width: 5rem;
  margin-left: 1rem;
  margin-top: 1rem;
  float: left;
  background: url("") 0 0/100% 100%;
}
@media (min-width: 60rem) {
  .dre-footer__logo {
    margin-top: 1.5rem;
    margin-left: 2.5rem;
  }
}
.dre-footer__logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dre-footer__pressenaevn-logo-container {
  text-align: center;
}
.dre-footer__pressenaevn-logo {
  width: 10.625rem;
  height: 7.8125rem;
  background: url("") no-repeat;
  background-position-y: center;
  background-position-x: center;
  background-size: 100%;
  text-indent: 100%;
  color: #0000;
  font-size: 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  z-index: 1;
}
@media (min-width: 60rem) {
  .dre-footer__pressenaevn-logo {
    position: absolute;
    display: inline;
    right: 1.5625rem;
    bottom: 1.5625rem;
  }
}
.dre-footer__section-menu-list {
  padding: 0;
  margin: 2rem 2.5rem 0;
}
@media (min-width: 45rem) {
  .dre-footer__section-menu-list {
    margin-right: 5rem;
    margin-bottom: 0;
    margin-left: 5rem;
  }
}
@media (min-width: 60rem) {
  .dre-footer__section-menu-list {
    max-width: 73.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.dre-footer__section-menu-list:first-child {
  padding-left: 0;
}
.dre-footer__section-menu,
.dre-footer__section-menu-items {
  list-style: none;
  margin: 0;
  text-align: left;
}
.dre-footer__section-menu {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0 0 3rem;
  margin: 0;
}
.dre-footer__section-menu:last-child {
  margin-top: -1rem;
  padding: 0 0 1rem;
  width: 100%;
}
@media (min-width: 45rem) {
  .dre-footer__section-menu:last-child {
    margin-top: 0;
    width: inherit;
  }
}
@media (min-width: 22.8125rem) {
  .dre-footer__section-menu {
    width: 50%;
  }
}
@media (min-width: 45rem) {
  .dre-footer__section-menu {
    width: 25%;
  }
}
@media (min-width: 60rem) {
  .dre-footer__section-menu {
    width: 16.6666666667%;
  }
}
.dre-footer__section-menu-items:first-child {
  padding-left: 0;
}
.dre-footer__section-menu-item {
  text-transform: uppercase;
  padding: 0;
  margin-right: 0.3125rem;
}
@media (min-width: 45rem) {
  .dre-footer__section-menu-item {
    margin-right: 0.625rem;
  }
}
.dre-footer__section-menu-item:not(:last-child) {
  margin-bottom: 1.25rem;
}
.dre-footer__section-menu-item--heading {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.134;
  --dre-font__left-bearing: 0.064;
  letter-spacing: 0.01875rem;
}
@media (max-width: 30rem) {
  .dre-footer__section-menu-item--heading {
    width: 80%;
  }
}
.dre-footer__contact-container {
  text-align: center;
  padding: 0 1rem;
}
@media (min-width: 45rem) {
  .dre-footer__contact-container {
    padding: 0 2.5rem 1.25rem;
  }
}
@media (min-width: 60rem) {
  .dre-footer__contact-container {
    min-height: 4.5rem;
    line-height: 1.5625rem;
  }
}
.dre-footer__contact-inner {
  position: relative;
  border-top: 0.0625rem solid #0000001a;
}
.dre-footer__contact-link {
  padding-bottom: 1rem;
  padding-top: 0.5rem;
}
@media (min-width: 60rem) {
  .dre-footer__contact-link {
    padding: 1.5rem 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.dre-footer__address {
  margin-top: 1rem;
  font-style: normal;
  padding: 1rem 0;
}
@media (min-width: 60rem) {
  .dre-footer__address {
    margin-top: 0;
    padding: 1.5rem 0;
  }
}
.dre-footer__link {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}
.dre-footer__link:active,
.dre-footer__link:focus,
.dre-footer__link:hover,
.dre-footer__link:link,
.dre-footer__link:visited {
  color: #000;
}
.dre-footer__link:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .dre-footer__link:hover {
    text-decoration: none;
  }
}
.dre-footer__address-item,
.dre-footer__phone-item {
  display: block;
  white-space: nowrap;
  padding-bottom: 0.5rem;
}
@media (min-width: 60rem) {
  .dre-footer__address-item,
  .dre-footer__phone-item {
    padding-bottom: 0;
    display: inline;
    white-space: nowrap;
  }
  .dre-footer__address-item:not(:first-child):before,
  .dre-footer__phone-item:not(:first-child):before {
    content: "|";
    padding: 0 0.625rem;
  }
}
.dre-navigation-bottom-links__menu {
  padding: 1.25rem 0;
}
.dre-navigation-bottom-links__contact-link,
.dre-navigation-bottom-links__privacy-link {
  display: flex;
  align-items: center;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  font-size: 0.875rem;
  --dre-line-height: 1;
  line-height: 1em;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  padding: 0.625rem 1rem;
}
@media (min-width: 45rem) {
  .dre-navigation-bottom-links__contact-link,
  .dre-navigation-bottom-links__privacy-link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.dre-navigation-bottom-links__contact-link:hover,
.dre-navigation-bottom-links__privacy-link:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .dre-navigation-bottom-links__contact-link:hover,
  .dre-navigation-bottom-links__privacy-link:hover {
    text-decoration: none;
  }
}
.dre-navigation-bottom-links__contact-icon,
.dre-navigation-bottom-links__privacy-icon {
  padding-right: 0.5rem;
}
.dre-navigation-login-menuitem__item {
  align-items: center;
  display: flex;
  padding: 1rem;
  overflow: hidden;
}
@media (min-width: 45rem) {
  .dre-navigation-login-menuitem__item {
    padding: 1rem 2.5rem;
  }
}
@media (min-width: 60rem) {
  .dre-navigation-login-menuitem__item {
    display: none;
  }
}
.dre-navigation-login-menuitem__item--border {
  border-bottom: 0.0625rem solid #e5e5e5;
}
.dre-navigation-login-menuitem__login-action {
  height: 1.75rem;
  padding: 0 1rem;
  margin: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff001e;
  transition: background-color 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  color: #fff;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.dre-navigation-login-menuitem__login-action:hover {
  background-color: #c90219;
  text-decoration: underline;
}
.dre-navigation-login-menuitem__login-action:visited {
  color: #fff;
}
.dre-navigation-login {
  display: grid;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.134;
  --dre-font__left-bearing: 0.064;
  height: 1.75rem;
  width: 5rem;
  text-transform: uppercase;
  color: #fff;
}
.dre-navigation-login__avatar {
  grid-column: 1/2;
  grid-row: 1;
  font: inherit;
  font-size: 0.9057971014rem;
  --dre-line-height: 0.621;
  line-height: 0.621em;
  border: 0;
  background-color: #ff001e;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0 0 0.4375rem;
  margin: 0.125rem 0.125rem 0.125rem auto;
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.dre-navigation-login__avatar:after {
  content: "";
  visibility: hidden;
  font-size: 0;
  height: 100%;
  width: 0;
  display: grid;
  align-items: end;
}
.dre-navigation-login__avatar:hover {
  transform: scale(1.15);
}
.dre-navigation-login__avatar--static:empty {
  pointer-events: none;
  opacity: 0;
}
.dre-navigation-login__login-action {
  grid-column: 1/2;
  grid-row: 1;
  height: 1.75rem;
  width: 5rem;
  padding: 0 1rem;
  margin: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  pointer-events: auto;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}
.dre-navigation-login__login-action:hover {
  background-color: #c90219;
  text-decoration: underline;
}
.dre-navigation-login__login-action:visited {
  color: inherit;
}
.dre-navigation-login__transition {
  grid-column: 1/2;
  grid-row: 1;
  background-color: #ff001e;
  width: 5rem;
  height: 1.75rem;
  clip-path: inset(0 round 0);
  z-index: -1;
  pointer-events: none;
}
.dre-navigation-menu-item__item,
.dre-navigation-menu-item__sub-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  border-bottom: 0.0625rem solid #e5e5e5;
  margin: 0;
  min-height: 3.25rem;
}
.dre-navigation-menu-item__item--expanded,
.dre-navigation-menu-item__item--sub-highlighted {
  background-color: #f8f5ee;
}
.dre-navigation-menu-item__item--expanded,
.dre-navigation-menu-item__item--sub-highlighted,
.dre-navigation-menu-item__sub-menu-item--highlighted {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.134;
  --dre-font__left-bearing: 0.064;
}
.dre-navigation-menu-item__sub-menu-item--highlighted {
  background-color: #0000001a;
}
.dre-navigation-menu-item__link,
.dre-navigation-menu-item__sub-menu-link {
  font-weight: inherit;
  display: flex;
  min-height: 3.25rem;
  width: 100%;
  align-items: center;
  color: #000;
  text-decoration: none;
}
.dre-navigation-menu-item__link:active,
.dre-navigation-menu-item__link:focus,
.dre-navigation-menu-item__link:hover,
.dre-navigation-menu-item__sub-menu-link:active,
.dre-navigation-menu-item__sub-menu-link:focus,
.dre-navigation-menu-item__sub-menu-link:hover {
  color: #000;
  text-decoration: underline;
}
@media (hover: none) {
  .dre-navigation-menu-item__link:hover,
  .dre-navigation-menu-item__sub-menu-link:hover {
    text-decoration: none;
  }
}
.dre-navigation-menu-item__link-text,
.dre-navigation-menu-item__sub-menu-link-text {
  font-weight: inherit;
  text-transform: uppercase;
  font-size: 0.875rem;
  --dre-line-height: 1.2857142857;
  line-height: 1.2857142857em;
}
.dre-navigation-menu-item__link-text--level-0 {
  padding-left: 1rem;
}
@media (min-width: 45rem) {
  .dre-navigation-menu-item__link-text--level-0 {
    padding-left: 2.5rem;
  }
}
.dre-navigation-menu-item__sub-menu-link-text--level-1 {
  padding-left: 2rem;
}
@media (min-width: 45rem) {
  .dre-navigation-menu-item__sub-menu-link-text--level-1 {
    padding-left: 4rem;
  }
}
.dre-navigation-menu-item__sub-menu-expander {
  border: none;
  min-height: 3.25rem;
  margin-left: 0.5rem;
  background-color: initial;
  cursor: pointer;
  padding: 0 1rem;
  font-size: 1rem;
  --dre-line-height: 1;
  line-height: 1em;
}
@media (min-width: 45rem) {
  .dre-navigation-menu-item__sub-menu-expander {
    padding: 0 2.5rem;
  }
}
.dre-navigation-menu-item__sub-menu-expander:focus,
.dre-navigation-menu-item__sub-menu-expander:hover {
  background-color: initial;
}
.dre-navigation-menu-item__sub-menu {
  background-color: #f8f5ee;
  list-style: none;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  padding: 0;
  margin: 0;
}
.dre-navigation-menu {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: auto;
  overflow-y: auto;
  overflow-x: hidden;
}
.dre-navigation-menu__inner {
  position: relative;
}
.dre-navigation-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 45rem) {
  .dre-navigation-menu__list {
    margin-right: var(--dre-animation-menu__scrollbar-width, 0);
  }
}
.dre-navigation-menu-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}
.dre-navigation-menu-icon__line {
  background-color: currentColor;
  position: absolute;
  height: 0.125rem;
  width: 1.375rem;
  left: 50%;
  top: 50%;
  margin-left: -0.6875rem;
  margin-top: -0.0625rem;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
}
.dre-navigation-menu-icon__line:first-child {
  transform: translateY(-0.4375rem);
}
.dre-navigation-menu-icon__line:last-child {
  transform: translateY(0.4375rem);
}
.dre-navigation-menu-toggle-button {
  display: flex;
  align-items: center;
  margin-right: -0.625rem;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  height: 2.5rem;
}
.dre-navigation-menu-toggle-button:focus,
.dre-navigation-menu-toggle-button:hover,
.dre-navigation-search {
  background-color: initial;
}
.dre-navigation-search {
  display: flex;
  align-items: center;
  padding: 0.3125rem;
  color: #000;
  border: none;
  cursor: pointer;
}
.dre-navigation-sidebar {
  z-index: 998;
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
  transform: translateY(0);
}
@media (min-width: 60rem) {
  .dre-navigation-sidebar {
    margin-top: 0;
  }
}
.dre-navigation-sidebar--collapsed {
  transform: translateY(-10000px);
}
.dre-navigation-sidebar__modal {
  background-color: #fff;
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 23.4375rem;
  height: 100%;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}
.dre-navigation-sidebar__dimmer {
  will-change: opacity;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  opacity: 0;
}
.dre-navigation-sidebar__content {
  height: calc(
    var(--dre-navigation-sidebar__window-height, 100vh) -
      var(--dre-navigation__height, 0px) +
      var(--dre-navigation__mobile-children-height, 0px)
  );
  border-top: 0.0625rem solid #0000001a;
  display: flex;
  flex-direction: column;
}
.dre-navigation-sidebar__content--collapsed {
  display: none;
}
.dre-navigation-main__content {
  position: relative;
  display: flex;
  height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fff;
  box-shadow: 0 0.0625rem 0 #0000001a;
  z-index: 2;
}
@media (min-width: 45rem) {
  .dre-navigation-main__content {
    height: 4rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-main__content {
    height: 4.5rem;
  }
}
.dre-navigation-main__logo-wrapper {
  display: flex;
  align-items: center;
  width: auto;
  margin-right: 0.5rem;
}
@media (min-width: 45rem) {
  .dre-navigation-main__logo-wrapper {
    flex: 0 0 auto;
    height: 4rem;
    margin-right: 1.875rem;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-main__logo-wrapper {
    height: 4.5rem;
    margin-right: 2.5rem;
  }
}
.dre-navigation-main__logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dre-navigation-main__logo-slug {
  width: 3.5rem;
  margin-top: -2.5rem;
}
@media (min-width: 45rem) {
  .dre-navigation-main__logo-slug {
    width: 4rem;
    margin-top: -3rem;
  }
}
.dre-navigation-main__group-right {
  flex: 1 1 auto;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
.dre-navigation-main__login {
  display: none;
  white-space: nowrap;
}
@media (min-width: 60rem) {
  .dre-navigation-main__login {
    display: initial;
    margin-left: 1.5rem;
    flex: 0 0 auto;
  }
}
@media (min-width: 45rem) {
  .dre-navigation-main__search {
    margin-left: 1.4375rem;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-main__search {
    margin-left: 1.9375rem;
  }
}
.dre-navigation-main__menu-toggle {
  margin-left: 0.375rem;
}
@media (min-width: 45rem) {
  .dre-navigation-main__menu-toggle {
    margin-left: 0.875rem;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-main__menu-toggle {
    margin-left: 1.375rem;
  }
}
.dre-navigation-main__desktop-only {
  display: none;
}
@media (min-width: 60rem) {
  .dre-navigation-main__desktop-only {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
  }
}
.dre-navigation-main__mobile-only {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0.0625rem 0 #0000001a;
}
@media (min-width: 60rem) {
  .dre-navigation-main__mobile-only {
    display: none;
  }
}
.dre-navigation-menu-bar {
  height: 3rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 60rem) {
  .dre-navigation-menu-bar {
    height: 4rem;
    border-top: none;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-menu-bar {
    height: 4.5rem;
  }
}
@media (max-width: 59.999rem) {
  .dre-navigation-menu-bar:after {
    right: 0;
    width: 3.125rem;
    background-image: linear-gradient(90deg, #fff0 0, #fff);
  }
  .dre-navigation-menu-bar:after,
  .dre-navigation-menu-bar:before {
    content: "";
    position: absolute;
    top: 0.25rem;
    height: 2.5rem;
    pointer-events: none;
  }
  .dre-navigation-menu-bar:before {
    left: 0;
    width: 1rem;
    background: #0000 linear-gradient(270deg, #ffffff40 0, #fff);
    z-index: 3;
  }
}
.dre-navigation-menu-bar__links {
  display: flex;
  list-style: none;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  box-sizing: initial !important;
  height: 3rem;
  padding: 0.0625rem 0 2rem 1rem;
  margin: 0 0 -2rem;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: none;
}
.dre-navigation-menu-bar__links::-webkit-scrollbar {
  display: none;
}
@media (min-width: 45rem) {
  .dre-navigation-menu-bar__links {
    padding-left: 2.5rem;
  }
}
@media (min-width: 60rem) {
  .dre-navigation-menu-bar__links {
    padding-left: 0;
    overflow: hidden;
    flex-wrap: wrap;
    height: unset;
  }
}
.dre-navigation-menu-bar__links:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.0625rem;
  flex: 0 0 auto;
  pointer-events: none;
}
.dre-navigation-menu-bar__item {
  display: flex;
  position: relative;
  margin-left: 1rem;
}
@media (min-width: 45rem) {
  .dre-navigation-menu-bar__item {
    margin-left: 1.5rem;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-menu-bar__item {
    margin-left: 2.5rem;
  }
}
.dre-navigation-menu-bar__item:first-child {
  margin-left: 0;
}
.dre-navigation-menu-bar__item-link {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-weight: 400;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  outline-offset: -0.125rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.03125rem;
}
.dre-navigation-menu-bar__item-link,
.dre-navigation-menu-bar__item-link--highlighted {
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
.dre-navigation-menu-bar__item-link--highlighted {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-weight: 700;
  --dre-font__stem-width: 0.169;
  --dre-font__left-bearing: 0.055;
  letter-spacing: 0.04375rem;
}
.dre-navigation-menu-bar__item-link--highlighted:after {
  content: "";
  display: block;
  height: 0.25rem;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 60rem) {
  .dre-navigation-menu-bar__item-link {
    height: 4rem;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-menu-bar__item-link {
    height: 4.5rem;
  }
}
.dre-navigation-menu-bar__item-link:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .dre-navigation-menu-bar__item-link:hover {
    text-decoration: none;
  }
}
.dre-navigation-auto-hide-container {
  z-index: 998;
  position: relative;
}
.dre-navigation-auto-hide-container__fixer {
  position: relative;
  transform: translateY(0);
  transition: none;
  will-change: transform;
  top: 0;
  left: 0;
  width: 100%;
}
.dre-navigation-topbar {
  background: #fff;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.dre-navigation-topbar--indent {
  margin-left: 4.5rem;
}
@media (min-width: 30rem) {
  .dre-navigation-topbar--indent {
    padding-right: 4.5rem;
  }
}
@media (min-width: 45rem) {
  .dre-navigation-topbar--indent {
    margin-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 75rem) {
  .dre-navigation-topbar--indent {
    margin-left: 6.5rem;
    padding-right: 6.5rem;
  }
}
.dre-navigation-topbar:after {
  content: "";
  display: block;
  background-color: #0000001a;
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 0.0625rem;
}
@media (min-width: 45rem) {
  .dre-navigation-topbar:after {
    left: 2.5rem;
    right: 2.5rem;
  }
}
.dre-navigation-topbar__item {
  text-decoration: none;
  color: #000;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  font-size: 0.875rem;
  --dre-line-height: 2.8571428571;
  line-height: 2.8571428571em;
  --dre-font-char-height: var(--dre-font-cap-height);
  letter-spacing: 0.03125rem;
  margin: 0 0.625rem;
  white-space: nowrap;
}
.dre-navigation-topbar__item:before {
  --dre-font-leading-top: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-ascender) -
          var(--dre-font-char-height, var(--dre-font-cap-height))
      )
  );
  content: "";
  display: table;
  margin-bottom: calc(var(--dre-font-leading-top, 0) * -1);
}
.dre-navigation-topbar__item:after {
  --dre-font-leading-bottom: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-descender)
      )
  );
  content: "";
  display: table;
  margin-top: calc(var(--dre-font-leading-bottom, 0) * -1);
}
@media (min-width: 45rem) {
  .dre-navigation-topbar__item {
    margin: 0 1.25rem;
  }
}
.dre-navigation-topbar__item--active {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.169;
  --dre-font__left-bearing: 0.055;
}
.dre-navigation-topbar__item:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .dre-navigation-topbar__item:hover {
    text-decoration: none;
  }
}
.dre-navigation-topbar__wrapper {
  background: #fff;
}
.dre-navigation {
  z-index: 998;
  position: relative;
  width: 100%;
}
.dre-navigation,
.dre-navigation * {
  box-sizing: border-box;
}
.dre-navigation--sticky {
  padding-right: var(--dre-navigation__scrollbar-width, 0);
}
.dre-progress-bar {
  overflow: hidden;
  background-color: initial;
}
.dre-progress-bar--medium {
  height: 0.3125rem;
}
.dre-progress-bar__bar {
  height: 100%;
  width: 100%;
  will-change: transform;
  transform: translateX(-100%);
  background-color: #000;
}
.dre-share-link {
  display: flex;
  align-items: center;
  position: relative;
  border: none;
  padding: 0;
  background-color: initial;
  overflow: visible;
  text-decoration: none;
}
.dre-share-link__label {
  text-transform: uppercase;
  color: #000;
  margin-left: 0.375rem;
}
.dre-share-link__label:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .dre-share-link__label:hover {
    text-decoration: none;
  }
}
.dre-share-link-copy-url {
  display: flex;
  align-items: center;
  background-color: initial;
  border: none;
  padding: 0;
}
.dre-share-link-copy-url:hover {
  cursor: pointer;
  text-decoration: underline;
}
@media (hover: none) {
  .dre-share-link-copy-url:hover {
    text-decoration: none;
  }
}
.dre-share-link-copy-url__copy-link-hidden {
  font-size: 0;
  user-select: text;
  -webkit-user-select: text;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@-moz-document url-prefix() {
}
.dre-glossary-tool {
  text-transform: none;
  display: inline-block;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  position: relative;
}
.dre-glossary-tool__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@-moz-document url-prefix() {
}
.dre-text-scaling-tool {
  display: none;
}
@supports (--css: variables) {
  .dre-text-scaling-tool {
    display: inline-block;
    --dre-font-ascender: var(--dr-font-publik-ascender, 1);
    --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
    --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
    --dre-font-descender: var(--dr-font-publik-descender, 0.2);
    --dre-font-line-height-normal: calc(
      var(--dre-font-ascender) + var(--dre-font-descender)
    );
    font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    --dre-font__stem-width: 0.091;
    --dre-font__left-bearing: 0.075;
    position: relative;
    font-size: 0.875rem;
    --dre-line-height: 1.4285714286;
    line-height: 1.4285714286em;
  }
  .dre-text-scaling-tool__decrease-button:hover:not(:disabled),
  .dre-text-scaling-tool__increase-button:hover:not(:disabled) {
    color: #ff001e;
  }
  .dre-text-scaling-tool__decrease-button--dark:hover:not(:disabled),
  .dre-text-scaling-tool__increase-button--dark:hover:not(:disabled) {
    color: #c90219;
  }
}
.dre-byline {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  font-size: 0.6875rem;
  --dre-line-height: 1.2727272727;
  line-height: 1.2727272727em;
}
@media (min-width: 45rem) {
  .dre-byline {
    font-size: 0.75rem;
    --dre-line-height: 1.3333333333;
    line-height: 1.3333333333em;
    display: flex;
  }
}
.dre-byline__prefix {
  --dre-font-char-height: var(--dre-font-cap-height);
  margin-bottom: 0.5rem;
  color: #0009;
  flex: 1 1;
  white-space: pre-line;
}
.dre-byline__prefix:before {
  --dre-font-leading-top: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-ascender) -
          var(--dre-font-char-height, var(--dre-font-cap-height))
      )
  );
  content: "";
  display: table;
  margin-bottom: calc(var(--dre-font-leading-top, 0) * -1);
}
.dre-byline__prefix:after {
  --dre-font-leading-bottom: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-descender)
      )
  );
  content: "";
  display: table;
  margin-top: calc(var(--dre-font-leading-bottom, 0) * -1);
}
.dre-byline__contribution-details {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
}
.dre-byline__contribution-name {
  display: block;
  color: #000;
  text-transform: none;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.134;
  --dre-font__left-bearing: 0.064;
  font-size: 0.875rem;
  --dre-line-height: 0.8571428571;
  line-height: 0.8571428571em;
  --dre-font-char-height: var(--dre-font-cap-height);
  margin-bottom: 0.5rem;
}
.dre-byline__contribution-name:before {
  --dre-font-leading-top: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-ascender) -
          var(--dre-font-char-height, var(--dre-font-cap-height))
      )
  );
  content: "";
  display: table;
  margin-bottom: calc(var(--dre-font-leading-top, 0) * -1);
}
.dre-byline__contribution-name:after {
  --dre-font-leading-bottom: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-descender)
      )
  );
  content: "";
  display: table;
  margin-top: calc(var(--dre-font-leading-bottom, 0) * -1);
}
.dre-byline__contribution-name--link {
  text-decoration: none;
}
.dre-byline__contribution-name--link:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .dre-byline__contribution-name--link:hover {
    text-decoration: none;
  }
}
.dre-byline__contribution-name--last {
  margin-bottom: 0;
}
.dre-byline__dates {
  margin-top: 1.5rem;
  line-height: 0.5175rem;
  color: #0009;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 45rem) {
  .dre-byline__dates {
    margin-top: 0;
    line-height: 0.560625rem;
    flex: 1 1;
    justify-content: flex-end;
  }
  .dre-byline__dates--role-normal {
    align-items: baseline;
  }
  .dre-byline__dates--role-normal:after {
    content: "";
    visibility: hidden;
    font-size: 0;
    height: 100%;
    width: 0;
    display: grid;
    align-items: end;
  }
}
.dre-byline__date--with-spacer.dre-byline__date--role-normal:after {
  content: "";
  margin-left: 0.5rem;
  display: inline-block;
}
.dre-article {
  position: relative;
}
.dre-read-progress {
  height: 0;
  transform: translateY(100%);
}
:root {
  font-size: 100%;
}
.DRReelCarousel_reelContainer__l5Yn3:focus-visible {
  box-shadow: 0 0 0 3px #ffffff80;
}
@import "publik-variable.css";
@media (hover: hover) {
  .ReelBasePlayerWrapper_reelPlayerWrapper__outerWrapper--compact__4S9zd:hover:not(
      :has([data-reel-ui-control]:hover)
    ) {
    --reel-compact-outer-wrapper--hover_text-decoration: underline;
    cursor: pointer;
  }
}
@media (min-width: 0) {
  @container reelPlayerWrapper (width >=500px) {
  }
  @container reelPlayerWrapper (width >=573px) {
  }
  @container reelPlayerWrapper (width >=420px) {
  }
}
@media (min-width: 30rem) {
  @container reelPlayerWrapper (width >=500px) {
  }
  @container reelPlayerWrapper (width >=573px) {
  }
  @container reelPlayerWrapper (width >=420px) {
  }
}
@media (min-width: 45rem) {
  @container reelPlayerWrapper (width >=500px) {
  }
  @container reelPlayerWrapper (width >=573px) {
  }
  @container reelPlayerWrapper (width >=420px) {
  }
}
@media (min-width: 60rem) {
  @container reelPlayerWrapper (width >=500px) {
  }
  @container reelPlayerWrapper (width >=573px) {
  }
  @container reelPlayerWrapper (width >=420px) {
  }
}
@media (min-width: 75rem) {
  @container reelPlayerWrapper (width >=500px) {
  }
  @container reelPlayerWrapper (width >=573px) {
  }
  @container reelPlayerWrapper (width >=420px) {
  }
}
@media (min-width: 90rem) {
  @container reelPlayerWrapper (width >=500px) {
  }
  @container reelPlayerWrapper (width >=573px) {
  }
  @container reelPlayerWrapper (width >=420px) {
  }
}
.InfoCard_infoCard__ON1WZ
  .InfoCard_textContainer__1kvoR
  .InfoCard_authorsReadLessContainer__VQJuu:has(
    .InfoCard_readLessContainer__XOkEi:only-child
  ) {
  justify-content: flex-end;
}
@container UI (width >= 1200px) {
}
@container UI (width >= 960px) {
}
@container UI (width >= 1200px) {
}
@container subtitleContainer (width > 300px) {
}
@container playerWrapper (width >= 45rem) {
}
@container UI (width >= 30rem) {
}
@container UI (width >= 45rem) {
}
@container playerWrapper (width >= 20rem) {
}
@container playerWrapper (width >= 45rem) {
}
@container UI (width >= 20rem) {
}
@container UI (width >= 45rem) {
}
@container playerWrapper (width >= 20rem) {
}
@container playerWrapper (width >= 45rem) {
}
@container UI (width >= 20rem) {
}
@container UI (width >= 45rem) {
}
@container UI (width >= 960px) {
}
@container UI (width >= 1200px) {
}
@container UI (width >= 960px) {
}
@container UI (width >= 1200px) {
}
@container UI (width >= 960px) {
}
@container UI (width >= 1200px) {
}
@container UI (width >= 164px) {
}
@container UI (width >= 343px) {
}
@container UI (width >= 780px) {
}
@container UI (width >= 720px) {
}
@container reelOuterWrapperExpanded (orientation: portrait) {
}
@container UI (width >= 720px) {
}
@container uniError (width >= 720px) {
}
@container uniError (width >= 310px) {
}
@container uniError (width >= 720px) {
}
@container uniError (width >= 310px) {
}
@container uniError (width >= 720px) {
}
@media (min-width: 45rem) {
  @container (width >= 50rem) {
  }
}
.hydra-card-liveblog-content__item:first-child > :before {
  transition-delay: 0.4s;
}
.hydra-card-liveblog-content__item--enter > :before {
  transform: scale(0);
}
.hydra-card-liveblog-content__item--enter-active > :before,
.hydra-card-liveblog-content__item--enter-done > :before {
  transform: scale(1);
}
@media (min-width: 60rem) {
  @container (width >= 25rem) {
  }
  @container (width >= 50rem) {
  }
}
.hydra-article-body-paragraph {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  font-size: 1rem;
  --dre-line-height: 1.625;
  line-height: 1.625em;
  font-size: calc(1rem * var(--dre-text-scaler-factor, 1));
  color: #333;
}
.hydra-article-body-paragraph a {
  color: #000;
}
@media (min-width: 45rem) {
  .hydra-article-body-paragraph {
    font-size: 1.125rem;
    --dre-line-height: 1.4444444444;
    line-height: 1.4444444444em;
    font-size: calc(1.125rem * var(--dre-text-scaler-factor, 1));
  }
}
.hydra-article-body {
  overflow: hidden;
}
.hydra-article-byline {
  margin-bottom: 1rem;
  border-top: 0.0625rem solid #0000001a;
  border-bottom: 0.0625rem solid #0000001a;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 45rem) {
  .hydra-article-byline {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.hydra-article-title {
  margin-bottom: -1rem;
  position: relative;
}
.hydra-article-title__label {
  display: inline-flex;
  vertical-align: top;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 45rem) {
  .hydra-article-title__label {
    margin-bottom: 2rem;
  }
}
.hydra-article-title__section-label {
  max-width: 100%;
}
.hydra-article-title__heading {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  word-break: break-word;
  --dre-font__stem-width: 0.134;
  --dre-font__left-bearing: 0.064;
  --dre-font-char-height: var(--dre-font-cap-height);
}
.hydra-article-title__heading:before {
  --dre-font-leading-top: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-ascender) -
          var(--dre-font-char-height, var(--dre-font-cap-height))
      )
  );
  content: "";
  display: table;
  margin-bottom: calc(var(--dre-font-leading-top, 0) * -1);
}
.hydra-article-title__heading:after {
  --dre-font-leading-bottom: calc(
    1em *
      (
        ((var(--dre-line-height) - var(--dre-font-line-height-normal)) / 2) +
          var(--dre-font-descender)
      )
  );
  content: "";
  display: table;
  margin-top: calc(var(--dre-font-leading-bottom, 0) * -1);
}
.hydra-article-title__heading {
  margin-bottom: 1.5rem;
  margin-top: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 2.25rem;
  --dre-line-height: 1.1666666667;
  line-height: 1.1666666667em;
}
@media (min-width: 45rem) {
  .hydra-article-title__heading {
    font-size: 3rem;
    --dre-line-height: 1.125;
    line-height: 1.125em;
    margin-bottom: 2rem;
  }
}
@media (min-width: 60rem) {
  .hydra-article-title__heading {
    font-size: 3.75rem;
    --dre-line-height: 1.1;
    line-height: 1.1em;
  }
}
.hydra-article-title-section-label {
  --dre-font-ascender: var(--dr-font-publik-ascender, 1);
  --dre-font-cap-height: var(--dr-font-publik-cap-height, 0.69);
  --dre-font-x-height: var(--dr-font-publik-x-height, 0.5);
  --dre-font-descender: var(--dr-font-publik-descender, 0.2);
  --dre-font-line-height-normal: calc(
    var(--dre-font-ascender) + var(--dre-font-descender)
  );
  font-family: Publik, Gibson, gibsonRegular, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  --dre-font__stem-width: 0.091;
  --dre-font__left-bearing: 0.075;
  display: flex;
  color: #c90219;
}
.hydra-article-title-section-label > * {
  max-width: 100%;
}
.hydra-article-title-section-label__title {
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0.3125rem 0;
  margin: -0.3125rem 0;
  font-weight: 600;
  display: block;
}
.hydra-article-title-section-label__title--link:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .hydra-article-title-section-label__title--link:hover {
    text-decoration: none;
  }
}
.hydra-article-accessibility-tools {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.hydra-article-accessibility-tools__button {
  margin-right: 0.25rem;
}
.hydra-article-accessibility-tools__button--last {
  margin-right: 0;
}
.hydra-share-band {
  display: flex;
}
.hydra-share-band__content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.5rem;
  justify-content: space-between;
  gap: 0.75rem;
}
.hydra-share-band__item {
  margin-bottom: 0.5rem;
}
.hydra-standard-article ::selection {
  background-color: #0003;
  color: #000;
}
.hydra-standard-article__top {
  position: relative;
  padding-top: 1.25rem;
}
@media (min-width: 45rem) {
  .hydra-standard-article__top {
    padding-top: 2.5rem;
  }
}
@media (min-width: 60rem) {
  .hydra-standard-article__top {
    padding-top: 3.75rem;
  }
}
.hydra-standard-article__tools {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 45rem) {
  .hydra-standard-article__tools {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.hydra-sticky-share-band {
  position: sticky;
  top: calc(50% - 9.875rem);
  z-index: 100;
  display: none;
}
@media (min-width: 60rem) {
  .hydra-sticky-share-band {
    display: block;
  }
}
.hydra-sticky-share-band__content {
  position: absolute;
  border-left: 0.3125rem solid #ff001e;
  background-color: #fff;
  box-shadow:
    0 0.25rem 0.375rem #0000001a,
    0 0 0 0.0625rem #00000014;
}
.hydra-sticky-share-band__item {
  display: block;
  padding: 1rem 0.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-bottom: 0.0625rem solid #b2b2b2;
  background-color: initial;
}
.hydra-sticky-share-band__item:last-child {
  border-bottom: none;
}
.hydra-teaser-title:focus-visible {
  outline: none;
}
.hydra-teaser-title:focus-visible:before {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: 0.5rem;
}
.hydra-teaser-title--inset-focus-outline:focus-visible:before {
  outline-offset: -0.5rem;
}
.hydra-marketing-banner {
  overflow: hidden;
}
.hydra-marketing-banner:empty {
  background-color: #f8f5ee;
}
.hydra-marketing-banner--contained {
  position: relative;
  margin-left: calc(var(--dre-container__offset, 0px) * -1);
  margin-right: calc(var(--dre-container__offset, 0px) * -1);
}
.hydra-marketing-banner--contained:after,
.hydra-marketing-banner--contained:before {
  content: " ";
  display: table;
}
.hydra-marketing-banner--contained:after {
  clear: both;
}
@media (min-width: 75rem) {
  .hydra-marketing-banner--contained {
    margin-left: 0;
    margin-right: 0;
  }
}
.hydra-marketing-banner:after {
  content: "";
  display: block;
  padding-bottom: var(--hydra-marketing-banner__height, 0);
}
@media print {
  .hydra-marketing-banner {
    display: none;
  }
}
@media print {
  .hydra-share-band,
  footer,
  nav {
    display: none;
  }
  img,
  ol,
  ul {
    page-break-inside: avoid;
  }
}

@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 100;
  src: url("EncodeSansExpanded-Thin.ttf") format("truetype");
}
@media print {
  body {
    display: none !important;
  }
}

.reg-text {
  font-family: "Encode Sans Expanded", sans-serif;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 2rem;
  margin-top: 0.25rem;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
html,
body {
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  background: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:host #survicate-box .sv__opened-in-new-tab {
  height: 100%;
}

:host #survicate-box .sv-mobile .sv__validation {
  left: auto;
  right: 0;
  top: 1px;
}

:host #survicate-box .sv-mobile .sv__validation:after {
  border-color: #e33a22 transparent transparent;
  border-width: 8px 4px 0;
  bottom: -8px;
  left: auto;
  right: 10px;
  top: auto;
}

:host #survicate-box .sv__overlay,
:host #sv-screenshot-controls .sv__overlay {
  height: 100%;
  position: absolute;
  width: 100%;
}

:host #survicate-box .sv__survey.sv__micro-theme,
:host #sv-screenshot-controls .sv__survey.sv__micro-theme {
  position: absolute;
}

:host #survicate-box .sv__survey.sv__micro-theme.sv__position-fullscreen,
:host
  #sv-screenshot-controls
  .sv__survey.sv__micro-theme.sv__position-fullscreen {
  height: 100%;
}

@media only screen and (max-width: 1181px) and (orientation: portrait) {
  :host
    #survicate-box
    .sv-box-child:not(.sv-desktop)
    .sv__survey.sv__micro-theme:not(.sv__feedback-survey),
  :host
    #sv-screenshot-controls
    .sv-box-child:not(.sv-desktop)
    .sv__survey.sv__micro-theme:not(.sv__feedback-survey) {
    max-height: 90% !important;
  }
}

:host
  #survicate-box
  .sv-box-child.sv-mobile
  .sv__survey.sv__micro-theme:not(.sv__feedback-survey),
:host
  #sv-screenshot-controls
  .sv-box-child.sv-mobile
  .sv__survey.sv__micro-theme:not(.sv__feedback-survey) {
  max-height: 90% !important;
}

@media only screen and (max-width: 568px) {
  :host
    #survicate-box
    .sv-box-child:not(.sv-tablet):not(.sv-desktop)
    .sv__survey.sv__micro-theme:not(.sv__feedback-survey),
  :host
    #sv-screenshot-controls
    .sv-box-child:not(.sv-tablet):not(.sv-desktop)
    .sv__survey.sv__micro-theme:not(.sv__feedback-survey) {
    max-height: 90% !important;
  }
}

.dre-variables {
  --dre-navigation__offset: 112px;
  --dre-navigation__height-adaptive: 0px;
  --dre-navigation__transition-duration: 0.5s;
  --dre-navigation__transition-timing-function: ease;
}

.dre-navigation {
  --dre-navigation__height: 112px;
}

p a {
  color: #b51515 !important;
}

.user {
  max-width: 600px;
  margin: 0 auto 10px;
  /* Добавлен отступ между блоками */
  width: -webkit-fill-available;
  background-color: #fff;
  border: 1px solid #e1e8ed;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  font-family: "BBC Reith Serif", Helvetica, Arial, sans-serif;
}

.user__info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.user__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  /* Для изображений */
}

.user__details {
  display: flex;
  flex-direction: column;
}

.user__name {
  font-size: 15px;
  font-weight: 700;
  color: #14171a;
}

.user__time {
  font-size: 13px;
  color: #657786;
}

.user__content {
  font-size: 15px;
  color: #14171a;
  line-height: 1.4;
  margin-bottom: 8px;
}

.user__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user__reply {
  font-size: 16px;
  color: black;
  cursor: pointer;
  font-weight: bolder;
  text-decoration: none;
}

.user__reply:hover {
  text-decoration: underline;
}

.user__reactions {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #657786;
}

.user__reaction {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.user__reaction:hover {
  color: #1da1f2;
}

.user__reaction img {
  width: 15px;
  /* Единый размер для иконок */
  vertical-align: middle;
  /* Выравнивание иконок */
}

.user__reaction:last-child img {
  width: 10px;
  /* Для иконки с точками */
}

@media (max-width: 768px) {
  .user {
    padding: 10px;
  }

  .user__avatar {
    width: 32px;
    height: 32px;
  }

  .user__reaction img {
    width: 12px;
  }

  .user__reaction:last-child img {
    width: 8px;
  }
}

*::selection {
  background-color: #e31937 !important;
  color: #ffffff !important;
}

*::-moz-selection {
  background-color: #e31937 !important;
  color: #ffffff !important;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/fonts/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGGQtoc7Ab.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/fonts/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGGQpoc7Ab.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/fonts/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGGQRocw.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCBNAVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCBNBVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCBNPVo0.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCxNAVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCxNBVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCxNPVo0.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpoqKQZwdw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUporKQZwdw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpolKQY.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWChNAVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWChNBVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWChNPVo0.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DRNAVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DRNBVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DRNPVo0.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDBNAVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDBNBVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDBNPVo0.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDxNAVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDxNBVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDxNPVo0.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDhNAVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDhNBVo0iPw.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Encode Sans Expanded";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/fonts/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDhNPVo0.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
