@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular-400.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Roboto Mono";
  src: url("/fonts/Roboto-Mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Radio Canada";
  src: url("/fonts/Radio-Canada-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}
html,
body,
div,
span,
h1,
h2,
h3,
p,
a,
img,
i,
ul,
li,
footer,
header,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
}

footer,
header,
section {
  display: block;
}

body {
  line-height: 1;
  overscroll-behavior: inherit;
}

ul {
  list-style: none;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1440px) {
  .container {
    padding: 0 124px;
  }
}

body {
  font-family: "Roboto";
  background-color: #231f20;
  color: #fff;
  min-height: 100dvh;
  height: 100%;
  transition: 0.3s;
}

h1 {
  font-weight: 700;
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-weight: 600;
  font-size: 16px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  h3 {
    font-size: 20px;
  }
}

p {
  font-size: 14px;
}
@media (min-width: 768px) {
  p {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  p {
    font-size: 16px;
  }
}

.accent {
  color: #d02001;
  font-weight: 600;
}

.faded {
  color: #cecece;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 1440px) {
  .desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}

.dark-icon {
  border-radius: 8px;
  background: #313131;
  padding: 2px;
}
.header .top {
  background-color: #262626;
  color: #f2f2f2;
  transition: 0.3s;
  padding: 16px 0;
}
.header .top .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header .top .container .title {
  text-wrap: nowrap;
  color: #aeacac;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header .top .container .links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .top .container .links a {
  color: #f2f2f2;

  font-family: "Roboto Mono";
  font-size: 12px;

  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header .top .container .actions {
  display: flex;
  color: #f2f2f2;
  font-family: "Roboto Mono";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  align-items: center;
  gap: 48px;
}
@media (min-width: 768px) {
  .header .top .container .actions {
    margin-left: auto;
  }
}
.header .top .container .actions .item {
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .top .container .actions .item p {
  font-size: 12px;
  text-transform: uppercase;
}
.header .top .container .actions .item .live {
  animation: blink 2.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.header .top .container .actions .toggle-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-radius: 24px;
  padding: 4px 4px 4px 6px;
  background-color: #424242;
  transition: 0.3s;
}
.header .top .container .actions .toggle-btn:hover {
  background-color: #535353;
}
.header .top .container .logo-mobile {
  position: relative;
  top: -3px;
}
.header .middle {
  padding: 10px;
}
.header .middle .container.mobile {
  padding: 0;
}
.header .middle .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header .middle .wrapper .links {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  gap: 22px;
}
.header .middle .wrapper .icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .middle .wrapper-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header .middle .wrapper-mobile .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header .middle .wrapper-mobile .item img {
  width: 22px;
}
.header .bottom {
  background: #262626;
  padding: 24px 0;
}
.header .bottom .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header .bottom .container a {
  color: white;
  text-wrap: nowrap;
  font-weight: 700;
  color: #fff;
  font-family: Arial;
  font-size: 14px;
}

.footer {
  background-color: #313131;
}
.footer .top {
  padding-top: 32px;
}
.footer .top .container {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) {
  .footer .top .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .top .container .social-wrap {
  display: flex;
  align-items: center;
  gap: 17px;
}
.footer .top .container .social-wrap img {
  width: 24px;
}
.footer .mid {
  margin-top: 32px;
  margin-bottom: 14px;
}
.footer .mid .container {
  gap: 32px;
}
.footer .mid .container .links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .footer .mid .container .links {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .footer .mid .container .links {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .footer .mid .container .links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.footer .mid .container .rights {
  text-transform: uppercase;
  font-size: 13px;
}
.footer .bottom {
  background: #231f20;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  color: white;
  padding: 14px 0;
}
.footer .bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer .bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .bottom .container .links {
  display: flex;
  flex-direction: column;
  font-family: "Roboto Mono";
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer .bottom .container .links {
    flex-direction: row;
  }
}

.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px auto;
}
@media (min-width: 1440px) {
  .main-content {
    margin: 32px 0;
  }
}
.main-content .article {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .main-content .article {
    padding: 0px 8px;
    box-shadow: 0 114px 32px 0 rgba(0, 0, 0, 0),
      0 73px 29px 0 rgba(0, 0, 0, 0.01), 0 41px 25px 0 rgba(0, 0, 0, 0.05),
      0 18px 18px 0 rgba(0, 0, 0, 0.09), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    max-width: 784px;
  }
}
.main-content .article .article__top .title-tag {
  color: #ce0d25;
  font-family: "Roboto Mono";
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.dotted {
  border-bottom: 1px dotted#ce0d25;
}

.article__title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-content .article .article__top .title-main {
  margin-top: 32px;
  font-weight: 700;
  font-family: "Roboto";
  margin-bottom: 8px;
}

.title-main {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
}

.article p {
  font-weight: 400;
}

.main-content .article .article__top .author-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 8px;
}
.main-content .article .article__top .author-wrap .author {
  font-size: 14px;
  color: #cecece;

  font-family: "Radio Canada";
  font-size: 14px;
  font-weight: 400;
}
.main-content .article .article__top .video-container {
  width: 100%;
}
.main-content .article .article__top .video-container .video-wrap {
  width: 100%;
}
.main-content .article .article__top .video-container .video-wrap .top {
  border-bottom: 1px solid #000;
  background: #313131;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
}
.main-content .article .article__top .video-container .video-wrap .top p {
  color: white;
  max-width: 260px;
  font-size: 12px;
}
.main-content .article .article__top .video-container .video-wrap .bottom {
  width: 100%;
}
.main-content
  .article
  .article__top
  .video-container
  .video-wrap
  .bottom
  video {
  display: block;
  width: 100%;
}
.main-content .article .article__top .small {
  font-weight: 600;
  margin-top: 8px;
  color: #cecece;
  font-size: 14px;
}
.main-content .article .side-content {
  margin: 32px auto;
  width: 100%;
  max-width: 328px;
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .main-content .article .side-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 764px;
  }
}
@media (min-width: 1440px) {
  .main-content .article .side-content {
    flex-direction: column;
    max-width: 328px;
    margin: 0;
    position: absolute;
    top: 0;
    right: -60px;
    transform: translateX(100%);
  }
}
.main-content .article .side-content .side-content__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-content .article .side-content .side-content__block .heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.main-content .article .side-content .side-content__block .heading h3 {
  color: #fff;
  font-family: "Roboto Mono";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.main-content .article .side-content .side-content__block .side-item {
  width: 100%;
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.main-content .article .side-content .side-content__block .side-item img {
  width: 100%;
  max-width: 131px;
}
.main-content .article .side-content .side-content__block .side-item .title {
  text-decoration: underline;
  color: #fff;
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.author-avatar {
  border-radius: 50%;
  border: 1px solid #fff;
}
.main-content .article .article__mid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .main-content .article .article__mid {
    padding: 0 16px;
  }
}
.icons-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.icons-wrap .items {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icons-wrap .items .item {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background-color: #313131;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icons-wrap .items .item:hover {
  background-color: #171717;
}
.hide-desktop {
  margin: 32px auto;
}

@media (min-width: 768px) {
  .icons-wrap .items .item {
    width: 52px;
    height: 52px;
  }
  .hide-desktop {
    display: none;
  }
}
.icons-wrap .items .item img {
  width: 16px;
}
.icons-wrap .items .item p {
  font-size: 15px;
}
.main-content .article .article__mid .article__img {
  width: 100%;
}
.main-content .article .article__mid .article__btn {
  padding: 10px 18px;
  color: white;
  text-align: center;
  border-radius: 46px;
  background: #ce0d25;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.32),
    0 11px 30px 0 rgba(255, 255, 255, 0.25) inset,
    0 2px 10px 0 rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: Impact;
  font-size: 16px;
  font-size: 16px;
  transition: 0.3s;
}
.main-content .article .article__mid .article__btn:hover {
  background-color: rgb(208, 32, 1);
}
.main-content .article .comment {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .main-content .article .comment {
    padding: 20px 16px;
  }
}
.main-content .article .comment .block-info-line {
  font-size: 11px;
  margin-left: -8px;
}
@media (min-width: 768px) {
  .main-content .article .comment .block-info-line {
    font-size: 14px;
  }
}

.form-wrapper {
  max-width: 450px;
  width: 100%;
  padding: 20px 14px;
  border-radius: 20px;
  border: 2px solid #ce0d25;
  margin: 0 auto;
}

.comment-line {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: "Radio Canada";
  border-bottom: 1px solid white;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
* {
  box-sizing: border-box;
}
.card-_Onuv > a:focus-visible svg,
.card-_Onuv > button:focus-visible svg {
  background-color: rgba(60, 60, 60, 0.7);
}
.navigation__navLink-JkSdI.horizontalNav-K6bCr a:focus-visible {
  border: 2px solid #353535;
  border-radius: 24px;
  margin: -2px;
}
.navigation__navLink-JkSdI.horizontalNav-K6bCr a:focus-visible a {
  -webkit-text-decoration: underline #353535;
  text-decoration: underline #353535;
}
.navigation__navLink-JkSdI.blackAndWhite-Jj5BV a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.navigation__navLink-JkSdI.blackAndWhite-Jj5BV a:focus-visible a {
  -webkit-text-decoration: underline #fff;
  text-decoration: underline #fff;
}
.filter .checkbox:focus:not(:focus-visible) {
  outline: none;
}
.outlined-hTmi5:focus-visible {
  outline: 2px solid #353535;
}
.filled-sh27F:focus-visible {
  background-color: #004c71;
  outline: 2px solid #e00;
}
.iconButton-ahDec.enabled-tNwNO:focus-visible svg {
  background-color: #e7e7e7;
  border: 2px solid #060606;
}
.iconButton-ahDec.dark-jYADk.enabled-tNwNO:focus-visible svg {
  background-color: gray;
}
.iconButton-ahDec.background-A5qe6.enabled-tNwNO:focus-visible svg {
  background-color: #e7e7e7;
  border: 2px solid #060606;
}
.labelledIconButton-DJXCN.horizontalNav-vNOyy:focus-visible span,
.labelledIconButton-DJXCN:focus-visible span {
  font-family: Radio Canada;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5rem;
}
.labelledIconButton-DJXCN:focus-visible {
  border: 2px solid #353535;
  margin: -2px;
}
.labelledIconButton-DJXCN.blackAndWhite-yKULD:focus-visible {
  border: 2px solid #fff;
  margin: -2px;
}
.chip-EZdDN:focus-visible {
  border: 2px solid #000;
}

@media (max-width: 640px) {
  .block-info textarea {
    width: 90%;
  }
}

.reg__title {
  font-weight: 700;
}
.reg__list {
  width: 100%;
  gap: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.reg__list-container {
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.reg__item {
  font-size: 16px;
  line-height: normal;
  padding: 10px;
  margin-bottom: 0.5rem;
  font-weight: normal;
  background-color: #313131;
  border-left: 3px solid #e60505;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/*=============COMMENTS==============*/

.comment {
  margin-top: 32px;
  font-family: "Radio Canada";
  width: 100%;
  max-width: 751px;
}
.comment-line:after {
  margin-top: 0.5rem;
  content: "";
  display: block;
  width: 95%;
  margin: 0 auto;
  height: 1px;
  background-color: #2c2c2c;
}

.comment-content {
  display: flex;
  flex-direction: column;
}

.comment-block {
  margin: 5px 0px;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.204);
  padding-bottom: 0.5rem;
}
.comment-block:nth-child(1) {
  border-bottom: none;
}
.block-avatar {
  margin-right: 8px;
}

@media (min-width: 768px) {
  .block-avatar {
    margin-right: 1rem;
  }
}

.block-info {
  width: 100%;
}
.block-info-comment {
  width: 100%;
}
.block-info-comment__name {
  font-weight: 700;
  color: #3b5998;
  margin-bottom: 4px;
}
.comment-textarea {
  width: 100%;
  padding: 0.5rem 1rem 2rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  background-color: #313131;
}
.comment-textarea:focus {
  border: none;
}

.block-info-line {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.block-info-answer-flex {
  width: 100%;
  display: flex;
  margin-top: 1.5rem;
}
.block-info-answer-flex img {
  width: 100%;
}
.block-info-line__date {
  color: rgba(255, 255, 255, 0.44);
}

.block-info-line__like {
  display: flex;
  justify-content: flex-start;
  color: #00acee;
}

.block-info-line__like_item {
  list-style: none;
  margin-right: 1rem;
}

.block-info-line__like_item a {
  color: #3b5998;
}

@media (max-width: 640px) {
  .block-info textarea {
    width: 90%;
  }
}
.block-avatar img {
  width: 50px;
}

ul {
  margin: 1.5rem 0;
}

li {
  margin-bottom: 0.75rem;
}

/* Links */
a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.comment-textarea {
  width: 100%;
  min-height: 120px;
  max-height: 350px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 8px;
  resize: none;
  overflow: auto;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-textarea:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
  outline: none;
}

.fixed-video {
  position: fixed;
  width: 100%;
  max-width: 324px;
  top: 65%;
  right: 8px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 370px) {
  .fixed-video {
    right: 40px;
  }
}
@media screen and (min-width: 1144px) {
  .fixed-video {
    top: 20px;
  }
}
@media (min-width: 1440px) {
  .fixed-video {
    max-width: 324px;
    top: 20px;
  }
}

.hidden {
  display: none !important;
}