
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

.hz-video-demos,
.hz-video-demos * {
  box-sizing: border-box;
}

.hz-video-demos {
  --hz-orange: #f26a21;
  --hz-orange-dark: #d95416;
  --hz-navy: #071d33;
  --hz-text: #4b5563;
  --hz-light-text: #6b7280;
  --hz-border: #e5e7eb;
  --hz-soft-bg: #f6f8fb;
  --hz-card-bg: #ffffff;

  width: 100%;
  overflow: hidden;
  background: #ffffff;
  color: var(--hz-text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hz-video-demos h2,
.hz-video-demos h3,
.hz-video-demos p {
  margin: 0;
}

.hz-video-section {
  padding: 86px 0;
  background: #ffffff;
}

.hz-video-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

.hz-video-head {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}

.hz-video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hz-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hz-video-eyebrow::before,
.hz-video-eyebrow::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--hz-orange);
  display: inline-block;
}

.hz-video-title {
  max-width: 900px;
  margin: 0 auto 18px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.hz-video-desc {
  max-width: 860px;
  margin: 0 auto;
  color: var(--hz-text);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}

.hz-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hz-video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--hz-card-bg);
  border: 1px solid var(--hz-border);
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.045);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hz-video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 106, 33, 0.35);
  box-shadow: 0 24px 65px rgba(7, 29, 51, 0.12);
}

.hz-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

.hz-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hz-video-card-body {
  position: relative;
  flex-grow: 1;
  padding: 30px;
}

.hz-video-card-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 4px;
  height: 54px;
  border-radius: 0 999px 999px 0;
  background: var(--hz-orange);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hz-video-card:hover .hz-video-card-body::before {
  opacity: 1;
}

.hz-video-card h3 {
  margin-bottom: 14px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.hz-video-card p {
  color: var(--hz-text);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 300;
}

.hz-video-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.1);
  color: var(--hz-orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .hz-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hz-video-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hz-video-container {
    padding: 0 22px;
  }

  .hz-video-section {
    padding: 62px 0;
  }

  .hz-video-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .hz-video-desc {
    font-size: 16px;
  }

  .hz-video-grid {
    grid-template-columns: 1fr;
  }

  .hz-video-card-body {
    padding: 26px 24px;
  }

  .hz-video-eyebrow::before,
  .hz-video-eyebrow::after {
    width: 24px;
  }
}
