@charset "UTF-8";
/* Tokens (CSS custom properties) */
:root {
  --bg: #ffffff;
  --text: #111315;
  --muted: rgba(0, 0, 0, 0.65); /* gray-500 */
  --muted-2: #9ca3af; /* gray-400 */
  --border: rgba(0, 0, 0, 0.38); /* gray-200 */
  --border-white: #e6e6e6;
  --chip: #f3f4f6; /* gray-100 */
  --chip-active: #0baeff; /* sky-500 */
  --chip-active-text: #fff;
  --btn: #111315;
  --btn-text: #fff;
  --focus: 0 0 0 3px rgba(14, 165, 233, .35);
  --shadow: 0 2px 10px rgba(0, 0, 0, .06);
  --radius: 12px;
  --color-text: rgba(0, 0, 0, 0.87);
  --color-black-alpha: rgba(0, 0, 0, 0.05);
  --color-border: #E5E5E5;
  --color-black: rgba(0, 0, 0, 0.03);
  --color-border-input: #D0D0D0;
}

html body, html .section-breadcrumb {
  background: var(--bg);
}

.v-sidebar .header {
  display: none;
}
@media (max-width: 961px) {
  .v-sidebar .header {
    display: flex;
  }
}

.close-filter, .v-sidebar .header .close {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.20047 0.806666C8.94047 0.546666 8.52047 0.546666 8.26047 0.806666L5.00047 4.06L1.74047 0.8C1.48047 0.54 1.06047 0.54 0.800469 0.8C0.540469 1.06 0.540469 1.48 0.800469 1.74L4.06047 5L0.800469 8.26C0.540469 8.52 0.540469 8.94 0.800469 9.2C1.06047 9.46 1.48047 9.46 1.74047 9.2L5.00047 5.94L8.26047 9.2C8.52047 9.46 8.94047 9.46 9.20047 9.2C9.46047 8.94 9.46047 8.52 9.20047 8.26L5.94047 5L9.20047 1.74C9.4538 1.48667 9.4538 1.06 9.20047 0.806666Z" fill="%23121212"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
}

/* Toolbar (top) */
.toolbar {
  position: relative;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-top: 1px solid var(--border-white);
  border-bottom: 1px solid var(--border-white);
  /* state toggles (siblings) */
}
@media (max-width: 961px) {
  .toolbar .toolbar-inner .chips {
    display: none;
  }
}
.toolbar.is-search-open .toolbar-inner {
  display: none;
}
.toolbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.toolbar.is-search-open .searchbar {
  display: block;
}
.toolbar.is-filters-open {
  /* collapse search when filters are open */
}
@media (max-width: 961px) {
  .toolbar.is-filters-open {
    z-index: 0;
  }
}
.toolbar.is-filters-open .searchbar {
  display: none;
}
.toolbar.is-filters-open ~ .filters {
  display: block;
}
.toolbar .only-mobile {
  display: none;
}
@media (max-width: 961px) {
  .toolbar .only-mobile {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-white);
  }
}
.toolbar .only-mobile .wrap-only {
  display: flex;
  align-items: center;
  gap: 8px;
}
.toolbar .only-mobile .wrap-only .open-filter {
  display: flex;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_31079_35244)"><path d="M12.6673 8.66667H8.66732V12.6667H7.33398V8.66667H3.33398V7.33334H7.33398V3.33334H8.66732V7.33334H12.6673V8.66667Z" fill="%23323232"/></g><defs><clipPath id="clip0_31079_35244"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
  background-position: center;
  background-repeat: no-repeat;
}
.toolbar .only-mobile .items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.toolbar .only-mobile .items .label {
  padding: 4px 0;
  color: var(--muted);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
}
.toolbar .only-mobile .items a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: var(--chip-active);
}

/* Chips (categories & filters) */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1 1 auto;
  min-width: 240px;
}

.chip {
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text);
  font-size: 14px;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  cursor: pointer;
  border: none;
  outline: none;
}
.chip:focus {
  border: none;
  outline: none;
}
.chip:hover {
  background: rgba(0, 0, 0, 0.16);
}
.chip.active {
  background: var(--chip-active);
}

/* Controls (right side of toolbar) */
.controls {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
.controls .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  text-decoration: none;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  padding: 8px 10px;
  border-radius: 10px;
}
.controls .btn-link:hover {
  background: #f9fafb;
  color: #374151;
}
.controls .btn {
  background: var(--chip);
  border: 1px solid var(--chip);
  padding: 8px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  outline: none;
  cursor: pointer;
  text-align: center;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 16px;
}
.controls .btn:hover {
  background: #eef2f7;
}
.controls .btn .count {
  opacity: 0.7;
  font-weight: 700;
}
.controls .search-icon-btn {
  background: transparent;
  padding: 8px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
}
.controls .search-icon-btn:hover {
  background: var(--chip);
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* Expanded Search Bar (state 2) */
.searchbar {
  width: 100%;
  display: none;
  background: var(--bg);
  padding: 15px 16px;
  max-width: 1440px;
  margin: 0 auto;
}
.searchbar .field {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.searchbar .field input {
  width: 100%;
  border-radius: 4px;
  padding: 0 32px;
  font-size: 16px;
  display: flex;
  height: 32px;
  border: 1px solid var(--color-border-input);
  outline: none;
}
.searchbar .field input:focus {
  outline: none;
}
.searchbar .field .leading,
.searchbar .field .clear {
  position: absolute;
  top: 0;
  height: 32px;
  width: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  outline: none;
}
.searchbar .field .leading {
  left: 0;
  color: var(--muted-2);
}
.searchbar .field .clear {
  right: 0;
  color: var(--muted-2);
  cursor: pointer;
}

/* Filters Panel (state 3) */
.filters {
  display: none;
  background: #fff;
}
.filters .wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filters .label {
  color: var(--muted);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}
.filters .label span {
  margin-left: auto;
  color: var(--color-text);
  text-align: center;
  font-family: "Golos Text", sans-serif;
  font-size: 12px;
  text-transform: none;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}
.filters .actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
  gap: 8px;
  border-bottom: 1px solid var(--border-white);
}
.filters .actions span {
  margin-right: auto;
  color: var(--muted);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
}

/* Buttons (outside toolbar) */
.btn-ghost {
  background: var(--chip);
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--color-text);
  text-align: center;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.btn-primary {
  background: var(--chip-active);
  color: var(--color-text);
  text-align: center;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  border: 0;
  padding: 8px 10px;
  border-radius: 6px;
}

/* базовые токены уже заданы в :root; используем их */
.videos-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 24px;
}
@media (max-width: 961px) {
  .videos-wrap {
    grid-template-columns: 1fr;
    padding: 16px 16px;
  }
}

