@font-face {
  font-family: "Markgeo";
  src: url("/assets/fonts/8496Markgeo-regular.woff2?v=20260607-font") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Georgian";
  src: url("/assets/fonts/NotoSansGeorgian-Variable.ttf?v=20260607-font") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: optional;
}

:root {
  --charcoal: #212123;
  --page-bg: #fff;
  --page-gutter: clamp(18px, 5vw, 72px);
  --video-content-max: var(--wide-content-max, 1280px);
  --video-page-pad: var(--page-pad, max(var(--page-gutter), calc((100vw - var(--video-content-max)) / 2)));
  --video-heading-size: clamp(30px, 2.45vw, 38px);
  --header-main-h: 70px;
  --header-h: var(--header-main-h);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body.videos-page {
  margin: 0;
  overflow-x: clip;
  background: var(--page-bg);
  color: var(--charcoal);
  font-family: "Markgeo", "Noto Sans Georgian", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang^="ka"] body,
html[lang^="ka"] body :where(*, *::before, *::after) {
  font-family: "Markgeo", "Noto Sans Georgian", Arial, sans-serif !important;
}

.videos-page a {
  color: inherit;
  text-decoration: none;
}

.videos-page button,
.videos-page input {
  font: inherit;
}

.videos-page video,
.videos-page img,
.videos-page iframe {
  display: block;
  max-width: 100%;
}

.videos-page .skip-link,
.videos-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.videos-page .skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #deb34a;
  color: var(--charcoal);
}

.videos-page-main {
  min-height: 100vh;
  background: var(--page-bg);
}

.videos-gallery-section {
  padding: clamp(7px, 1vw, 14px) var(--video-page-pad) clamp(72px, 8vw, 126px);
}

.videos-page-heading {
  width: 100%;
  max-width: none;
  margin: 0 auto clamp(24px, 2.2vw, 36px);
  text-align: center;
}

.videos-page-heading h1 {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  color: #050505;
  font-size: var(--video-heading-size);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.videos-page-heading p {
  width: min(980px, 100%);
  margin: clamp(6px, 0.6vw, 9px) auto 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.68;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

.videos-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
  max-width: var(--video-content-max);
  margin: 0 auto;
}

.videos-gallery-card {
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(33, 33, 35, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 20, 22, 0.08);
}

.videos-gallery-card .review-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

body.videos-page .videos-gallery-card .review-video-frame {
  background: var(--charcoal, #212123);
}

body.videos-page .videos-gallery-card .review-video-frame :where(video, img, iframe) {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: 0;
}

.review-video-lite {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--charcoal, #212123);
  color: #fff;
  cursor: pointer;
}

body.videos-page .videos-gallery-card .review-video-lite img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  transform: scale(1.001);
  transition:
    opacity 180ms ease,
    transform 240ms ease;
}

.review-video-lite::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

body.videos-page .review-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(58px, 11vw, 76px);
  height: clamp(58px, 11vw, 76px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(135, 60, 30, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body.videos-page .review-video-play::before {
  content: "";
  position: relative;
  inset: auto;
  width: 17px;
  height: 22px;
  display: block;
  border: 0;
  border-radius: 0;
  margin: 0;
  background: currentColor;
  box-shadow: none;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 1;
  transform: translateX(3px);
  transition: none;
}

body.videos-page .review-video-play::after {
  content: none;
}

body.videos-page .review-video-card:hover .review-video-play::before,
body.videos-page .review-video-lite:hover .review-video-play::before,
body.videos-page .review-video-lite:focus-visible .review-video-play::before {
  background: currentColor;
  border: 0;
  box-shadow: none;
}

.review-video-lite:hover img,
.review-video-lite:focus-visible img {
  opacity: 1;
  transform: scale(1.018);
}

.review-video-lite:hover .review-video-play,
.review-video-lite:focus-visible .review-video-play {
  background: #6f2f16;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%) scale(1.04);
}

.review-video-lite:focus-visible {
  outline: 3px solid rgba(135, 60, 30, 0.42);
  outline-offset: 3px;
}

.review-video-noscript-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal, #212123);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.videos-gallery-card .review-video-embed {
  background: var(--charcoal, #212123);
}

@media (min-width: 1280px) {
  .videos-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .videos-gallery-card:first-child,
  .videos-gallery-card:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 860px) {
  .videos-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .videos-gallery-section {
    padding-top: 4px;
  }

  .videos-page-heading {
    margin-bottom: 20px;
  }

  .videos-gallery-card {
    border-radius: 7px;
  }

  .videos-gallery-card .review-video-frame {
    aspect-ratio: 16 / 9;
  }
}

/* mobile-page-centering-20260611 */
@media (max-width: 760px) {
  html[lang^="ka"] body.videos-page .videos-page-heading {
    text-align: center !important;
  }
}
