@font-face {
  font-family: Lato;
  src: url('font/S6uyw4BMUTPHjx4wXg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url('font/S6u9w4BMUTPHh6UVSwiPGQ.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --page: #202020;
  --header: #3d3b3b;
  --panel: #2b2929;
  --text: #f2eeee;
  --muted: #969191;
  --soft: #6c6868;
  --accent: #ff343e;
  --line: rgba(255, 255, 255, .14);
  --content: 971px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page); }
body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--text);
  font: 400 16px/1.6 Lato, Arial, sans-serif;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 100; padding: 8px 12px; background: var(--accent); color: #fff; transition: top .2s; }
.skip-link:focus { top: 12px; }
.page-loader { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; height: 3px; overflow: hidden; background: rgba(255,255,255,.12); opacity: 0; pointer-events: none; transition: opacity .1s; }
.page-loader.active { opacity: 1; }
.page-loader span { display: block; width: 42%; height: 100%; background: var(--accent); box-shadow: 0 0 9px rgba(255,52,62,.7); transform: translateX(-110%); }
.page-loader.active span { animation: page-progress .65s cubic-bezier(.4, 0, .2, 1) infinite; }
@keyframes page-progress { to { transform: translateX(350%); } }
.navigation-loader { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; background: rgba(13,13,13,.94); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .16s ease, visibility .16s ease; }
.navigation-loader.active { opacity: 1; visibility: visible; pointer-events: auto; }
.navigation-loader-inner { display: grid; justify-items: center; gap: 16px; transform: translateY(-4vh); }
.loading-spinner { display: block; width: 54px; height: 54px; border: 3px solid rgba(255,255,255,.2); border-top-color: var(--accent); border-right-color: var(--accent); border-radius: 50%; animation: loading-spin .72s linear infinite; }
.loading-label { color: #eee; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.loading-label::after { display: inline-block; width: 18px; content: '...'; text-align: left; animation: loading-dots 1.15s steps(4, end) infinite; }
@keyframes loading-spin { to { transform: rotate(360deg); } }
@keyframes loading-dots { 0%, 20% { content: ''; } 40% { content: '.'; } 60% { content: '..'; } 80%, 100% { content: '...'; } }

.site-shell { min-height: 100vh; overflow: clip; }
.site-header { position: sticky; top: 0; z-index: 20; background: var(--header); box-shadow: 0 1px 0 rgba(0,0,0,.16); }
.header-inner { display: grid; grid-template-columns: 303px minmax(340px, 1fr) 200px; align-items: center; gap: 17px; width: min(var(--content), 100%); min-height: 83px; margin: 0 auto; padding: 0 15px; }
.brand { display: block; width: 303px; }
.brand img { width: 303px; height: 53px; object-fit: contain; }
.desktop-nav { display: flex; flex-wrap: wrap; align-content: center; justify-content: center; column-gap: 25px; row-gap: 8px; min-height: 80px; }
.nav-group { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; min-height: 29px; padding: 0; background: transparent; color: var(--accent); font-size: 15px; font-weight: 700; letter-spacing: .1px; line-height: 1.2; text-transform: uppercase; white-space: nowrap; }
.nav-link:hover, .nav-link:focus-visible { color: #fff; }
.chevron { width: 7px; height: 7px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s; }
.nav-group.open .chevron { transform: rotate(225deg); margin-top: 4px; }
.nav-menu { position: absolute; top: calc(100% + 8px); left: 50%; display: grid; min-width: 190px; padding: 8px 0; background: #363333; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 10px 30px rgba(0,0,0,.34); opacity: 0; visibility: hidden; transform: translate(-50%, -5px); transition: opacity .18s, transform .18s, visibility .18s; }
.nav-group.open .nav-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-menu a { padding: 9px 18px; color: #fff; font-size: 14px; white-space: nowrap; }
.nav-menu a:hover, .nav-menu a:focus-visible { background: var(--accent); }

.header-search, .footer-search { display: flex; align-items: center; height: 48px; overflow: hidden; border: 2px solid #ff7f84; border-radius: 32px; background: #fff; }
.header-search input, .footer-search input { min-width: 0; flex: 1; height: 100%; padding: 0 18px 0 29px; border: 0; outline: 0; color: #454545; background: transparent; font-size: 14px; }
.header-search input::placeholder, .footer-search input::placeholder { color: #999; }
.header-search button, .footer-search button { position: relative; display: grid; place-items: center; width: 56px; height: 100%; background: transparent; color: var(--accent); }
.search-icon { display: block; width: 18px; height: 18px; border: 2px solid currentColor; border-radius: 50%; }
.search-icon::after { position: absolute; width: 8px; height: 2px; margin: 15px 0 0 14px; background: currentColor; content: ''; transform: rotate(45deg); transform-origin: left center; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; background: transparent; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px auto; background: #fff; }

.site-main { width: 100%; min-height: 1160px; padding: 30px 0 80px; background: var(--page); }
.feed-grid { display: grid; grid-template-columns: repeat(3, 269.775px); justify-content: center; column-gap: 0; width: min(var(--content), 100%); margin: 0 auto; }
.feed-column { display: flex; flex-direction: column; }
.post-card { min-width: 0; padding: 0 15px 55px; }
.post-media { position: relative; overflow: hidden; aspect-ratio: 100 / 56; border-radius: 24px; background: #323030; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .35s ease; }
.post-card:hover .post-media img, .post-card:focus-within .post-media img { transform: scale(1.055); filter: saturate(1.08); }
.post-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.38)); content: ''; pointer-events: none; }
.play-mark { position: absolute; z-index: 1; top: 50%; left: 50%; display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid rgba(255,255,255,.86); border-radius: 50%; background: rgba(255,255,255,.05); transform: translate(-50%, -50%); transition: background .2s, transform .2s; }
.play-mark::before { width: 0; height: 0; margin-left: 4px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid #fff; content: ''; }
.post-card:hover .play-mark, .post-card:focus-within .play-mark { background: rgba(255,52,62,.8); transform: translate(-50%, -50%) scale(1.06); }
.post-card-link { display: block; outline: 0; }
.post-card-link:focus-visible .post-media { box-shadow: 0 0 0 3px var(--accent); }
.post-copy { display: flex; flex-direction: column; min-height: 91px; padding: 11.5px 10px 0; text-align: center; }
.post-category { display: none; min-height: 20px; margin: 0 0 4px; color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.3; text-transform: uppercase; }
.post-card:hover .post-category, .post-card:focus-within .post-category { display: block; }
.post-title { display: -webkit-box; min-height: 64.7px; max-height: 64.7px; margin: 0; overflow: hidden; color: #747070; font-size: 16.6px; font-weight: 700; line-height: 1.3; transition: color .2s; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.post-card:hover .post-title, .post-card:focus-within .post-title { color: #fff; }
.post-divider { width: 34px; height: 1px; margin: 14px auto 0; background: var(--line); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 78px auto 0; }
.page-button { display: grid; place-items: center; min-width: 34px; height: 34px; padding: 0 10px; border: 1px solid transparent; border-radius: 2px; background: transparent; color: #aaa; font-size: 13px; }
.page-button:hover, .page-button:focus-visible, .page-button.current { border-color: var(--accent); color: #fff; }
.page-button.current { background: var(--accent); }
.page-dots { padding: 0 2px; color: #888; }

.site-footer { background: #181818; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; padding: 58px 0 22px; }
.footer-search-wrap { width: min(330px, 100%); margin: 0 0 50px; }
.footer-search { height: 48px; border-color: #555; }
.footer-search input { padding-left: 16px; }
.footer-search button { color: var(--accent); }
.footer-sections { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; padding-bottom: 55px; }
.footer-section h2 { margin: 0 0 18px; color: var(--accent); font-size: 14px; letter-spacing: .11em; text-transform: uppercase; }
.footer-list { display: grid; gap: 16px; }
.footer-post { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 12px; min-width: 0; }
.footer-post img { width: 92px; height: 54px; object-fit: cover; border-radius: 9px; }
.footer-post span { display: -webkit-box; overflow: hidden; color: #9a9696; font-size: 12px; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.footer-post:hover span { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 19px; border-top: 1px solid var(--line); color: #8a8686; font-size: 12px; }
.footer-bottom strong { color: #fff; }
.top-link { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #666; border-radius: 50%; background: transparent; color: #fff; font-size: 18px; transition: border-color .2s, color .2s; }
.top-link:hover { border-color: var(--accent); color: var(--accent); }

.mobile-drawer { position: fixed; z-index: 50; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); padding: 21px 25px; overflow-y: auto; background: #2b2929; box-shadow: -18px 0 42px rgba(0,0,0,.3); transform: translateX(100%); transition: transform .25s ease; }
.mobile-drawer.open { transform: translateX(0); }
.drawer-backdrop { position: fixed; z-index: 45; inset: 0; background: rgba(0,0,0,.62); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: #fff; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.drawer-head button { width: 32px; height: 32px; background: transparent; color: #fff; font-size: 28px; line-height: 1; }
#mobileNav { padding: 17px 0; }
#mobileNav a, #mobileNav button { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 12px 0; background: transparent; color: var(--accent); font-size: 15px; font-weight: 700; text-align: left; text-transform: uppercase; }
#mobileNav a:hover, #mobileNav button:hover { color: #fff; }
#mobileNav .mobile-sub { display: none; padding-left: 14px; }
#mobileNav .mobile-sub.open { display: grid; }
#mobileNav .mobile-sub a { color: #c1bcbc; font-size: 13px; text-transform: none; }

.drawer-backdrop[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  .page-loader.active span, .loading-spinner, .loading-label::after { animation-duration: 1.1s; }
}

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 303px minmax(340px, 1fr) 200px; gap: 17px; }
  .brand, .brand img { width: 303px; }
  .desktop-nav { column-gap: 16px; }
  .nav-link { font-size: 13px; }
  .post-title { font-size: 16.6px; }
  .footer-post { grid-template-columns: 76px 1fr; gap: 9px; }
  .footer-post img { width: 76px; height: 48px; }
}
@media (max-width: 860px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 78px; }
  .brand, .brand img { width: 210px; }
  .desktop-nav, .header-search { display: none; }
  .menu-toggle { display: block; }
  .site-main { padding-top: 28px; }
  .feed-grid { grid-template-columns: repeat(2, 269.775px); }
  .footer-sections { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .header-inner { width: calc(100% - 34px); }
  .brand, .brand img { width: 176px; height: auto; }
  .site-main { padding: 23px 17px 55px; }
  .feed-grid { display: block; }
  .feed-column { display: contents; }
  .post-card { padding-left: 0; padding-right: 0; }
  .post-media { border-radius: 18px; }
  .post-copy { padding-top: 12px; }
  .post-title { font-size: 18px; }
  .pagination { margin-top: 54px; }
  .footer-inner { width: calc(100% - 34px); padding-top: 42px; }
  .footer-search-wrap { margin-bottom: 38px; }
  .footer-sections { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { gap: 18px; }
}
