* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

a {
  text-decoration: none;
}
a {
  color: inherit;
}

body {
  background: #fff;
  color: #111;
  line-height: 1.6;
}

.red {
  color: #e00000;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__logo {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 2px;
}

.live {
  font-size: 14px;
  @media (max-width: 768px) {
    display: none;
  }
}

.btn {
  padding: 6px 12px;
  border: none;
  cursor: pointer;
}

.btn--blue {
  background: #006def;
  color: #fff;
}

.btn--dark {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.desktop {
  @media (max-width: 768px) {
    display: none;
  }
}
.mobile {
  display: none;
  @media (max-width: 768px) {
    display: block;
  }
}

/* NAV */
.nav {
  display: flex;
  gap: 15px;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.nav__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
  max-width: 800px;
}

.nav a {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
}

/* ARTICLE */
.article {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 15px;
}

.article h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.article h1 span {
  font-weight: 800;
}

.article__meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.article__image {
  width: 100%;
  margin: 20px 0;
  border-radius: 4px;
}

/* VIDEO */
.video {
  position: relative;
  margin: 30px 0;
}

.video video {
  width: 100%;
  max-height: 436px;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  font-size: 24px;
}

/* QUOTE */
.quote {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin: 30px 0;
}

.quote .desktop {
  max-width: 385px;
}
.quote .mobile {
  width: 80px;
  height: 80px;
}

.quote mark {
  background: #ffe066;
}

.swiper-slide img {
  width: 100%;
}

.cta img {
  width: 100%;
}

.date {
  border-radius: 4px;
  border: 0.4px solid #040404;
  background: #e00000;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.289px; /* 137.5% */
}

/* FOOTER */
.footer {
  border-top: 1px solid #eee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__nav {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__follow {
  border-top: 2px solid #e6e8ea;
  padding-top: 12px;
  display: flex;
  gap: 12px;
}

.footer__follow p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
}

.footer__nav-bottom {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__nav-bottom a {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
}

.footer__bottom {
  color: #000;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px;
}