/* SIDEBAR */
.v-sidebar {
  display: flex;
  flex-direction: column;
  align-self: start;
}
.v-sidebar .v-sidebar__inner {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 10px;
  padding-right: 8px;
}
.v-sidebar .v-sidebar__inner::-webkit-scrollbar {
  width: 6px;
}
.v-sidebar .v-sidebar__inner::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 961px) {
  .v-sidebar {
    display: none;
  }
  .v-sidebar .header {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d0d0d0;
  }
  .v-sidebar.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 111111111;
    height: 100%;
    overflow-y: scroll;
    padding: 0 10px 10px 10px;
  }
}
.v-sidebar__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v-sidebar__group-title {
  color: var(--muted);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
  margin: 12px 0;
}

.v-sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  text-align: left;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
}
.v-sb-item__icon {
  height: 40px;
}
.v-sb-item:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: transparent;
}
.v-sb-item.is-active {
  border-color: var(--color-border);
  background: var(--color-black);
}
.v-sb-item:focus {
  outline: none;
}

/* CONTENT */
.v-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v-section.is-hidden {
  display: none;
}
.v-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 961px) {
  .v-section__head {
    margin-bottom: 16px;
  }
}
.v-section__title {
  margin: 0;
  color: var(--color-text);
  font-family: "Golos Text", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}

/* GRID + CARD */
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1100px) {
  .v-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .v-grid {
    grid-template-columns: 1fr;
  }
}

.v-card {
  display: flex;
  flex-direction: column;
}
.v-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 12px;
  aspect-ratio: 16/9;
}
.v-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.v-card__meta {
  color: var(--muted);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
}
.v-card__title {
  display: block;
  color: var(--color-text);
  margin-bottom: 8px;
  text-decoration: none;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.v-card__title:hover {
  text-decoration: underline;
}
.v-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.v-card__tags .tag {
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--color-black-alpha);
  border: none;
  color: var(--color-text);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

/* Pagination */
.v-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.vp-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  color: var(--color-text);
  text-align: center;
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  border: none;
  background: #fff;
  cursor: pointer;
}
.vp-btn.is-current {
  background: var(--muted);
  color: #fff;
  border-color: transparent;
}

/* See all (reuse) */
.see-all {
  text-decoration: none;
  color: var(--color-text);
  text-align: center;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.mobile-filter-bg {
  display: none;
}

/* Responsive */
@media (min-width: 962px) {
  .filter-row.only-mobile {
    display: none;
  }
}
.filter-mobile-row .filter-row {
  padding-top: 12px;
}

@media (max-width: 961px) {
  body .topbar {
    z-index: 9999999;
  }
  .active-v-sidebar .mobile-filter-bg, .filter-open .mobile-filter-bg {
    display: flex;
    position: fixed;
    background: rgba(160, 160, 160, 0.75);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 111111;
  }
  .filter-mobile-row {
    max-height: 70vh;
    overflow-y: scroll;
  }
  .filter-mobile-row .filter-row {
    margin-bottom: 12px;
  }
  .filter-mobile-row .filter-row:last-of-type {
    margin-bottom: 0;
  }
  .section h1 {
    font-size: 30px;
  }
  .chips {
    flex: 1 1 100%;
  }
  .controls {
    margin-left: auto;
  }
  .filter-open #filtersPanel {
    display: none;
  }
  .filter-open.v-sidebar-open .v-sidebar {
    display: flex;
    position: fixed;
    z-index: 11;
    background: #fff;
    width: 100%;
    left: 0;
    bottom: 0;
    top: auto;
    padding: 0 16px 16px 16px;
    max-height: 87vh;
  }
  .filter-open.v-sidebar-open .v-sidebar .v-sidebar-scroll {
    overflow-y: scroll;
  }
  .filter-open.v-sidebar-open .v-sidebar .header {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-white);
    color: var(--muted);
    font-feature-settings: "liga" off, "clig" off;
    font-family: "Golos Text", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    text-transform: uppercase;
  }
  .filter-open.open-filters #filtersPanel {
    display: flex;
    z-index: 1111111;
    position: fixed;
    bottom: 0;
  }
  .filter-open .topbar {
    z-index: 0;
  }
}

/*# sourceMappingURL=video.css.map */
